Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GetThumbnailsCest.php « api « tests - github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73065d127d6de2f5c1de02830906df5036e5e874 (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
<?php
/**
 * ownCloud - gallery
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Olivier Paroz <owncloud@interfasys.ch>
 *
 * @copyright Olivier Paroz 2015
 */

use Page\Gallery as GalleryApp;

/**
 * Class GetThumbnailsCest
 */
class GetThumbnailsCest {

	private $apiUrl;
	private $params = [
		'square' => false,
		'scale'  => 2.5
	];

	/**
	 * Sets up the environment for this series of tests
	 *
	 * @param ApiTester $I
	 */
	public function _before(ApiTester $I) {
		$this->apiUrl = GalleryApp::$URL . 'api/thumbnails';
	}

	public function _after(ApiTester $I) {
	}

	/**
	 * Connects to the API as an anonymous user
	 *
	 * @param \Step\Api\Anonymous $I
	 */
	public function unauthorizedAccess(\Step\Api\Anonymous $I) {
		$I->connectToTheApi($this->apiUrl, 'the thumbnails API');
	}

	/**
	 * @param \Step\Api\User $I
	 */
	public function getFileThumbnails(\Step\Api\User $I) {
		$I->am('an app');
		$I->wantTo('get the thumbnails for the files in this folder');
		$params = $this->params;
		$data = $I->getFilesDataForFolder('');
		$id1 = $data['testimage.jpg']['id'];
		$id2 = $data['animated.gif']['id'];
		$this->getThumbnails($I, $params, $id1, $id2);
	}

	/**
	 * @param \Step\Api\User $I
	 */
	public function getFolderThumbnails(\Step\Api\User $I) {
		$I->am('an app');
		$I->wantTo('get the thumbnails for the albums in this folder');
		$params = $this->params;
		$params['square'] = true;
		$data = $I->getFilesDataForFolder('folder1');
		$id1 = $data['testimage.jpg']['id'];
		$id2 = $data['testimage-wide.png']['id'];
		$this->getThumbnails($I, $params, $id1, $id2);
	}

	public function getFileNotFoundCode(\Step\Api\User $I) {
		$I->am('an app');
		$I->wantTo('receive 404 events when I send the wrong IDs');
		$I->getUserCredentialsAndUseHttpAuthentication();
		$I->haveHttpHeader('Accept', 'text/event-stream');
		$this->params['ids'] = '99998;99999';
		$I->sendGET($this->apiUrl, $this->params);
		$I->seeResponseCodeIs(200);
		$I->seeHttpHeader('Content-type', 'text/event-stream;charset=UTF-8');
		$I->seeResponseContains('"fileid":"99998","status":404');
		$I->seeResponseContains('"fileid":"99999","status":404');
	}

	public function getThumbnailOfBrokenFile(\Step\Api\User $I) {
		$I->am('an app');
		$I->wantTo(
			'receive an event with a 500 code when trying to get the thumbnail of a broken file'
		);
		$I->getUserCredentialsAndUseHttpAuthentication();
		$I->haveHttpHeader('Accept', 'text/event-stream');
		$data = $I->getFilesDataForFolder('');
		$id = $data['testimage-corrupt.jpg']['id'];
		$this->params['ids'] = $id;
		$I->sendGET($this->apiUrl, $this->params);
		$I->seeResponseCodeIs(200);
		$I->seeHttpHeader('Content-type', 'text/event-stream;charset=UTF-8');
		$I->seeResponseContains('"fileid":"' . $id . '","status":500');
	}

	/**
	 * @param \Step\Api\User $I
	 * @param array $params
	 * @param int $id1
	 * @param int $id2
	 */
	private function getThumbnails(\Step\Api\User $I, $params, $id1, $id2) {
		$I->getUserCredentialsAndUseHttpAuthentication();
		$I->haveHttpHeader('Accept', 'text/event-stream');
		$params['ids'] = $id1 . ';' . $id2;
		$I->sendGET($this->apiUrl, $params);
		$I->seeResponseCodeIs(200);
		$I->seeHttpHeader('Content-type', 'text/event-stream;charset=UTF-8');
		$I->seeResponseContains('"status":200');
		$I->seeResponseContains('"fileid":"' . $id1 . '","status":200');
		$I->seeResponseContains('"fileid":"' . $id2 . '","status":200');
	}

}