diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2010-01-22 01:09:38 -0800 | 
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2010-01-22 01:09:38 -0800 | 
| commit | ca909a49ae16dc1d5a0d8448f84c32c7900ba06e (patch) | |
| tree | adec5d2657334db3ec51c03075345583b61ef299 /modules/tag | |
| parent | 10dfe9767d596b1c0e90462cd9d8887b3381851a (diff) | |
New tests for tag_item_rest
Diffstat (limited to 'modules/tag')
| -rw-r--r-- | modules/tag/tests/Tag_Item_Rest_Helper_Test.php | 68 | 
1 files changed, 68 insertions, 0 deletions
| diff --git a/modules/tag/tests/Tag_Item_Rest_Helper_Test.php b/modules/tag/tests/Tag_Item_Rest_Helper_Test.php new file mode 100644 index 00000000..6c49ad67 --- /dev/null +++ b/modules/tag/tests/Tag_Item_Rest_Helper_Test.php @@ -0,0 +1,68 @@ +<?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. + */ +class Tag_Item_Rest_Helper_Test extends Gallery_Unit_Test_Case { +  public function setup() { +    try { +      Database::instance()->query("TRUNCATE {tags}"); +      Database::instance()->query("TRUNCATE {items_tags}"); +    } catch (Exception $e) { } +  } + +  public function get_test() { +    $tag = tag::add(item::root(), "tag1")->reload(); + +    $request->url = rest::url("tag_item", $tag, item::root()); +    $this->assert_equal_array( +      array("url" => rest::url("tag_item", $tag, item::root()), +            "members" => array( +              rest::url("tag", $tag), +              rest::url("item", item::root()))), +      tag_item_rest::get($request)); +  } + +  public function get_with_invalid_url_test() { +    $request->url = "bogus"; +    try { +      tag_item_rest::get($request); +    } catch (Kohana_404_Exception $e) { +      return;  // pass +    } +    $this->assert_true(false, "Shouldn't get here"); +  } + +  public function delete_test() { +    $tag = tag::add(item::root(), "tag1")->reload(); + +    $request->url = rest::url("tag_item", $tag, item::root()); +    tag_item_rest::delete($request); + +    $this->assert_false($tag->reload()->has(item::root())); +  } + +  public function resolve_test() { +    $album = test::random_album(); +    $tag = tag::add($album, "tag1")->reload(); + + +    $tuple = rest::resolve(rest::url("tag_item", $tag, $album)); +    $this->assert_equal_array($tag->as_array(), $tuple[0]->as_array()); +    $this->assert_equal_array($album->as_array(), $tuple[1]->as_array()); +  } +} | 
