| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- <?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_PythonPickleUnserializeTest extends PHPUnit_Framework_TestCase
- {
- private $_adapter;
- public function setUp()
- {
- $this->_adapter = new Zend_Serializer_Adapter_PythonPickle();
- }
- public function tearDown()
- {
- $this->_adapter = null;
- }
- public function testUnserializeNone()
- {
- $value = "N.";
- $expected = null;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeNewTrue()
- {
- $value = "\x80\x02\x88.";
- $expected = true;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeNewFalse()
- {
- $value = "\x80\x02\x89.";
- $expected = false;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeIntTrue()
- {
- $value = "I01\r\n.";
- $expected = true;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeIntFalse()
- {
- $value = "I00\r\n.";
- $expected = false;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeInt()
- {
- $value = "I1\r\n.";
- $expected = 1;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeBinInt()
- {
- $value = "\x80\x02J\xc7\xcf\xff\xff.";
- $expected = -12345;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeBinInt1()
- {
- $value = "\x80\x02K\x02.";
- $expected = 2;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeBinInt2()
- {
- $value = "\x80\x02M\x00\x01.";
- $expected = 256;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeLong()
- {
- $value = "L9876543210L\r\n.";
- $expected = '9876543210';
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeLong1()
- {
- $value = "\x80\x02\x8a\x05\xea\x16\xb0\x4c\x02.";
- $expected = '9876543210';
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeLong4Positiv()
- {
- $value = "\x80\x02\x8b\x07\x00\x00\x00"
- . str_pad("\xff", 7, "\x7f")
- . ".";
- $expected = '35887507618889727';
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeLong4Negativ()
- {
- $value = "\x80\x02\x8b\x07\x00\x00\x00"
- . str_pad("\x00", 7, "\x9f")
- . ".";
- $expected = '-27127564814278912';
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeLong4InfBcMath()
- {
- $value = "\x80\x02\x8b\x08\x00\x00\x00"
- . str_pad("\x00", 8, "\x9f")
- . ".";
- if (extension_loaded('bcmath')) {
- $expected = '-6944656592455360768';
- } else {
- $expected = INF;
- }
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeFloat()
- {
- $value = "F-12345.6789\r\n.";
- $expected = -12345.6789;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeBinFloat()
- {
- $value = "\x80\x02G\xc0\xc8\x1c\xd6\xe6\x31\xf8\xa1.";
- $expected = -12345.6789;
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeString()
- {
- $value = "S'test'\r\np0\r\n.";
- $expected = 'test';
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeStringDoubleQuotes()
- {
- $value = "S\"'t'e's't'\"\r\np0\r\n.";
- $expected = "'t'e's't'";
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeStringWithSpecialChars()
- {
- $value = "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.";
- $expected = "\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\\\"'";
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeBinString()
- {
- $value = "\x80\x02T\x00\x01\x00\x00"
- . "01234567890123456789012345678901234567890123456789"
- . "01234567890123456789012345678901234567890123456789"
- . "01234567890123456789012345678901234567890123456789"
- . "01234567890123456789012345678901234567890123456789"
- . "01234567890123456789012345678901234567890123456789012345"
- . "q\x00.";
- $expected = '01234567890123456789012345678901234567890123456789'
- . '01234567890123456789012345678901234567890123456789'
- . '01234567890123456789012345678901234567890123456789'
- . '01234567890123456789012345678901234567890123456789'
- . '01234567890123456789012345678901234567890123456789012345';
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeShortBinString()
- {
- $value = "\x80\x02U\x04"
- . "test"
- . "q\x00.";
- $expected = 'test';
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeUnicode()
- {
- $value = "Vtest\\u0400\r\n" // test + ` + E
- . "p0\r\n"
- . ".";
- $expected = "test\xd0\x80";
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeBinUnicode()
- {
- $value = "\x80\x02" . "X\x07\x00\x00\x00" . "test\xd0\x80\n.";
- $expected = "test\xd0\x80\n"; // test + ` + E + \n
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeListAppend()
- {
- $value = "(lp0\r\n"
- . "I1\r\n"
- . "aI2\r\n"
- . "aI3\r\n"
- . "a.";
- $expected = array(1,2,3);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeEmptyListAppends()
- {
- $value = "\x80\x02]q\x00(K\x01K\x02K\x03e.";
- $expected = array(1,2,3);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeDictSetItem()
- {
- $value = "(dp0\r\n"
- . "S'test1'\r\n"
- . "p1\r\n"
- . "I1\r\n"
- . "sI0\r\n"
- . "I2\r\n"
- . "sS'test3'\r\n"
- . "p2\r\n"
- . "g2\r\n"
- . "s.";
- $expected = array('test1' => 1, 0 => 2, 'test3' => 'test3');
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeEmptyDictSetItems()
- {
- $value = "\x80\x02}q\x00(U\x05test1q\x01K\x01K\x00K\x02U\x05test3q\x02h\x02u.";
- $expected = array('test1' => 1, 0 => 2, 'test3' => 'test3');
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeTuple()
- {
- $value = "(I1\r\n"
- . "I2\r\n"
- . "I3\r\n"
- . "tp0\r\n"
- . ".";
- $expected = array(1,2,3);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeTuple1()
- {
- $value = "\x80\x02K\x01\x85q\x00.";
- $expected = array(1);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeTuple2()
- {
- $value = "\x80\x02K\x01K\x02\x86q\x00.";
- $expected = array(1,2);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeTuple3()
- {
- $value = "\x80\x02K\x01K\x02K\x03\x87q\x00.";
- $expected = array(1,2,3);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserialzeInvalid()
- {
- $value = 'not a serialized string';
- $this->setExpectedException('Zend_Serializer_Exception');
- $this->_adapter->unserialize($value);
- }
- }
|