]> git.mxchange.org Git - friendica.git/blob - tests/src/Module/Api/Friendica/Photoalbum/UpdateTest.php
Add tests to prove error https://github.com/friendica/friendica/issues/11023
[friendica.git] / tests / src / Module / Api / Friendica / Photoalbum / UpdateTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\src\Module\Api\Friendica\Photoalbum;
23
24 use Friendica\App\Router;
25 use Friendica\DI;
26 use Friendica\Module\Api\Friendica\Photoalbum\Update;
27 use Friendica\Network\HTTPException\BadRequestException;
28 use Friendica\Test\src\Module\Api\ApiTest;
29
30 class UpdateTest extends ApiTest
31 {
32         public function testEmpty()
33         {
34                 $this->expectException(BadRequestException::class);
35                 (new Update(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]))->run();
36         }
37
38         public function testTooFewArgs()
39         {
40                 $this->expectException(BadRequestException::class);
41                 (new Update(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]))->run(['album' => 'album_name']);
42         }
43
44         public function testWrongUpdate()
45         {
46                 $this->expectException(BadRequestException::class);
47                 (new Update(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]))->run(['album' => 'album_name', 'album_new' => 'album_name']);
48         }
49
50         public function testWithoutAuthenticatedUser()
51         {
52                 self::markTestIncomplete('Needs BasicAuth as dynamic method for overriding first');
53         }
54
55         public function testValid()
56         {
57                 $this->loadFixture(__DIR__ . '/../../../../../datasets/photo/photo.fixture.php', DI::dba());
58
59                 $response = (new Update(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]))->run([], ['album' => 'test_album', 'album_new' => 'test_album_2']);
60
61                 $responseBody = (string)$response->getBody();
62
63                 self::assertJson($responseBody);
64
65                 $json = json_decode($responseBody);
66
67                 self::assertEquals('updated', $json->result);
68                 self::assertEquals('album `test_album` with all containing photos has been renamed to `test_album_2`.', $json->message);
69         }
70 }