forked from friendica/friendica-addons
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Abraham\TwitterOAuth\Tests;
|
||
|
|
||
|
use Abraham\TwitterOAuth\Util\JsonDecoder;
|
||
|
|
||
|
class JsonDecoderTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @dataProvider jsonProvider
|
||
|
*/
|
||
|
public function testDecode($input, $asArray, $expected)
|
||
|
{
|
||
|
$this->assertEquals($expected, JsonDecoder::decode($input, $asArray));
|
||
|
}
|
||
|
|
||
|
public function jsonProvider()
|
||
|
{
|
||
|
return [
|
||
|
['[]', true, []],
|
||
|
['[1,2,3]', true, [1, 2, 3]],
|
||
|
['[{"id": 556179961825226750}]', true, [['id' => 556179961825226750]]],
|
||
|
['[]', false, []],
|
||
|
['[1,2,3]', false, [1, 2, 3]],
|
||
|
[
|
||
|
'[{"id": 556179961825226750}]',
|
||
|
false,
|
||
|
[
|
||
|
$this->getClass(function ($object) {
|
||
|
$object->id = 556179961825226750;
|
||
|
return $object;
|
||
|
})
|
||
|
]
|
||
|
],
|
||
|
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param callable $callable
|
||
|
*
|
||
|
* @return stdClass
|
||
|
*/
|
||
|
private function getClass(\Closure $callable)
|
||
|
{
|
||
|
$object = new \stdClass();
|
||
|
|
||
|
return $callable($object);
|
||
|
}
|
||
|
}
|