summaryrefslogtreecommitdiff
path: root/modules/gallery/tests/Item_Rest_Helper_Test.php
blob: 1823420b618897bb51306da54163047e5e77305c (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<?php defined("SYSPATH") or die("No direct script access.");
/**
 * Gallery - a web based photo album viewer and editor
 * Copyright (C) 2000-2013 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_Rest_Helper_Test extends Gallery_Unit_Test_Case {
  public function teardown() {
    identity::set_active_user(identity::admin_user());
  }

  public function resolve_test() {
    $album = test::random_album();
    $resolved = rest::resolve(rest::url("item", $album));
    $this->assert_equal($album->id, $resolved->id);
  }

  public function get_scope_test() {
    $album1 = test::random_album();
    $photo1 = test::random_photo($album1);
    $album2 = test::random_album($album1);
    $photo2 = test::random_photo($album2);
    $album1->reload();

    // No scope is the same as "direct"
    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    $request->params = new stdClass();
    $this->assert_equal_array(
      array("url" => rest::url("item", $album1),
            "entity" => $album1->as_restful_array(),
            "relationships" => array(
              "comments" => array(
                "url" => rest::url("item_comments", $album1)),
              "tags" => array(
                "url" => rest::url("item_tags", $album1),
                "members" => array())),
            "members" => array(
              rest::url("item", $photo1),
              rest::url("item", $album2)),
            ),
      item_rest::get($request));

    $request->url = rest::url("item", $album1);
    $request->params->scope = "direct";
    $this->assert_equal_array(
      array("url" => rest::url("item", $album1),
            "entity" => $album1->as_restful_array(),
            "relationships" => array(
              "comments" => array(
                "url" => rest::url("item_comments", $album1)),
              "tags" => array(
                "url" => rest::url("item_tags", $album1),
                "members" => array())),
            "members" => array(
              rest::url("item", $photo1),
              rest::url("item", $album2)),
            ),
      item_rest::get($request));

    $request->url = rest::url("item", $album1);
    $request->params->scope = "all";
    $this->assert_equal_array(
      array("url" => rest::url("item", $album1),
            "entity" => $album1->as_restful_array(),
            "relationships" => array(
              "comments" => array(
                "url" => rest::url("item_comments", $album1)),
              "tags" => array(
                "url" => rest::url("item_tags", $album1),
                "members" => array())),
            "members" => array(
              rest::url("item", $photo1),
              rest::url("item", $album2),
              rest::url("item", $photo2)),
            ),
      item_rest::get($request));
  }

  public function get_children_like_test() {
    $album1 = test::random_album();
    $photo1 = test::random_photo($album1);
    $photo2 = test::random_photo_unsaved($album1);
    $photo2->name = "foo.jpg";
    $photo2->save();
    $album1->reload();

    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    $request->params = new stdClass();
    $request->params->name = "foo";
    $this->assert_equal_array(
      array("url" => rest::url("item", $album1),
            "entity" => $album1->as_restful_array(),
            "relationships" => array(
              "comments" => array(
                "url" => rest::url("item_comments", $album1)),
              "tags" => array(
                "url" => rest::url("item_tags", $album1),
                "members" => array())),
            "members" => array(
              rest::url("item", $photo2)),
            ),
      item_rest::get($request));
  }

  public function get_children_type_test() {
    $album1 = test::random_album();
    $photo1 = test::random_photo($album1);
    $album2 = test::random_album($album1);
    $album1->reload();

    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    $request->params = new stdClass();
    $request->params->type = "album";
    $this->assert_equal_array(
      array("url" => rest::url("item", $album1),
            "entity" => $album1->as_restful_array(),
            "relationships" => array(
              "comments" => array(
                "url" => rest::url("item_comments", $album1)),
              "tags" => array(
                "url" => rest::url("item_tags", $album1),
                "members" => array())),
            "members" => array(
              rest::url("item", $album2)),
            ),
      item_rest::get($request));
  }

  public function update_album_test() {
    $album1 = test::random_album();
    access::allow(identity::everybody(), "edit", $album1);

    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    $request->params = new stdClass();
    $request->params->entity = new stdClass();
    $request->params->entity->title = "my new title";

    item_rest::put($request);
    $this->assert_equal("my new title", $album1->reload()->title);
  }

  public function update_album_illegal_value_fails_test() {
    $album1 = test::random_album();
    access::allow(identity::everybody(), "edit", $album1);

    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    $request->params = new stdClass();
    $request->params->entity = new stdClass();
    $request->params->entity->title = "my new title";
    $request->params->entity->slug = "not url safe";

    try {
      item_rest::put($request);
    } catch (ORM_Validation_Exception $e) {
      $this->assert_equal(array("slug" => "not_url_safe"), $e->validation->errors());
      return;
    }
    $this->assert_true(false, "Shouldn't get here");
  }

  public function add_album_test() {
    $album1 = test::random_album();
    access::allow(identity::everybody(), "edit", $album1);

    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    $request->params = new stdClass();
    $request->params->entity = new stdClass();
    $request->params->entity->type = "album";
    $request->params->entity->name = "my album";
    $request->params->entity->title = "my album";
    $response = item_rest::post($request);
    $new_album = rest::resolve($response["url"]);

    $this->assert_true($new_album->is_album());
    $this->assert_equal($album1->id, $new_album->parent_id);
  }

  public function add_album_illegal_value_fails_test() {
    $album1 = test::random_album();
    access::allow(identity::everybody(), "edit", $album1);

    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    $request->params = new stdClass();
    $request->params->entity = new stdClass();
    $request->params->entity->type = "album";
    $request->params->entity->name = "my album";
    $request->params->entity->title = "my album";
    $request->params->entity->slug = "not url safe";

    try {
      item_rest::post($request);
    } catch (ORM_Validation_Exception $e) {
      $this->assert_equal(array("slug" => "not_url_safe"), $e->validation->errors());
      return;
    }
    $this->assert_true(false, "Shouldn't get here");
  }


  public function add_photo_test() {
    $album1 = test::random_album();
    access::allow(identity::everybody(), "edit", $album1);

    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    $request->params = new stdClass();
    $request->params->entity = new stdClass();
    $request->params->entity->type = "photo";
    $request->params->entity->name = "my photo.jpg";
    $request->file = MODPATH . "gallery/tests/test.jpg";
    $response = item_rest::post($request);
    $new_photo = rest::resolve($response["url"]);

    $this->assert_true($new_photo->is_photo());
    $this->assert_equal($album1->id, $new_photo->parent_id);
  }

  public function delete_album_test() {
    $album1 = test::random_album();
    access::allow(identity::everybody(), "edit", $album1);

    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    item_rest::delete($request);

    $album1->reload();
    $this->assert_false($album1->loaded());
  }

  public function delete_album_fails_without_permission_test() {
    $album1 = test::random_album();
    access::deny(identity::everybody(), "edit", $album1);
    identity::set_active_user(identity::guest());

    $request = new stdClass();
    $request->url = rest::url("item", $album1);
    try {
      item_rest::delete($request);
    } catch (Exception $e) {
      $this->assert_equal("@todo FORBIDDEN", $e->getMessage());
      return;
    }
    $this->assert_true(false, "Shouldn't get here");
  }
}