* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace FG\Test\ASN1\Universal; use FG\Test\ASN1TestCase; use FG\ASN1\Identifier; use FG\ASN1\Universal\CharacterString; class CharacterStringTest extends ASN1TestCase { public function testGetType() { $object = new CharacterString('Hello World'); $this->assertEquals(Identifier::CHARACTER_STRING, $object->getType()); } public function testGetIdentifier() { $object = new CharacterString('Hello World'); $this->assertEquals(chr(Identifier::CHARACTER_STRING), $object->getIdentifier()); } public function testContent() { $object = new CharacterString('Hello World'); $this->assertEquals('Hello World', $object->getContent()); } public function testGetObjectLength() { $string = 'Hello World'; $object = new CharacterString($string); $expectedSize = 2 + strlen($string); $this->assertEquals($expectedSize, $object->getObjectLength()); } public function testGetBinary() { $string = 'Hello World'; $expectedType = chr(Identifier::CHARACTER_STRING); $expectedLength = chr(strlen($string)); $object = new CharacterString($string); $this->assertEquals($expectedType.$expectedLength.$string, $object->getBinary()); } /** * @depends testGetBinary */ public function testFromBinary() { $originalObject = new CharacterString('Hello World'); $binaryData = $originalObject->getBinary(); $parsedObject = CharacterString::fromBinary($binaryData); $this->assertEquals($originalObject, $parsedObject); } /** * @depends testFromBinary */ public function testFromBinaryWithOffset() { $originalObject1 = new CharacterString('Hello '); $originalObject2 = new CharacterString(' World'); $binaryData = $originalObject1->getBinary(); $binaryData .= $originalObject2->getBinary(); $offset = 0; $parsedObject = CharacterString::fromBinary($binaryData, $offset); $this->assertEquals($originalObject1, $parsedObject); $this->assertEquals(8, $offset); $parsedObject = CharacterString::fromBinary($binaryData, $offset); $this->assertEquals($originalObject2, $parsedObject); $this->assertEquals(16, $offset); } }