forked from dailymotion/cloudkey-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.php
executable file
·577 lines (505 loc) · 19 KB
/
test.php
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
#!/usr/bin/env phpunit
<?php
$base_url = null;
$username = null;
$password = null;
$skip_su = true;
$root_username = null;
$root_password = null;
$switch_user = null;
@include 'local_config.php';
if (!function_exists('readline'))
{
function readline($prompt = '')
{
echo $prompt;
return rtrim(fgets(STDIN), "\n");
}
}
if (!$username) $username = readline('Username: ');
if (!$password) $password = readline('Password: ');
if (!$skip_su && !$root_username) $root_username = readline('Root Username (optional): ');
if ($root_username)
{
if (!$root_password) $root_password = readline('Root Password: ');
if (!$switch_user) $switch_user = readline('SU Username: ');
}
else
{
if (!$skip_su) echo "SU tests will be skipped";
}
require_once 'PHPUnit/Framework.php';
require_once 'CloudKey.php';
class AllTests
{
public static function suite()
{
$suite = new PHPUnit_Framework_TestSuite();
$suite->addTestSuite('CloudKeyTest');
$suite->addTestSuite('CloudKey_UserTest');
$suite->addTestSuite('CloudKey_FileTest');
$suite->addTestSuite('CloudKey_MediaTest');
$suite->addTestSuite('CloudKey_MediaMetaTest');
$suite->addTestSuite('CloudKey_MediaAssetTest');
return $suite;
}
}
class CloudKeyTest extends PHPUnit_Framework_TestCase
{
protected function setUp()
{
global $username, $password, $root_username, $root_password, $switch_user;
if (!$username || !$password || !$root_username || !$root_password || !$switch_user)
{
$this->markTestSkipped('Missing test configuration');
}
}
/**
* @expectedException CloudKey_AuthorizationRequiredException
*/
public function testAnonymous()
{
global $base_url;
$cloudkey = new CloudKey(null, null, $base_url);
$cloudkey->user->whoami();
}
public function testNormalUser()
{
global $username, $password, $base_url;
$cloudkey = new CloudKey($username, $password, $base_url);
$res = $cloudkey->user->whoami();
$this->assertEquals($res->username, $username);
}
public function testNormalUserSu()
{
global $username, $password, $base_url, $switch_user;
$cloudkey = new CloudKey($username, $password, $base_url);
$cloudkey->act_as_user($switch_user);
$res = $cloudkey->user->whoami();
$this->assertEquals($res->username, $username);
}
public function testSuperUserSu()
{
global $root_username, $root_password, $base_url, $switch_user;
$cloudkey = new CloudKey($root_username, $root_password, $base_url);
$cloudkey->act_as_user($switch_user);
$res = $cloudkey->user->whoami();
$this->assertEquals($switch_user, $res->username);
}
/**
* @expectedException CloudKey_AuthenticationFailedException
*/
public function testSuperUserSuWrongUser()
{
global $root_username, $root_password, $base_url, $switch_user;
$cloudkey = new CloudKey($root_username, $root_password, $base_url);
$cloudkey->act_as_user('unexisting_user');
$res = $cloudkey->user->whoami();
}
}
class CloudKey_UserTest extends PHPUnit_Framework_TestCase
{
protected
$cloudkey = null;
protected function setUp()
{
global $username, $password, $base_url;
if (!$username || !$password)
{
$this->markTestSkipped('Missing test configuration');
return;
}
$this->cloudkey = new CloudKey($username, $password, $base_url);
}
public function testWhoami()
{
global $username;
$res = $this->cloudkey->user->whoami();
$this->assertType('object', $res);
$this->assertObjectHasAttribute('id', $res);
$this->assertObjectHasAttribute('username', $res);
$this->assertEquals($res->username, $username);
}
}
class CloudKey_FileTest extends PHPUnit_Framework_TestCase
{
protected
$cloudkey = null;
protected function setUp()
{
global $username, $password, $base_url;
if (!$username || !$password)
{
$this->markTestSkipped('Missing test configuration');
return;
}
if (!is_file('.fixtures/video.3gp'))
{
$this->markTestSkipped('Missing fixtures, please do `git submodule init; git submodule update\'');
return;
}
$this->cloudkey = new CloudKey($username, $password, $base_url);
$this->cloudkey->media->reset();
}
public function tearDown()
{
if ($this->cloudkey)
{
$this->cloudkey->media->reset();
}
}
public function testUpload()
{
$res = $this->cloudkey->file->upload();
$this->assertObjectHasAttribute('url', $res);
}
public function testUploadTarget()
{
$target = 'http://www.example.com/myform';
$res = $this->cloudkey->file->upload(array('target' => $target));
$this->assertObjectHasAttribute('url', $res);
parse_str(parse_url($res->url, PHP_URL_QUERY), $qs);
$this->assertArrayHasKey('seal', $qs);
$this->assertArrayHasKey('uuid', $qs);
$this->assertArrayHasKey('target', $qs);
$this->assertEquals($qs['target'], $target);
}
public function testUploadFile()
{
$media = $this->cloudkey->file->upload_file('.fixtures/video.3gp');
$this->assertObjectHasAttribute('size', $media);
$this->assertObjectHasAttribute('name', $media);
$this->assertObjectHasAttribute('url', $media);
$this->assertObjectHasAttribute('hash', $media);
$this->assertObjectHasAttribute('seal', $media);
$this->assertEquals($media->size, filesize('.fixtures/video.3gp'));
$this->assertEquals($media->name, 'video');
$this->assertEquals($media->hash, sha1_file('.fixtures/video.3gp'));
}
}
class CloudKey_MediaTestBase extends PHPUnit_Framework_TestCase
{
protected
$cloudkey = null;
protected function setUp()
{
global $username, $password, $base_url;
if (!$username || !$password)
{
$this->markTestSkipped('Missing test configuration');
return;
}
$this->cloudkey = new CloudKey($username, $password, $base_url);
$this->cloudkey->media->reset();
}
public function tearDown()
{
if ($this->cloudkey)
{
$this->cloudkey->media->reset();
}
}
public function waitAssetReady($media_id, $asset_name, $wait = 60)
{
while ($wait--)
{
$asset = $this->cloudkey->media->get_asset(array('id' => $media_id, 'preset' => $asset_name));
if ($asset->status !== 'ready')
{
if ($asset->status === 'error')
{
return false;
}
sleep(1);
continue;
}
return true;
}
throw new Exception('timeout exceeded');
}
}
class CloudKey_MediaTest extends CloudKey_MediaTestBase
{
public function testCreate()
{
$res = $this->cloudkey->media->create();
$this->assertType('object', $res);
$this->assertObjectHasAttribute('id', $res);
$this->assertEquals(strlen($res->id), 24);
}
public function testInfo()
{
$media = $this->cloudkey->media->create();
$res = $this->cloudkey->media->info(array('id' => $media->id));
$this->assertType('object', $res);
$this->assertObjectHasAttribute('id', $res);
$this->assertEquals(strlen($res->id), 24);
}
/**
* @expectedException CloudKey_NotFoundException
*/
public function testInfoNotFound()
{
$this->cloudkey->media->info(array('id' => '1b87186c84e1b015a0000000'));
}
/**
* @expectedException CloudKey_InvalidParamException
*/
public function testInfoInvalidMediaId()
{
$this->cloudkey->media->info(array('id' => 'b87186c84e1b015a0000000'));
}
/**
* @expectedException CloudKey_NotFoundException
*/
public function testDelete()
{
$media = $this->cloudkey->media->create();
$res = $this->cloudkey->media->delete(array('id' => $media->id));
$this->assertNull($res);
// Should throw CloudKey_NotFoundException
$this->cloudkey->media->info(array('id' => $media->id));
}
/**
* @expectedException CloudKey_NotFoundException
*/
public function testDeleteNotFound()
{
$this->cloudkey->media->delete(array('id' => '1b87186c84e1b015a0000000'));
}
/**
* @expectedException CloudKey_InvalidParamException
*/
public function testDeleteInvalidMediaId()
{
$this->cloudkey->media->delete(array('id' => 'b87186c84e1b015a0000000'));
}
}
class CloudKey_MediaMetaTest extends CloudKey_MediaTestBase
{
public function testSetMeta()
{
$media = $this->cloudkey->media->create();
$res = $this->cloudkey->media->set_meta(array('id' => $media->id, 'key' => 'mykey', 'value' => 'my_value'));
$this->assertNull($res);
$res = $this->cloudkey->media->get_meta(array('id' => $media->id, 'key' => 'mykey'));
$this->assertType('object', $res);
$this->assertObjectHasAttribute('value', $res);
$this->assertEquals($res->value, 'my_value');
}
/**
* @expectedException CloudKey_NotFoundException
*/
public function testSetMetaMediaNotFound()
{
$media = $this->cloudkey->media->create();
$this->cloudkey->media->set_meta(array('id' => '1b87186c84e1b015a0000000', 'key' => 'mykey', 'value' => 'my_value'));
}
/**
* @expectedException CloudKey_InvalidParamException
*/
public function testSetMetaInvalidMediaId()
{
$media = $this->cloudkey->media->create();
$this->cloudkey->media->set_meta(array('id' => 'b87186c84e1b015a0000000', 'key' => 'mykey', 'value' => 'my_value'));
}
/**
* @expectedException CloudKey_MissingParamException
*/
public function testSetMetaMissingArgKey()
{
$media = $this->cloudkey->media->create();
$this->cloudkey->media->set_meta(array('id' => $media->id, 'key' => 'mykey'));
}
/**
* @expectedException CloudKey_MissingParamException
*/
public function testSetMetaMissingArgValue()
{
$media = $this->cloudkey->media->create();
$this->cloudkey->media->set_meta(array('id' => $media->id, 'value' => 'my_value'));
}
/**
* @expectedException CloudKey_MissingParamException
*/
public function testSetMetaMissingArgKeyAndValue()
{
$media = $this->cloudkey->media->create();
$this->cloudkey->media->set_meta(array('id' => $media->id));
}
public function testSetMetaUpdate()
{
$media = $this->cloudkey->media->create();
$res = $this->cloudkey->media->set_meta(array('id' => $media->id, 'key' => 'mykey', 'value' => 'value'));
$this->assertNull($res);
$res = $this->cloudkey->media->set_meta(array('id' => $media->id, 'key' => 'mykey', 'value' => 'new_value'));
$this->assertNull($res);
$res = $this->cloudkey->media->get_meta(array('id' => $media->id, 'key' => 'mykey'));
$this->assertType('object', $res);
$this->assertObjectHasAttribute('value', $res);
$this->assertEquals($res->value, 'new_value');
}
/**
* @expectedException CloudKey_NotFoundException
*/
public function testGetMetaMediaNotFound()
{
$media = $this->cloudkey->media->create();
$this->cloudkey->media->get_meta(array('id' => $media->id, 'key' => 'not_found_key'));
}
public function testListMeta()
{
$media = $this->cloudkey->media->create();
$res = $this->cloudkey->media->list_meta(array('id' => $media->id));
$this->assertType('object', $res);
for ($i = 0; $i < 10; $i++)
{
$this->cloudkey->media->set_meta(array('id' => $media->id, 'key' => 'mykey-' . $id, 'value' => 'a value'));
}
$res = $this->cloudkey->media->list_meta(array('id' => $media->id));
$this->assertType('object', $res);
for ($i = 0; $i < 10; $i++)
{
$this->assertObjectHasAttribute('mykey-' . $id, $res);
}
}
/**
* @expectedException CloudKey_NotFoundException
*/
public function testRemoveMeta()
{
$media = $this->cloudkey->media->create();
$this->cloudkey->media->set_meta(array('id' => $media->id, 'key' => 'mykey', 'value' => 'value'));
$res = $this->cloudkey->media->remove_meta(array('id' => $media->id, 'key' => 'mykey'));
$this->assertNull($res);
$this->cloudkey->media->get_meta(array('id' => $media->id, 'key' => 'mykey'));
}
/**
* @expectedException CloudKey_NotFoundException
*/
public function testRemoveMetaNotFound()
{
$media = $this->cloudkey->media->create();
$this->cloudkey->media->remove_meta(array('id' => $media->id, 'key' => 'mykey'));
}
}
class CloudKey_MediaAssetTest extends CloudKey_MediaTestBase
{
public function testSetAsset()
{
$file = $this->cloudkey->file->upload_file('.fixtures/video.3gp');
$media = $this->cloudkey->media->create();
$res = $this->cloudkey->media->set_asset(array('id' => $media->id, 'preset' => 'source', 'url' => $file->url));
$this->assertType('object', $res);
$this->assertEquals($res->status, 'queued');
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => 'source'));
$this->assertObjectHasAttribute('status', $res);
$this->assertContains($res->status, array('pending', 'processing'));
$res = $this->waitAssetReady($media->id, 'source');
$this->assertTrue($res);
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => 'source'));
$this->assertObjectHasAttribute('status', $res);
$this->assertEquals($res->status, 'ready');
}
/**
* @expectedException CloudKey_NotFoundException
*/
public function testRemoveAsset()
{
$file = $this->cloudkey->file->upload_file('.fixtures/video.3gp');
$media = $this->cloudkey->media->create();
$this->cloudkey->media->set_asset(array('id' => $media->id, 'preset' => 'source', 'url' => $file->url));
$res = $this->waitAssetReady($media->id, 'source');
$this->assertTrue($res);
$res = $this->cloudkey->media->remove_asset(array('id' => $media->id, 'preset' => 'source'));
$this->assertType('object', $res);
$this->assertEquals($res->status, 'queued');
$wait = 10;
while($wait--)
{
// Will throw CloudKey_NotFoundException when effectively removed
$this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => 'source'));
sleep(1);
}
}
public function testProcessAsset()
{
$file = $this->cloudkey->file->upload_file('.fixtures/video.3gp');
$media = $this->cloudkey->media->create();
$this->cloudkey->media->set_asset(array('id' => $media->id, 'preset' => 'source', 'url' => $file->url));
// Don't wait for source asset to be ready, the API should handle the dependancy by itself
$res = $this->cloudkey->media->process_asset(array('id' => $media->id, 'preset' => 'flv_h263_mp3'));
$this->assertType('object', $res);
$this->assertEquals($res->status, 'queued');
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => 'flv_h263_mp3'));
$this->assertEquals($res->status, 'pending');
$res = $this->cloudkey->media->process_asset(array('id' => $media->id, 'preset' => 'mp4_h264_aac'));
$this->assertType('object', $res);
$this->assertEquals($res->status, 'queued');
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => 'mp4_h264_aac'));
$this->assertEquals($res->status, 'pending');
$res = $this->waitAssetReady($media->id, 'flv_h263_mp3');
$this->assertTrue($res);
$res = $this->waitAssetReady($media->id, 'mp4_h264_aac');
$this->assertTrue($res);
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => 'flv_h263_mp3'));
$this->assertEquals($res->status, 'ready');
$this->assertObjectHasAttribute('duration', $res);
$this->assertObjectHasAttribute('filesize', $res);
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => 'flv_h263_mp3'));
$this->assertEquals($res->status, 'ready');
$this->assertObjectHasAttribute('duration', $res);
$this->assertObjectHasAttribute('filesize', $res);
}
}
class CloudKey_MediaPublishTest extends CloudKey_MediaTestBase
{
public function testPublish()
{
$file = $this->cloudkey->file->upload_file('.fixtures/video.3gp');
$presets = array('flv_h263_mp3', 'mp4_h264_aac', 'flv_h263_mp3_ld', 'jpeg_thumbnail_small', 'jpeg_thumbnail_medium', 'jpeg_thumbnail_large');
$media = $this->cloudkey->media->publish(array('presets' => $presets, 'url' => $file->url));
foreach ($presets as $preset)
{
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => $preset));
$this->assertEquals($res->status, 'pending');
}
foreach ($presets as $preset)
{
$this->waitAssetReady($media->id, $preset);
}
foreach ($presets as $preset)
{
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => $preset));
$this->assertObjectHasAttribute('status', $res);
$this->assertObjectHasAttribute('duration', $res);
$this->assertObjectHasAttribute('filesize', $res);
$this->assertEquals($res->status, 'ready');
}
}
public function testPublishSourceError()
{
$presets = array('flv_h263_mp3', 'mp4_h264_aac', 'flv_h263_mp3_ld');
$media = $this->cloudkey->media->publish(array('presets' => $presets, 'url' => 'http://localhost/'));
foreach ($presets as $preset)
{
$res = $this->waitAssetReady($media->id, $preset);
$this->assertFalse($res);
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => $preset));
$this->assertEquals($res->status, 'error');
}
}
public function testPublishUrlError()
{
$file = $this->cloudkey->file->upload_file('.fixtures/broken_video.avi');
$presets = array('flv_h263_mp3', 'mp4_h264_aac', 'flv_h263_mp3_ld');
$media = $this->cloudkey->media->publish(array('presets' => $presets, 'url' => $file->url));
foreach ($presets as $preset)
{
$res = $this->waitAssetReady($media->id, $preset);
$this->assertFalse($res);
$res = $this->cloudkey->media->get_asset(array('id' => $media->id, 'preset' => $preset));
$this->assertEquals($res->status, 'error');
}
}
}