| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Json_Server
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- // Call Zend_Json_Server_ResponseTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_Json_Server_ResponseTest::main");
- }
- require_once 'Zend/Json/Server/Response.php';
- require_once 'Zend/Json/Server/Error.php';
- require_once 'Zend/Json.php';
- /**
- * Test class for Zend_Json_Server_Response
- *
- * @category Zend
- * @package Zend_Json_Server
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Json
- * @group Zend_Json_Server
- */
- class Zend_Json_Server_ResponseTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Runs the test methods of this class.
- *
- * @return void
- */
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_Json_Server_ResponseTest");
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- /**
- * Sets up the fixture, for example, open a network connection.
- * This method is called before a test is executed.
- *
- * @return void
- */
- public function setUp()
- {
- $this->response = new Zend_Json_Server_Response();
- }
- /**
- * Tears down the fixture, for example, close a network connection.
- * This method is called after a test is executed.
- *
- * @return void
- */
- public function tearDown()
- {
- }
- public function testResultShouldBeNullByDefault()
- {
- $this->assertNull($this->response->getResult());
- }
- public function testResultAccessorsShouldWorkWithNormalInput()
- {
- foreach (array(true, 'foo', 2, 2.0, array(), array('foo' => 'bar')) as $result) {
- $this->response->setResult($result);
- $this->assertEquals($result, $this->response->getResult());
- }
- }
- public function testResultShouldNotBeErrorByDefault()
- {
- $this->assertFalse($this->response->isError());
- }
- public function testSettingErrorShouldMarkRequestAsError()
- {
- $error = new Zend_Json_Server_Error();
- $this->response->setError($error);
- $this->assertTrue($this->response->isError());
- }
- public function testShouldBeAbleToRetrieveErrorObject()
- {
- $error = new Zend_Json_Server_Error();
- $this->response->setError($error);
- $this->assertSame($error, $this->response->getError());
- }
- public function testIdShouldBeNullByDefault()
- {
- $this->assertNull($this->response->getId());
- }
- public function testIdAccesorsShouldWorkWithNormalInput()
- {
- $this->response->setId('foo');
- $this->assertEquals('foo', $this->response->getId());
- }
- public function testVersionShouldBeNullByDefault()
- {
- $this->assertNull($this->response->getVersion());
- }
- public function testVersionShouldBeLimitedToV2()
- {
- $this->response->setVersion('2.0');
- $this->assertEquals('2.0', $this->response->getVersion());
- foreach (array('a', 1, '1.0', array(), true) as $version) {
- $this->response->setVersion($version);
- $this->assertNull($this->response->getVersion());
- }
- }
- public function testResponseShouldBeAbleToCastToJson()
- {
- $this->response->setResult(true)
- ->setId('foo')
- ->setVersion('2.0');
- $json = $this->response->toJson();
- $test = Zend_Json::decode($json);
- $this->assertTrue(is_array($test));
- $this->assertTrue(array_key_exists('result', $test));
- // assertion changed to false, because 'error' may not coexist with 'result'
- $this->assertFalse(array_key_exists('error', $test), "'error' may not coexist with 'result'");
- $this->assertTrue(array_key_exists('id', $test));
- $this->assertTrue(array_key_exists('jsonrpc', $test));
- $this->assertTrue($test['result']);
- $this->assertEquals($this->response->getId(), $test['id']);
- $this->assertEquals($this->response->getVersion(), $test['jsonrpc']);
- }
- public function testResponseShouldCastErrorToJsonIfIsError()
- {
- $error = new Zend_Json_Server_Error();
- $error->setCode(Zend_Json_Server_Error::ERROR_INTERNAL)
- ->setMessage('error occurred');
- $this->response->setId('foo')
- ->setResult(true)
- ->setError($error);
- $json = $this->response->toJson();
- $test = Zend_Json::decode($json);
- $this->assertTrue(is_array($test));
- $this->assertFalse(array_key_exists('result', $test), "'result' may not coexist with 'error'");
- $this->assertTrue(array_key_exists('id', $test));
- $this->assertFalse(array_key_exists('jsonrpc', $test));
- $this->assertEquals($this->response->getId(), $test['id']);
- $this->assertEquals($error->getCode(), $test['error']['code']);
- $this->assertEquals($error->getMessage(), $test['error']['message']);
- }
- public function testCastToStringShouldCastToJson()
- {
- $this->response->setResult(true)
- ->setId('foo');
- $json = $this->response->__toString();
- $test = Zend_Json::decode($json);
- $this->assertTrue(is_array($test));
- $this->assertTrue(array_key_exists('result', $test));
- $this->assertFalse(array_key_exists('error', $test), "'error' may not coexist with 'result'");
- $this->assertTrue(array_key_exists('id', $test));
- $this->assertFalse(array_key_exists('jsonrpc', $test));
- $this->assertTrue($test['result']);
- $this->assertEquals($this->response->getId(), $test['id']);
- }
- }
- // Call Zend_Json_Server_ResponseTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_Json_Server_ResponseTest::main") {
- Zend_Json_Server_ResponseTest::main();
- }
|