assertEquals($data, YamlSymfony::decode(YamlSymfony::encode($data))); } /** * Tests decoding YAML node anchors. * * @covers ::decode * @dataProvider providerDecodeTests */ public function testDecode($string, $data) { $this->assertEquals($data, YamlSymfony::decode($string)); } /** * Tests our encode settings. * * @covers ::encode */ public function testEncode() { $this->assertEquals('foo: bar: \'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus sapien ex, venenatis vitae nisi eu, posuere luctus dolor. Nullam convallis\' ', YamlSymfony::encode(['foo' => ['bar' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus sapien ex, venenatis vitae nisi eu, posuere luctus dolor. Nullam convallis']])); } /** * @covers ::getFileExtension */ public function testGetFileExtension() { $this->assertEquals('yml', YamlSymfony::getFileExtension()); } /** * Tests that invalid YAML throws an exception. * * @covers ::decode */ public function testError() { if (method_exists($this, 'expectException')) { $this->expectException(InvalidDataTypeException::class); } else { $this->setExpectedException(InvalidDataTypeException::class); } YamlSymfony::decode('foo: [ads'); } /** * Ensures that php object support is disabled. * * @covers ::encode */ public function testObjectSupportDisabled() { if (method_exists($this, 'expectException')) { $this->expectException(InvalidDataTypeException::class); $this->expectExceptionMessage('Object support when dumping a YAML file has been disabled.'); } else { $this->setExpectedException(InvalidDataTypeException::class, 'Object support when dumping a YAML file has been disabled.'); } $object = new \stdClass(); $object->foo = 'bar'; YamlSymfony::encode([$object]); } }