assertJsonStringEqualsJsonString() public static method

Asserts that two given JSON encoded objects or arrays are equal.
public static assertJsonStringEqualsJsonString ( string $expectedJson, string $actualJson, string $message = '' )
$expectedJson string
$actualJson string
$message string
コード例 #1
0
ファイル: StringMatcher.php プロジェクト: dekeysoft/pu-tester
 public function isEqualToJsonString($string)
 {
     Assert::assertJsonStringEqualsJsonString($string, $this->actual, $this->description);
     return $this;
 }
コード例 #2
0
ファイル: Verify.php プロジェクト: jaschweder/Verify
 public function equalsJsonString($string)
 {
     a::assertJsonStringEqualsJsonString($string, $this->actual, $this->description);
 }
コード例 #3
0
ファイル: Functions.php プロジェクト: raul1234587/phpunit
/**
 * Asserts that two given JSON encoded objects or arrays are equal.
 *
 * @param string $expectedJson
 * @param string $actualJson
 * @param string $message
 * @since Method available since Release 3.7.0
 */
function assertJsonStringEqualsJsonString($expectedJson, $actualJson, $message = '')
{
    return PHPUnit_Framework_Assert::assertJsonStringEqualsJsonString($expectedJson, $actualJson, $message = '');
}
コード例 #4
0
ファイル: Expect.php プロジェクト: jpkleemans/phpunit-expect
 /**
  * Expect that two given JSON encoded objects or arrays are equal.
  *
  * @param string $expectedJson
  * @param string $message
  *
  * @return Expect
  */
 public function toEqualJson($expectedJson, $message = '')
 {
     Assert::assertJsonStringEqualsJsonString($expectedJson, $this->value, $message);
     return $this;
 }
コード例 #5
0
 public function testJsonDataResponse()
 {
     $path = '/test/path';
     $headers = array('h1' => 'a', 'h2' => 'b');
     $parameters = array('p1' => 'c', 'p2' => 'd');
     $method = AbstractClient::METHOD_GET;
     $responseData = array('status' => 'ok', 'data' => 123, 'message' => 'This is a test');
     $responseContent = json_encode($responseData);
     $mockAdapter = new MockAdapter();
     // Adds mock basic OK response
     $mockAdapter->addResponseBy(Response::STATUS_OK, '', $responseContent);
     // Add mock adapter
     $this->_client->setAdapter($mockAdapter);
     // Send request
     $data = $this->_client->get($path, $parameters, $headers);
     // Gets response object
     $response = $this->_client->getResponse();
     // Content is being returned correctly
     \PHPUnit_Framework_Assert::assertJson($response->getRawContent());
     \PHPUnit_Framework_Assert::assertJsonStringEqualsJsonString($responseContent, $response->getRawContent());
     // Content is being parsed correctly (json)
     \PHPUnit_Framework_Assert::assertInternalType(\PHPUnit_Framework_Constraint_IsType::TYPE_OBJECT, $data);
     // Check data parsed
     foreach ($responseData as $key => $value) {
         \PHPUnit_Framework_Assert::assertObjectHasAttribute($key, $data);
         \PHPUnit_Framework_Assert::assertEquals($value, $data->{$key});
     }
     \PHPUnit_Framework_Assert::assertTrue($response->isOK());
 }