当前位置: 首页>>代码示例>>PHP>>正文


PHP PHPUnit_Framework_Assert::assertJson方法代码示例

本文整理汇总了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);
 }
开发者ID:aeony,项目名称:booothy,代码行数:8,代码来源:HttpContext.php

示例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);
     }
 }
开发者ID:jasonmccreary,项目名称:expect,代码行数:8,代码来源:Expect.php

示例3: isJson

 public function isJson()
 {
     Assert::assertJson($this->actual, $this->description);
     return $this;
 }
开发者ID:dekeysoft,项目名称:pu-tester,代码行数:5,代码来源:StringMatcher.php

示例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;
 }
开发者ID:jpkleemans,项目名称:phpunit-expect,代码行数:12,代码来源:Expect.php

示例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);
 }
开发者ID:JavierCane,项目名称:mpwar,代码行数:8,代码来源:FeatureContext.php

示例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;
 }
开发者ID:gobudgit,项目名称:gobudgit,代码行数:13,代码来源:RestExpenseListContext.php

示例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());
 }
开发者ID:treehouselabs,项目名称:base-api-bundle,代码行数:9,代码来源:ApiContext.php

示例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());
 }
开发者ID:mobilerider,项目名称:mobilerider-client-php,代码行数:29,代码来源:ClientTest.php


注:本文中的PHPUnit_Framework_Assert::assertJson方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。