本文整理汇总了PHP中PHPUnit_Framework_Assert::assertJson方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPUnit_Framework_Assert::assertJson方法的具体用法?PHP PHPUnit_Framework_Assert::assertJson怎么用?PHP PHPUnit_Framework_Assert::assertJson使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPUnit_Framework_Assert
的用法示例。
在下文中一共展示了PHPUnit_Framework_Assert::assertJson方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: assertEqualJsons
private function assertEqualJsons($expected, $actual, $error_message = '')
{
PHPUnit::assertJson($expected, $error_message);
PHPUnit::assertJson($actual, $error_message);
$expected = json_decode($expected);
$actual = json_decode($actual);
PHPUnit::assertEquals($expected, $actual, $error_message);
}
示例2: toBeJson
public function toBeJson()
{
if ($this->negate) {
a::assertThat($this->actual, a::logicalAnd(a::isType('string'), a::logicalNot(a::isJson())));
} else {
a::assertJson($this->actual);
}
}
示例3: isJson
public function isJson()
{
Assert::assertJson($this->actual, $this->description);
return $this;
}
示例4: toBeJson
/**
* Expect that a string is a valid JSON string.
*
* @param string $message
*
* @return Expect
*/
public function toBeJson($message = '')
{
Assert::assertJson($this->value, $message);
return $this;
}
示例5: assertJsonStringEqualsJsonString
public static function assertJsonStringEqualsJsonString($expectedJson, $actualJson, $message = '')
{
Assertions::assertJson($expectedJson, $message);
Assertions::assertJson($actualJson, $message);
$expected = json_decode($expectedJson);
$actual = json_decode($actualJson);
Assertions::assertThat($actual, new ConstraintIsSimilar($expected), $message);
}
示例6: fetchExpenseListsForMyAccount
/**
* @return \stdClass[]
*/
public function fetchExpenseListsForMyAccount()
{
$this->client->request('GET', '/expense_list/');
$response = $this->client->getResponse();
PHPUnit_Framework_Assert::assertEquals(Response::HTTP_OK, $response->getStatusCode());
PHPUnit_Framework_Assert::assertJson($response->getContent());
$responseData = json_decode($response->getContent());
PHPUnit_Framework_Assert::assertInternalType('array', $responseData);
return $responseData;
}
示例7: theResponseIsJson
/**
* @Then the response should be json/JSON
* @Then the response is json/JSON
*/
public function theResponseIsJson()
{
Assert::assertThat(static::$response->headers->get('Content-Type'), Assert::logicalOr(Assert::stringStartsWith('application/json'), Assert::stringStartsWith('text/javascript')));
Assert::assertJson($this->getResponseContent());
}
示例8: testJsonDataResponse
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());
}