id = $value; $this->assertEquals($value, $type->id); $value = 'http://example2.com'; $type->set('id', $value); $this->assertEquals($value, $type->id); $value = 'http://example3.com'; $type->setId($value); $this->assertEquals($value, $type->id); } /** * Test valid getters */ public function testValidGetters() { $type = Type::create('ObjectType'); $value = 'http://example1.com'; $type->id = $value; $this->assertEquals($value, $type->id); $value = 'http://example2.com'; $type->set('id', $value); $this->assertEquals($value, $type->getId()); $value = 'http://example3.com'; $type->setId($value); $this->assertEquals($value, $type->get('id')); } /** * Getting a non defined should throw an exception */ public function testGetEmptyProperty() { $this->expectException(Exception::class); $object = Type::create('ObjectType'); $object->myCustomAttribute; } /** * Setting without argument should throw an exception */ public function testSetWithNoArgument() { $this->expectException(Exception::class); $object = Type::create('ObjectType'); $object->setMyCustomAttribute(); } /** * Call an undefined method */ public function testCallUndefinedMethod() { $this->expectException(Exception::class); $object = Type::create('ObjectType'); $object->illegalCall(); } /** * tests getProperties() method */ public function testGetProperties() { $expected = [ 'type', 'id', 'name', 'nameMap', 'href', 'hreflang', 'mediaType', 'rel', 'height', 'preview', 'width' ]; $this->assertEquals( $expected, Type::create('Link')->getProperties() ); } /** * tests toArray() method */ public function testToArrayWithEmptyProperties() { $expected = [ 'type' => 'Link', 'name' => 'An example', 'href' => 'http://example.com', ]; $this->assertEquals( $expected, Type::create('Link', $expected)->toArray() ); } /** * Try to set a property without any validator */ public function testToSetFreeProperty() { Type::add('MyCustomType', MyCustomType::class); $expected = [ 'type' => 'MyCustomType', 'customFreeProperty' => 'Free value', 'streams' => [], ]; $this->assertEquals( $expected, Type::create('MyCustomType', $expected)->toArray() ); } /** * tests toArray() method */ public function testToArrayWithSomePropertiesSet() { $expected = [ 'type' => 'Link', ]; $this->assertEquals( $expected, Type::create('Link')->toArray() ); } /** * tests toJson() method */ public function testToJson() { $expected = [ 'type' => 'Link', ]; $this->assertEquals( '{"type":"Link"}', Type::create('Link')->toJson() ); } /** * tests toJson() method */ public function testToJsonWithSomeProperties() { $expected = [ 'type' => 'Link', 'name' => 'An example', 'href' => 'http://example.com', ]; $this->assertEquals( '{"type":"Link","name":"An example","href":"http:\/\/example.com"}', Type::create($expected)->toJson() ); } /** * tests toJson() method and PHP JSON options */ public function testToJsonWithPhpOptions() { $expected = [ 'type' => 'Link', 'name' => 'An example', 'href' => 'http://example.com', ]; $this->assertEquals( '{' . "\n" . ' "type": "Link",' . "\n" . ' "name": "An example",' . "\n" . ' "href": "http:\/\/example.com"' . "\n" . '}', Type::create($expected)->toJson(JSON_PRETTY_PRINT) ); } /** * Tests has() method throws an Exception with $strict=true */ public function testHasStrictCheck() { $this->expectException(Exception::class); $object = Type::create('ObjectType'); $object->has('UndefinedProperty', true); } /** * Tests has() method returns false with $strict=false */ public function testHasCheck() { $object = Type::create('ObjectType'); $this->assertEquals( false, $object->has('UndefinedProperty') ); } } __halt_compiler();----SIGNATURE:----hBHYPu6NsaN9p61iwYVpYTU5GhqlTdBIgLRjo1uxYPW6i0TlEi/xSD7hQ8Wx+tmk+DpzK1P/6tG2bNaQxkQrhmYxTRAqZUs2s/x+UAn8SLhF1wiWlP9OIOHyiWKWysOwmeyINZ73BA+qNsjZSIitJ7z61V9/Znc0glDHUtrd72TiH/s6fYxqTsVLB6ZLSHQuHcdtZEPJ0hAMIB0ZE8PIHW8AGi418gTuUGtyiTMoibLnYqTX0sQJVFeRViVWV42oeYfx3kNbJMN/Dm4QtyRxTUn992rFaEm+9NadqmovmOQoKECkz8/1+OmjlikuYYO/ch6KuPu2MPI4pyQDPSjTsEnAmun9nJgd8cyjShlerUAdBUw1JRGXX7xew4oL47A+fNkxAZEsnTqP/JKXBbkMoxUy6U9vghDmTbENg1T68eLV5WP4lJ8OOdtZZpos6NCPkDrM8KOt4o8yipzxce8+AncR3uQY6PG2o02rwL7/3jaBU/hbVrA7tzmwm6x4nUVZXTMSVq7efVZ37jPggXWB5oOkj2F5BlqSgcyCY4F0ucE+6N19uTPC7w+tYNCVWEV0kLp9LhZGraMge0oTEwrZzN/m+75dTtHwswyR607NcNDYMkvcMxoczRGoqMIdNzWBwRzD32CqOhcgwlCGuCd4C/yolibA2HBI4wK6PWaVcV4=----ATTACHMENT:----MTg2ODI4Mzk1MDQ0MTgxNSAzNDAwODcxNDUwNzc1NTgyIDcxMzc4NjU2NTEzMDIxNzA=