| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 | 
							- <?php
 - 
 - require_once 'Swift/Tests/SwiftUnitTestCase.php';
 - require_once 'Swift/InputByteStream.php';
 - require_once 'Swift/ByteStream/ArrayByteStream.php';
 - 
 - class Swift_ByteStream_ArrayByteStreamTest
 -   extends Swift_Tests_SwiftUnitTestCase
 - {
 -   
 -   public function testReadingSingleBytesFromBaseInput()
 -   {
 -     $input = array('a', 'b', 'c');
 -     $bs = $this->_createArrayStream($input);
 -     $output = array();
 -     while (false !== $bytes = $bs->read(1))
 -     {
 -       $output[] = $bytes;
 -     }
 -     $this->assertEqual($input, $output,
 -       '%s: Bytes read from stream should be the same as bytes in constructor'
 -       );
 -   }
 -   
 -   public function testReadingMultipleBytesFromBaseInput()
 -   {
 -     $input = array('a', 'b', 'c', 'd');
 -     $bs = $this->_createArrayStream($input);
 -     $output = array();
 -     while (false !== $bytes = $bs->read(2))
 -     {
 -       $output[] = $bytes;
 -     }
 -     $this->assertEqual(array('ab', 'cd'), $output,
 -       '%s: Bytes read from stream should be in pairs'
 -       );
 -   }
 -   
 -   public function testReadingOddOffsetOnLastByte()
 -   {
 -     $input = array('a', 'b', 'c', 'd', 'e');
 -     $bs = $this->_createArrayStream($input);
 -     $output = array();
 -     while (false !== $bytes = $bs->read(2))
 -     {
 -       $output[] = $bytes;
 -     }
 -     $this->assertEqual(array('ab', 'cd', 'e'), $output,
 -       '%s: Bytes read from stream should be in pairs except final read'
 -       );
 -   }
 -   
 -   public function testSettingPointerPartway()
 -   {
 -     $input = array('a', 'b', 'c');
 -     $bs = $this->_createArrayStream($input);
 -     $bs->setReadPointer(1);
 -     $this->assertEqual('b', $bs->read(1),
 -       '%s: Byte should be second byte since pointer as at offset 1'
 -       );
 -   }
 -   
 -   public function testResettingPointerAfterExhaustion()
 -   {
 -     $input = array('a', 'b', 'c');
 -     $bs = $this->_createArrayStream($input);
 -     
 -     while (false !== $bs->read(1));
 -     
 -     $bs->setReadPointer(0);
 -     $this->assertEqual('a', $bs->read(1),
 -       '%s: Byte should be first byte since pointer as at offset 0'
 -       );
 -   }
 -   
 -   public function testPointerNeverSetsBelowZero()
 -   {
 -     $input = array('a', 'b', 'c');
 -     $bs = $this->_createArrayStream($input);
 -     
 -     $bs->setReadPointer(-1);
 -     $this->assertEqual('a', $bs->read(1),
 -       '%s: Byte should be first byte since pointer should be at offset 0'
 -       );
 -   }
 -   
 -   public function testPointerNeverSetsAboveStackSize()
 -   {
 -     $input = array('a', 'b', 'c');
 -     $bs = $this->_createArrayStream($input);
 -     
 -     $bs->setReadPointer(3);
 -     $this->assertIdentical(false, $bs->read(1),
 -       '%s: Stream should be at end and thus return false'
 -       );
 -   }
 -   
 -   public function testBytesCanBeWrittenToStream()
 -   {
 -     $input = array('a', 'b', 'c');
 -     $bs = $this->_createArrayStream($input);
 -     
 -     $bs->write('de');
 -     
 -     $output = array();
 -     while (false !== $bytes = $bs->read(1))
 -     {
 -       $output[] = $bytes;
 -     }
 -     $this->assertEqual(array('a', 'b', 'c', 'd', 'e'), $output,
 -       '%s: Bytes read from stream should be from initial stack + written'
 -       );
 -   }
 -   
 -   public function testContentsCanBeFlushed()
 -   {
 -     $input = array('a', 'b', 'c');
 -     $bs = $this->_createArrayStream($input);
 -     
 -     $bs->flushBuffers();
 -     
 -     $this->assertIdentical(false, $bs->read(1),
 -       '%s: Contents have been flushed so read() should return false'
 -       );
 -   }
 -   
 -   public function testConstructorCanTakeStringArgument()
 -   {
 -     $bs = $this->_createArrayStream('abc');
 -     $output = array();
 -     while (false !== $bytes = $bs->read(1))
 -     {
 -       $output[] = $bytes;
 -     }
 -     $this->assertEqual(array('a', 'b', 'c'), $output,
 -       '%s: Bytes read from stream should be the same as bytes in constructor'
 -       );
 -   }
 -   
 -   public function testBindingOtherStreamsMirrorsWriteOperations()
 -   {
 -     $bs = $this->_createArrayStream('');
 -     $is1 = $this->_createMockInputStream();
 -     $is2 = $this->_createMockInputStream();
 -     
 -     $this->_checking(Expectations::create()
 -       -> one($is1)->write('x')
 -       -> one($is2)->write('x')
 -       -> one($is1)->write('y')
 -       -> one($is2)->write('y')
 -     );
 -     
 -     $bs->bind($is1);
 -     $bs->bind($is2);
 -     
 -     $bs->write('x');
 -     $bs->write('y');
 -   }
 -   
 -   public function testBindingOtherStreamsMirrorsFlushOperations()
 -   {
 -     $bs = $this->_createArrayStream('');
 -     $is1 = $this->_createMockInputStream();
 -     $is2 = $this->_createMockInputStream();
 -     
 -     $this->_checking(Expectations::create()
 -       -> one($is1)->flushBuffers()
 -       -> one($is2)->flushBuffers()
 -     );
 -     
 -     $bs->bind($is1);
 -     $bs->bind($is2);
 -     
 -     $bs->flushBuffers();
 -   }
 -   
 -   public function testUnbindingStreamPreventsFurtherWrites()
 -   {
 -     $bs = $this->_createArrayStream('');
 -     $is1 = $this->_createMockInputStream();
 -     $is2 = $this->_createMockInputStream();
 -     
 -     $this->_checking(Expectations::create()
 -       -> one($is1)->write('x')
 -       -> one($is2)->write('x')
 -       -> one($is1)->write('y')
 -     );
 -     
 -     $bs->bind($is1);
 -     $bs->bind($is2);
 -     
 -     $bs->write('x');
 -     
 -     $bs->unbind($is2);
 -     
 -     $bs->write('y');
 -   }
 -   
 -   // -- Creation Methods
 -   
 -   private function _createArrayStream($input)
 -   {
 -     return new Swift_ByteStream_ArrayByteStream($input);
 -   }
 -   
 -   private function _createMockInputStream()
 -   {
 -     return $this->_mock('Swift_InputByteStream');
 -   }
 -   
 - }
 
 
  |