| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 | 
							- <?php
 
- namespace spec\Gaufrette;
 
- use PhpSpec\ObjectBehavior;
 
- use Prophecy\Argument;
 
- class StreamWrapperSpec extends ObjectBehavior
 
- {
 
-     /**
 
-      * @param \Gaufrette\FilesystemMap $map
 
-      * @param \Gaufrette\Filesystem    $filesystem
 
-      * @param \Gaufrette\Stream        $stream
 
-      */
 
-     function let($map, $filesystem, $stream)
 
-     {
 
-         $filesystem->createStream('filename')->willReturn($stream);
 
-         $map->get('some')->willReturn($filesystem);
 
-         $this->setFilesystemMap($map);
 
-     }
 
-     function it_is_initializable()
 
-     {
 
-         $this->shouldHaveType('Gaufrette\StreamWrapper');
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_opens_stream($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $this->stream_open('gaufrette://some/filename', 'r+')->shouldReturn(true);
 
-     }
 
-     function it_does_not_open_stream_when_key_is_not_defined()
 
-     {
 
-         $this
 
-             ->shouldThrow(new \InvalidArgumentException('The specified path (gaufrette://some) is invalid.'))
 
-             ->duringStream_open('gaufrette://some', 'r+');
 
-     }
 
-     function it_does_not_open_stream_when_host_is_not_defined()
 
-     {
 
-         $this
 
-             ->shouldThrow(new \InvalidArgumentException('The specified path (gaufrette:///somefile) is invalid.'))
 
-             ->duringStream_open('gaufrette:///somefile', 'r+')
 
-         ;
 
-     }
 
-     function it_does_not_read_from_stream_when_is_not_opened()
 
-     {
 
-         $this->stream_read(10)->shouldReturn(false);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_does_not_read_from_stream($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->read(4)->willReturn('some');
 
-         $this->stream_open('gaufrette://some/filename', 'r+');
 
-         $this->stream_read(4)->shouldReturn('some');
 
-     }
 
-     function it_does_not_write_to_stream_when_is_not_opened()
 
-     {
 
-         $this->stream_write('some content')->shouldReturn(0);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_writes_to_stream($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->write('some content')->shouldBeCalled()->willReturn(12);
 
-         $this->stream_open('gaufrette://some/filename', 'w+');
 
-         $this->stream_write('some content')->shouldReturn(12);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_does_not_close_stream_when_is_not_opened($stream)
 
-     {
 
-         $stream->close()->shouldNotBeCalled();
 
-         $this->stream_close();
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_closes_stream($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->close()->shouldBeCalled();
 
-         $this->stream_open('gaufrette://some/filename', 'w+');
 
-         $this->stream_close();
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_does_not_flush_stream_when_is_not_opened($stream)
 
-     {
 
-         $stream->flush()->shouldNotBeCalled();
 
-         $this->stream_flush();
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_flushes_stream($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->flush()->shouldBeCalled();
 
-         $this->stream_open('gaufrette://some/filename', 'w+');
 
-         $this->stream_flush();
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_does_not_seek_in_stream_when_is_not_opened($stream)
 
-     {
 
-         $stream->seek(12, SEEK_SET)->shouldNotBeCalled();
 
-         $this->stream_seek(12, SEEK_SET);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_seeks_in_stream($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->seek(12, SEEK_SET)->shouldBeCalled()->willReturn(true);
 
-         $this->stream_open('gaufrette://some/filename', 'w+');
 
-         $this->stream_seek(12, SEEK_SET)->shouldReturn(true);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_does_not_tell_about_position_in_stream_when_is_not_opened($stream)
 
-     {
 
-         $stream->tell()->shouldNotBeCalled();
 
-         $this->stream_tell();
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_does_tell_about_position_in_stream($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->tell()->shouldBeCalled()->willReturn(12);
 
-         $this->stream_open('gaufrette://some/filename', 'w+');
 
-         $this->stream_tell()->shouldReturn(12);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_does_not_mark_as_eof_if_stream_is_not_opened($stream)
 
-     {
 
-         $stream->eof()->shouldNotBeCalled();
 
-         $this->stream_eof();
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_checks_if_eof($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $this->stream_open('gaufrette://some/filename', 'w+');
 
-         $stream->eof()->willReturn(false);
 
-         $this->stream_eof()->shouldReturn(false);
 
-         $stream->eof()->willReturn(true);
 
-         $this->stream_eof()->shouldReturn(true);
 
-     }
 
-     function it_does_not_get_stat_when_is_not_open()
 
-     {
 
-         $this->stream_stat()->shouldReturn(false);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_stats_file($stream)
 
-     {
 
-         $stat = array(
 
-             'dev'   => 1,
 
-             'ino'   => 12,
 
-             'mode'  => 0777,
 
-             'nlink' => 0,
 
-             'uid'   => 123,
 
-             'gid'   => 1,
 
-             'rdev'  => 0,
 
-             'size'  => 666,
 
-             'atime' => 1348030800,
 
-             'mtime' => 1348030800,
 
-             'ctime' => 1348030800,
 
-             'blksize' => 5,
 
-             'blocks'  => 1,
 
-         );
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->stat()->willReturn($stat);
 
-         $this->stream_open('gaufrette://some/filename', 'w+');
 
-         $this->stream_stat()->shouldReturn($stat);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_should_stat_from_url($stream)
 
-     {
 
-         $stat = array(
 
-             'dev'   => 1,
 
-             'ino'   => 12,
 
-             'mode'  => 0777,
 
-             'nlink' => 0,
 
-             'uid'   => 123,
 
-             'gid'   => 1,
 
-             'rdev'  => 0,
 
-             'size'  => 666,
 
-             'atime' => 1348030800,
 
-             'mtime' => 1348030800,
 
-             'ctime' => 1348030800,
 
-             'blksize' => 5,
 
-             'blocks'  => 1,
 
-         );
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->stat()->willReturn($stat);
 
-         $this->url_stat('gaufrette://some/filename', STREAM_URL_STAT_LINK)->shouldReturn($stat);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_does_not_stat_when_cannot_open($stream)
 
-     {
 
-         $stream->open(Argument::any())->willThrow(new \RuntimeException);
 
-         $this->url_stat('gaufrette://some/filename', STREAM_URL_STAT_LINK)->shouldReturn(false);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_does_not_unlink_when_cannot_open($stream)
 
-     {
 
-         $stream->open(Argument::any())->willThrow(new \RuntimeException);
 
-         $this->unlink('gaufrette://some/filename')->shouldReturn(false);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_unlinks_file($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->unlink()->willReturn(true);
 
-         $this->unlink('gaufrette://some/filename')->shouldReturn(true);
 
-     }
 
-     function it_does_not_cast_stream_if_is_not_opened()
 
-     {
 
-         $this->stream_cast(STREAM_CAST_FOR_SELECT)->shouldReturn(false);
 
-     }
 
-     /**
 
-      * @param \Gaufrette\Stream $stream
 
-      */
 
-     function it_casts_stream($stream)
 
-     {
 
-         $stream->open(Argument::any())->willReturn(true);
 
-         $stream->cast(STREAM_CAST_FOR_SELECT)->willReturn('resource');
 
-         $this->stream_open('gaufrette://some/filename', 'w+');
 
-         $this->stream_cast(STREAM_CAST_FOR_SELECT)->shouldReturn('resource');
 
-     }
 
- }
 
 
  |