diff options
| author | Nathan Kinkade <nkinkade@nkinka.de> | 2010-02-02 02:59:20 +0000 | 
|---|---|---|
| committer | Nathan Kinkade <nkinkade@nkinka.de> | 2010-02-02 02:59:20 +0000 | 
| commit | 9d0927dda936756f1f5003813f437d714fe481f8 (patch) | |
| tree | fe1b887345b37387ab0ddcfd78bf344f6150b6cc /modules/gallery/tests/Albums_Controller_Test.php | |
| parent | a6f794c20dc3592bcaef17c622413c1b670a20d8 (diff) | |
| parent | 43985ea2fb137aa7d532617271e37d7c20def3c5 (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/gallery/tests/Albums_Controller_Test.php')
| -rw-r--r-- | modules/gallery/tests/Albums_Controller_Test.php | 38 | 
1 files changed, 16 insertions, 22 deletions
| diff --git a/modules/gallery/tests/Albums_Controller_Test.php b/modules/gallery/tests/Albums_Controller_Test.php index 4d8935cd..76c9a628 100644 --- a/modules/gallery/tests/Albums_Controller_Test.php +++ b/modules/gallery/tests/Albums_Controller_Test.php @@ -17,64 +17,58 @@   * along with this program; if not, write to the Free Software   * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA  02110-1301, USA.   */ -class Albums_Controller_Test extends Unit_Test_Case { +class Albums_Controller_Test extends Gallery_Unit_Test_Case {    public function setup() {      $this->_save = array($_POST, $_SERVER);    }    public function teardown() {      list($_POST, $_SERVER) = $this->_save; -    if (isset($this->_album)) { -      $this->_album->delete(); -    }    }    public function change_album_test() {      $controller = new Albums_Controller(); -    $root = ORM::factory("item", 1); -    $this->_album = album::create($root, "test", "test", "test"); -    $orig_name = $this->_album->name; +    $album = test::random_album();      // Randomize to avoid conflicts. -    $new_dirname = "new_name_" . rand(); +    $new_name = "new_name_" . rand(); -    $_POST["dirname"] = $new_dirname; +    $_POST["name"] = $new_name;      $_POST["title"] = "new title";      $_POST["description"] = "new description";      $_POST["column"] = "weight";      $_POST["direction"] = "ASC";      $_POST["csrf"] = access::csrf_token();      $_POST["slug"] = "new-name"; -    access::allow(identity::everybody(), "edit", $root); +    access::allow(identity::everybody(), "edit", item::root());      ob_start(); -    $controller->update($this->_album->id); -    $this->_album->reload(); +    $controller->update($album->id); +    $album->reload();      $results = ob_get_contents();      ob_end_clean(); -    $this->assert_equal( -      json_encode(array("result" => "success")), -      $results); -    $this->assert_equal($new_dirname, $this->_album->name); -    $this->assert_equal("new title", $this->_album->title); -    $this->assert_equal("new description", $this->_album->description); +    $this->assert_equal(json_encode(array("result" => "success")), $results); +    $this->assert_equal($new_name, $album->name); +    $this->assert_equal("new title", $album->title); +    $this->assert_equal("new description", $album->description);    }    public function change_album_no_csrf_fails_test() {      $controller = new Albums_Controller(); -    $root = ORM::factory("item", 1); -    $this->_album = album::create($root, "test", "test", "test"); +    $album = test::random_album(); +      $_POST["name"] = "new name";      $_POST["title"] = "new title";      $_POST["description"] = "new description"; -    access::allow(identity::everybody(), "edit", $root); +    access::allow(identity::everybody(), "edit", item::root());      try { -      $controller->_update($this->_album); +      $controller->update($album->id);        $this->assert_true(false, "This should fail");      } catch (Exception $e) {        // pass +      $this->assert_same("@todo FORBIDDEN", $e->getMessage());      }    }  } | 
