mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-02-07 08:55:26 -05:00
59 lines
2.0 KiB
PHP
59 lines
2.0 KiB
PHP
<?php defined("SYSPATH") or die("No direct script access.");
|
|
/**
|
|
* Gallery - a web based photo album viewer and editor
|
|
* Copyright (C) 2000-2009 Bharat Mediratta
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or (at
|
|
* your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
/**
|
|
* This test case operates under the assumption that user_installer::install() is called by the
|
|
* test controller before it starts.
|
|
*/
|
|
class User_Installer_Test extends Unit_Test_Case {
|
|
public function install_creates_admin_user_test() {
|
|
$user = ORM::factory("user", 1);
|
|
$this->assert_equal("guest", $user->name);
|
|
$this->assert_true($user->guest);
|
|
|
|
$user = ORM::factory("user", 2);
|
|
$this->assert_equal("admin", $user->name);
|
|
$this->assert_false($user->guest);
|
|
|
|
$this->assert_equal(
|
|
array("Everybody", "Registered Users"),
|
|
array_keys($user->groups->select_list("name")));
|
|
}
|
|
|
|
public function install_creates_everybody_group_test() {
|
|
$group = ORM::factory("group", 1);
|
|
$this->assert_equal("Everybody", $group->name);
|
|
$this->assert_true($group->special);
|
|
|
|
$this->assert_equal(
|
|
array("guest", "admin"),
|
|
array_keys($group->users->select_list("name")));
|
|
}
|
|
|
|
public function install_creates_registered_group_test() {
|
|
$group = ORM::factory("group", 2);
|
|
$this->assert_equal("Registered Users", $group->name);
|
|
|
|
$this->assert_equal(
|
|
array("admin"),
|
|
array_keys($group->users->select_list("name")));
|
|
}
|
|
}
|