summaryrefslogtreecommitdiff
path: root/modules/gallery/tests/Item_Helper_Test.php
blob: 4771b11ad54852364f05c7ae786f54ceaf2137f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php defined("SYSPATH") or die("No direct script access.");
/**
 * Gallery - a web based photo album viewer and editor
 * Copyright (C) 2000-2010 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 Item_Helper_Test extends Gallery_Unit_Test_Case {
  public function teardown() {
    identity::set_active_user(identity::admin_user());
  }

  public function viewable_test() {
    $album = test::random_album();
    $item = test::random_photo($album);
    $album->reload();
    identity::set_active_user(identity::guest());

    // We can see the item when permissions are granted
    access::allow(identity::everybody(), "view", $album);
    $this->assert_equal(
      1,
      ORM::factory("item")->viewable()->where("id", "=", $item->id)->count_all());

    // We can't see the item when permissions are denied
    access::deny(identity::everybody(), "view", $album);
    $this->assert_equal(
      0,
      ORM::factory("item")->viewable()->where("id", "=", $item->id)->count_all());
  }

  public function convert_filename_to_slug_test() {
    $this->assert_equal("foo", item::convert_filename_to_slug("{[foo]}"));
    $this->assert_equal("foo-bar", item::convert_filename_to_slug("{[foo!@#!$@#^$@($!(@bar]}"));
  }

  public function move_test() {
    $photo = test::random_photo(item::root());
    $dst_album = test::random_album();

    item::move($photo, $dst_album);
    $this->assert_same($dst_album->id, $photo->parent_id);
  }

  public function move_updates_album_covers_test() {
    // 2 photos in the source album
    $src_album = test::random_album();
    $photo1 = test::random_photo($src_album);
    $photo2 = test::random_photo($src_album);
    $src_album->reload();

    // destination album
    $dst_album = test::random_album();

    item::move($photo1, $dst_album);

    // Refresh cached copies
    $src_album->reload();
    $dst_album->reload();

    // photo 2 becomes the album cover for the source album and photo 1
    // becomes the album cover for the destination
    $this->assert_same($photo1->id, $dst_album->album_cover_item_id);
    $this->assert_same($photo2->id, $src_album->album_cover_item_id);
  }

  public function move_leaves_empty_album_with_no_album_cover_test() {
    $src_album = test::random_album();
    $photo = test::random_photo($src_album);

    item::move($photo, item::root());

    $src_album->reload();
    $this->assert_false($src_album->album_cover_item_id);
  }

  public function move_conflicts_result_in_a_rename_test() {
    $rand = rand();
    $photo1 = test::random_photo_unsaved(item::root());
    $photo1->name = "{$rand}.jpg";
    $photo1->slug = (string)$rand;
    $photo1->save();

    $src_album = test::random_album();
    $photo2 = test::random_photo_unsaved($src_album);
    $photo2->name = "{$rand}.jpg";
    $photo2->slug = (string)$rand;
    $photo2->save();

    item::move($photo2, item::root());

    $this->assert_same(item::root()->id, $photo2->parent_id);
    $this->assert_not_same("{$rand}.jpg", $photo2->name);
    $this->assert_not_same($rand, $photo2->slug);
  }

  public function delete_cover_photo_picks_new_album_cover() {
    $album = test::random_album();
    $photo1 = test::random_photo($album);
    // At this point, $photo1 is the album cover.  We verify this in
    // Item_Model_Test::first_photo_becomes_album_cover
    $photo2 = test::random_photo($album);
    $photo1->delete();
    $album->reload();

    $this->assert_same($photo2->id, $album->album_cover_item_id);
  }
}