]> git.mxchange.org Git - friendica.git/blob - tests/src/Factory/Api/Twitter/ActivitiesTest.php
Merge pull request #12697 from MrPetovan/bug/deprecated
[friendica.git] / tests / src / Factory / Api / Twitter / ActivitiesTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Factory\Api\Twitter;
23
24 use Friendica\DI;
25 use Friendica\Factory\Api\Friendica\Activities;
26 use Friendica\Test\FixtureTest;
27
28 class ActivitiesTest extends FixtureTest
29 {
30         /**
31          * Test the api_format_items_activities() function.
32          *
33          * @return void
34          */
35         public function testApiFormatItemsActivities()
36         {
37                 $item = ['uid' => 0, 'uri-id' => 1];
38
39                 $result = (new Activities(DI::logger(), DI::twitterUser()))
40                         ->createFromUriId($item['uri-id'], $item['uid']);
41
42                 self::assertArrayHasKey('like', $result);
43                 self::assertArrayHasKey('dislike', $result);
44                 self::assertArrayHasKey('attendyes', $result);
45                 self::assertArrayHasKey('attendno', $result);
46                 self::assertArrayHasKey('attendmaybe', $result);
47         }
48
49         /**
50          * Test the api_format_items_activities() function with an XML result.
51          *
52          * @return void
53          */
54         public function testApiFormatItemsActivitiesWithXml()
55         {
56                 $item = ['uid' => 0, 'uri-id' => 1];
57
58                 $result = (new Activities(DI::logger(), DI::twitterUser()))
59                         ->createFromUriId($item['uri-id'], $item['uid'], 'xml');
60
61                 self::assertArrayHasKey('friendica:like', $result);
62                 self::assertArrayHasKey('friendica:dislike', $result);
63                 self::assertArrayHasKey('friendica:attendyes', $result);
64                 self::assertArrayHasKey('friendica:attendno', $result);
65                 self::assertArrayHasKey('friendica:attendmaybe', $result);
66         }
67 }