Ngiler SH3LL 360
Home
Information
Create File
Create Folder
:
/
home
/
tbf
/
conferinta_tbf
/
vendor
/
symfony
/
mime
/
Tests
/
Information Server
MySQL :
OFF
Perl :
OFF
CURL :
ON
WGET :
OFF
PKEXEC :
OFF
Directive
Local Value
IP Address
89.40.16.97
System
Linux server.atelieruldeit.ro 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64
User
tbf
PHP Version
7.3.33
Software
Apache
Doc root
Writable
close
Edit File :
CharacterStreamTest.php
| Size :
3.25
KB
Copy
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Mime\Tests; use PHPUnit\Framework\TestCase; use Symfony\Component\Mime\CharacterStream; class CharacterStreamTest extends TestCase { public function testReadCharactersAreInTact() { $stream = new CharacterStream(pack('C*', 0xD0, 0x94, 0xD0, 0xB6, 0xD0, 0xBE)); $stream->write(pack('C*', 0xD0, 0xBB, 0xD1, 0x8E, 0xD0, 0xB1, 0xD1, 0x8B, 0xD1, 0x85 )); $this->assertSame(pack('C*', 0xD0, 0x94), $stream->read(1)); $this->assertSame(pack('C*', 0xD0, 0xB6, 0xD0, 0xBE), $stream->read(2)); $this->assertSame(pack('C*', 0xD0, 0xBB), $stream->read(1)); $this->assertSame(pack('C*', 0xD1, 0x8E, 0xD0, 0xB1, 0xD1, 0x8B), $stream->read(3)); $this->assertSame(pack('C*', 0xD1, 0x85), $stream->read(1)); $this->assertNull($stream->read(1)); } public function testCharactersCanBeReadAsByteArrays() { $stream = new CharacterStream(pack('C*', 0xD0, 0x94, 0xD0, 0xB6, 0xD0, 0xBE)); $stream->write(pack('C*', 0xD0, 0xBB, 0xD1, 0x8E, 0xD0, 0xB1, 0xD1, 0x8B, 0xD1, 0x85 )); $this->assertEquals([0xD0, 0x94], $stream->readBytes(1)); $this->assertEquals([0xD0, 0xB6, 0xD0, 0xBE], $stream->readBytes(2)); $this->assertEquals([0xD0, 0xBB], $stream->readBytes(1)); $this->assertEquals([0xD1, 0x8E, 0xD0, 0xB1, 0xD1, 0x8B], $stream->readBytes(3)); $this->assertEquals([0xD1, 0x85], $stream->readBytes(1)); $this->assertNull($stream->readBytes(1)); } public function testRequestingLargeCharCountPastEndOfStream() { $stream = new CharacterStream(pack('C*', 0xD0, 0x94, 0xD0, 0xB6, 0xD0, 0xBE)); $this->assertSame(pack('C*', 0xD0, 0x94, 0xD0, 0xB6, 0xD0, 0xBE), $stream->read(100)); $this->assertNull($stream->read(1)); } public function testRequestingByteArrayCountPastEndOfStream() { $stream = new CharacterStream(pack('C*', 0xD0, 0x94, 0xD0, 0xB6, 0xD0, 0xBE)); $this->assertEquals([0xD0, 0x94, 0xD0, 0xB6, 0xD0, 0xBE], $stream->readBytes(100)); $this->assertNull($stream->readBytes(1)); } public function testPointerOffsetCanBeSet() { $stream = new CharacterStream(pack('C*', 0xD0, 0x94, 0xD0, 0xB6, 0xD0, 0xBE)); $this->assertSame(pack('C*', 0xD0, 0x94), $stream->read(1)); $stream->setPointer(0); $this->assertSame(pack('C*', 0xD0, 0x94), $stream->read(1)); $stream->setPointer(2); $this->assertSame(pack('C*', 0xD0, 0xBE), $stream->read(1)); } public function testAlgorithmWithFixedWidthCharsets() { $stream = new CharacterStream(pack('C*', 0xD1, 0x8D, 0xD0, 0xBB, 0xD0, 0xB0)); $this->assertSame(pack('C*', 0xD1, 0x8D), $stream->read(1)); $this->assertSame(pack('C*', 0xD0, 0xBB), $stream->read(1)); $this->assertSame(pack('C*', 0xD0, 0xB0), $stream->read(1)); $this->assertNull($stream->read(1)); } }
Back