]> git.mxchange.org Git - friendica.git/blob - tests/src/Util/JSonLDTest.php
Added tests for JsonLD class
[friendica.git] / tests / src / Util / JSonLDTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\Util;
23
24 use Friendica\Util\JsonLD;
25 use PHPUnit\Framework\TestCase;
26
27 /**
28  * JsonLD utility test class
29  */
30 class JsonLDTest extends TestCase
31 {       
32         public function testFetchElementArrayNotFound()
33         {
34                 $object = [];
35
36                 $data = JsonLD::fetchElementArray($object, 'field');
37                 $this->assertNull($data);
38         }
39
40         public function testFetchElementNotFound()
41         {
42                 $object = [];
43
44                 $data = JsonLD::fetchElement($object, 'field');
45                 $this->assertNull($data);
46         }
47
48         public function testFetchElementFound()
49         {
50                 $object = ['field' => 'value'];
51
52                 $data = JsonLD::fetchElement($object, 'field');
53                 $this->assertSame('value', $data);
54         }
55
56         public function testFetchElementFoundID()
57         {
58                 $object = ['field' => ['field2' => 'value2', '@id' => 'value', 'field3' => 'value3']];
59
60                 $data = JsonLD::fetchElement($object, 'field');
61                 $this->assertSame('value', $data);
62         }
63
64         public function testFetchElementType()
65         {
66                 $object = ['source' => ['content' => 'body', 'mediaType' => 'text/bbcode']];
67
68                 $data = JsonLD::fetchElement($object, 'source', 'content', 'mediaType', 'text/bbcode');
69                 $this->assertSame('body', $data);
70         }
71
72         public function testFetchElementTypeArray()
73         {
74                 $object = ['source' => [['content' => 'body2', 'mediaType' => 'text/html'],
75                         ['content' => 'body', 'mediaType' => 'text/bbcode']]];
76
77                 $data = JsonLD::fetchElement($object, 'source', 'content', 'mediaType', 'text/bbcode');
78                 $this->assertSame('body', $data);
79         }
80 }