| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <?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-2012 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_Igbinary
- */
- require_once 'Zend/Serializer/Adapter/Igbinary.php';
- /**
- * @category Zend
- * @package Zend_Serializer
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Serializer_Adapter_IgbinaryTest extends PHPUnit_Framework_TestCase
- {
- private $_adapter;
- public function setUp()
- {
- $this->_adapter = new Zend_Serializer_Adapter_Igbinary();
- }
- public function tearDown()
- {
- $this->_adapter = null;
- }
- public function testSerializeString()
- {
- $value = 'test';
- $expected = igbinary_serialize($value);
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeFalse()
- {
- $value = false;
- $expected = igbinary_serialize($value);
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeNull()
- {
- $value = null;
- $expected = igbinary_serialize($value);
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeNumeric()
- {
- $value = 100;
- $expected = igbinary_serialize($value);
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testSerializeObject()
- {
- $value = new stdClass();
- $expected = igbinary_serialize($value);
- $data = $this->_adapter->serialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeString()
- {
- $expected = 'test';
- $value = igbinary_serialize($expected);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeFalse()
- {
- $expected = false;
- $value = igbinary_serialize($expected);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeNull()
- {
- $expected = null;
- $value = igbinary_serialize($expected);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeNumeric()
- {
- $expected = 100;
- $value = igbinary_serialize($expected);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserializeObject()
- {
- $expected = new stdClass();
- $value = igbinary_serialize($expected);
- $data = $this->_adapter->unserialize($value);
- $this->assertEquals($expected, $data);
- }
- public function testUnserialzeInvalid()
- {
- $value = "\0\1\r\n";
- $this->setExpectedException('Zend_Serializer_Exception');
- $this->_adapter->unserialize($value);
- }
- }
- /**
- * @category Zend
- * @package Zend_Serializer
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Serializer_Adapter_IgbinarySkipTest extends PHPUnit_Framework_TestCase
- {
- public $message = null;
- public function setUp()
- {
- $message = 'Skipped Zend_Serializer_Adapter_IgbinaryTest';
- if ($this->message) {
- $message.= ': ' . $this->message;
- }
- $this->markTestSkipped($message);
- }
- public function testEmpty()
- {
- // this is here only so we have at least one test
- }
- }
|