diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-07 18:12:06 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-07 18:12:06 +0000 |
commit | 90277704a2d2a8fd8d7f3191024ec901ad317f22 (patch) | |
tree | 0ce4e300f89b34a490964008b25f70c7d8340e5c /core/tests | |
parent | 69e0d72b930ec4326a257c41f365256d9913552d (diff) |
Changed the way album and photo creation guards against duplicate
names.
Added similiar code to insure that path names are not duplicated.
Diffstat (limited to 'core/tests')
-rw-r--r-- | core/tests/Album_Helper_Test.php | 1 | ||||
-rw-r--r-- | core/tests/Photo_Helper_Test.php | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/core/tests/Album_Helper_Test.php b/core/tests/Album_Helper_Test.php index d085ca88..75981265 100644 --- a/core/tests/Album_Helper_Test.php +++ b/core/tests/Album_Helper_Test.php @@ -43,6 +43,7 @@ class Album_Helper_Test extends Unit_Test_Case { $album1 = album::create($root, $rand, $rand, $rand); $album2 = album::create($root, $rand, $rand, $rand); $this->assert_true($album1->name != $album2->name); + $this->assert_true($album1->path != $album2->path); } public function thumb_url_test() { diff --git a/core/tests/Photo_Helper_Test.php b/core/tests/Photo_Helper_Test.php index 2219a846..5db63e49 100644 --- a/core/tests/Photo_Helper_Test.php +++ b/core/tests/Photo_Helper_Test.php @@ -53,6 +53,18 @@ class Photo_Helper_Test extends Unit_Test_Case { $photo1 = photo::create($root, DOCROOT . "core/tests/test.jpg", "$rand.jpg", $rand, $rand); $photo2 = photo::create($root, DOCROOT . "core/tests/test.jpg", "$rand.jpg", $rand, $rand); $this->assert_true($photo1->name != $photo2->name); + $this->assert_true($photo1->path != $photo2->path); + } + + public function create_special_characters_in_name_test() { + $rand = rand(); + $rand2 = rand(); + $name = "$rand & $rand's.jpg"; + $path = !empty($path) ? $path : preg_replace("/[^A-Za-z0-9\.\-_]/", "_", $name); + $root = ORM::factory("item", 1); + $photo = photo::create($root, DOCROOT . "core/tests/test.jpg", $name, $rand, $rand); + $this->assert_equal($name, $photo->name); + $this->assert_equal($path, $photo->path); } public function create_photo_with_no_extension_test() { |