]> git.mxchange.org Git - friendica.git/blob - tests/src/Util/JSonLDTest.php
Fix test
[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 testFetchElementArrayFoundEmptyArray()
41         {
42                 $object = ['field' => []];
43
44                 $data = JsonLD::fetchElementArray($object, 'field');
45                 $this->assertSame([[]], $data);
46         }
47
48         public function testFetchElementArrayFoundID()
49         {
50                 $object = ['field' => ['value1', ['@id' => 'value2'], ['@id' => 'value3']]];
51
52                 $data = JsonLD::fetchElementArray($object, 'field', '@id');
53                 $this->assertSame(['value1', 'value2', 'value3'], $data);
54         }
55
56         public function testFetchElementArrayFoundArrays()
57         {
58                 $object = ['field' => [['subfield11' => 'value11', 'subfield12' => 'value12'],
59                         ['subfield21' => 'value21', 'subfield22' => 'value22']]];
60
61                 $expect = [['subfield11' => 'value11', 'subfield12' => 'value12'],
62                         ['subfield21' => 'value21', 'subfield22' => 'value22']];
63
64                 $data = JsonLD::fetchElementArray($object, 'field');
65                 $this->assertSame($expect, $data);
66         }
67
68         public function testFetchElementNotFound()
69         {
70                 $object = [];
71
72                 $data = JsonLD::fetchElement($object, 'field');
73                 $this->assertNull($data);
74         }
75
76         public function testFetchElementFound()
77         {
78                 $object = ['field' => 'value'];
79
80                 $data = JsonLD::fetchElement($object, 'field');
81                 $this->assertSame('value', $data);
82         }
83
84         public function testFetchElementFoundEmptyString()
85         {
86                 $object = ['field' => ''];
87
88                 $data = JsonLD::fetchElement($object, 'field');
89                 $this->assertSame('', $data);
90         }
91
92         public function testFetchElementFoundID()
93         {
94                 $object = ['field' => ['field2' => 'value2', '@id' => 'value', 'field3' => 'value3']];
95
96                 $data = JsonLD::fetchElement($object, 'field');
97                 $this->assertSame('value', $data);
98         }
99
100         public function testFetchElementType()
101         {
102                 $object = ['source' => ['content' => 'body', 'mediaType' => 'text/bbcode']];
103
104                 $data = JsonLD::fetchElement($object, 'source', 'content', 'mediaType', 'text/bbcode');
105                 $this->assertSame('body', $data);
106         }
107
108         public function testFetchElementTypeArray()
109         {
110                 $object = ['source' => [['content' => 'body2', 'mediaType' => 'text/html'],
111                         ['content' => 'body', 'mediaType' => 'text/bbcode']]];
112
113                 $data = JsonLD::fetchElement($object, 'source', 'content', 'mediaType', 'text/bbcode');
114                 $this->assertSame('body', $data);
115         }
116 }