| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?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_PythonPickleSerializeProtocol1Test extends PHPUnit_Framework_TestCase
- {
- private $_adapter;
- public function setUp()
- {
- $this->_adapter = new Zend_Serializer_Adapter_PythonPickle(array('protocol' => 1));
- }
- 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 testSerializeBinInt1()
- {
- $value = 255;
- $expected = "K\xff.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeBinInt2()
- {
- $value = 256;
- $expected = "M\x00\x01.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeBinInt()
- {
- $value = -2;
- $expected = "J\xfe\xff\xff\xff.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeBinFloat()
- {
- $value = -12345.6789;
- $expected = "G\xc0\xc8\x1c\xd6\xe6\x31\xf8\xa1.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeShortBinString()
- {
- $value = 'test';
- $expected = "U\x04test"
- . "q\x00.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeBinString()
- {
- $value = "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"
- . "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"
- . "01234567890123456789012345678901234567890123456789012345";
- $expected = "T\x00\x01\x00\x00"
- . "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"
- . "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"
- . "01234567890123456789012345678901234567890123456789012345"
- . "q\x00.";
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- }
|