mirror of
https://github.com/friendica/friendica
synced 2024-11-18 05:43:42 +00:00
Added new test for JsonLD::fetchElementArray type matching
This commit is contained in:
parent
fa003eaa84
commit
9e4a0bf212
1 changed files with 12 additions and 0 deletions
|
@ -62,6 +62,7 @@ class JsonLDTest extends TestCase
|
||||||
$data = JsonLD::fetchElementArray($object, 'field', '@id');
|
$data = JsonLD::fetchElementArray($object, 'field', '@id');
|
||||||
self::assertSame(['value3', 'value4'], $data);
|
self::assertSame(['value3', 'value4'], $data);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testFetchElementArrayFoundArrays()
|
public function testFetchElementArrayFoundArrays()
|
||||||
{
|
{
|
||||||
$object = ['field' => [['subfield11' => 'value11', 'subfield12' => 'value12'],
|
$object = ['field' => [['subfield11' => 'value11', 'subfield12' => 'value12'],
|
||||||
|
@ -74,6 +75,17 @@ class JsonLDTest extends TestCase
|
||||||
self::assertSame($expect, $data);
|
self::assertSame($expect, $data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testFetchElementArrayTypeValue()
|
||||||
|
{
|
||||||
|
$object = ['field' => [['subfield11' => 'value11', 'subfield12' => 'value12'],
|
||||||
|
['subfield21' => 'value21', 'subfield22' => 'value22']]];
|
||||||
|
|
||||||
|
$expect = [['subfield11' => 'value11', 'subfield12' => 'value12']];
|
||||||
|
|
||||||
|
$data = JsonLD::fetchElementArray($object, 'field', null, 'subfield11', 'value11');
|
||||||
|
self::assertSame($expect, $data);
|
||||||
|
}
|
||||||
|
|
||||||
public function testFetchElementNotFound()
|
public function testFetchElementNotFound()
|
||||||
{
|
{
|
||||||
$object = [];
|
$object = [];
|
||||||
|
|
Loading…
Reference in a new issue