tao-test/app/vendor/flow/jsonpath/tests/JSONPathDashedIndexTest.php

47 lines
1.1 KiB
PHP

<?php
namespace Flow\JSONPath\Test;
use Flow\JSONPath\JSONPath;
class JSONPathDashedIndexTest extends \PHPUnit_Framework_TestCase
{
public function indexDataProvider()
{
return [
// path, data, expected
[
'$.data[test-test-test]',
[
'data' => [
'test-test-test' => 'foo'
]
],
[
'foo'
]
],
[
'$.data[40f35757-2563-4790-b0b1-caa904be455f]',
[
'data' => [
'40f35757-2563-4790-b0b1-caa904be455f' => 'bar'
]
],
[
'bar'
]
]
];
}
/** @dataProvider indexDataProvider */
public function testSlice($path, $data, $expected)
{
$jsonPath = new JSONPath($data);
$result = $jsonPath->find($path)->data();
$this->assertEquals($expected, $result);
}
}