| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <?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_Serializer
- * @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$
- */
- /**
- * @see Zend_Serializer_Adapter_PythonPickle
- */
- require_once 'Zend/Serializer/Adapter/PythonPickle.php';
- /**
- * @category Zend
- * @package Zend_Serializer
- * @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
- */
- class Zend_Serializer_Adapter_PythonPickleSerializeProtocol0Test extends PHPUnit_Framework_TestCase
- {
- private $_adapter;
- public function setUp()
- {
- $this->_adapter = new Zend_Serializer_Adapter_PythonPickle(array('protocol' => 0));
- }
- public function tearDown()
- {
- $this->_adapter = null;
- }
- public function testSerializeNull()
- {
- $value = null;
- $expected = 'N.';
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeTrue()
- {
- $value = true;
- $expected = "I01\r\n.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeFalse()
- {
- $value = false;
- $expected = "I00\r\n.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeInt()
- {
- $value = -12345;
- $expected = "I-12345\r\n.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeFloat()
- {
- $value = -12345.6789;
- $expected = "F-12345.6789\r\n.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeString()
- {
- $value = 'test';
- $expected = "S'test'\r\np0\r\n.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeStringWithSpecialChars()
- {
- $value = "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
- . "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f"
- . "\xff\\\"'";
- $expected = "S'\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\t\\n\\x0b\\x0c\\r\\x0e\\x0f"
- . "\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f"
- . "\\xff\\\\\"\\''\r\n"
- . "p0\r\n.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeArrayList()
- {
- $value = array('1', '2', 'test');
- $expected = "(lp0\r\n"
- . "S'1'\r\n"
- . "p1\r\n"
- . "aS'2'\r\n"
- . "p2\r\n"
- . "aS'test'\r\n"
- . "p3\r\n"
- . "a.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeArrayDict()
- {
- $value = array('1', '2', 'three' => 'test');
- $expected = "(dp0\r\n"
- . "I0\r\n"
- . "S'1'\r\n"
- . "p1\r\n"
- . "sI1\r\n"
- . "S'2'\r\n"
- . "p2\r\n"
- . "sS'three'\r\n"
- . "p3\r\n"
- . "S'test'\r\n"
- . "p4\r\n"
- . "s.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeObject()
- {
- $value = new StdClass();
- $value->test = 'test';
- $value->test2 = 2;
- $expected = "(dp0\r\n"
- . "S'test'\r\n"
- . "p1\r\n"
- . "g1\r\n"
- . "sS'test2'\r\n"
- . "p2\r\n"
- . "I2\r\n"
- . "s.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- }
|