This PR moves the JSON API responses used in the tests to fixture files within the tests folder. This allows reuse and the ability to lint/validate these fixtures if required - although not covered in this PR. I've added TestCase::getPsr7StreamForFixture and TestCase::getPsr7JsonResponseForFixture to reduce code duplication and enable some assertions around the expected fixures/responses. Thanks,
28 lines
887 B
PHP
28 lines
887 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: junade
|
|
* Date: 19/09/2017
|
|
* Time: 15:24
|
|
*/
|
|
class ConfigurationsUARulesTest extends TestCase
|
|
{
|
|
public function testGetArray()
|
|
{
|
|
$configuration = new \Cloudflare\API\Configurations\UARules();
|
|
$configuration->addUA('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.1.1 Safari/603.2.4');
|
|
|
|
$array = $configuration->getArray();
|
|
$this->assertEquals(1, sizeof($array));
|
|
|
|
$this->assertObjectHasAttribute('target', $array[0]);
|
|
$this->assertEquals('ua', $array[0]->target);
|
|
$this->assertObjectHasAttribute('value', $array[0]);
|
|
$this->assertEquals(
|
|
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.1.1 Safari/603.2.4',
|
|
$array[0]->value
|
|
);
|
|
}
|
|
}
|