| 1: | <?php
|
| 2: |
|
| 3: | |
| 4: | |
| 5: | |
| 6: | |
| 7: | |
| 8: | |
| 9: | |
| 10: |
|
| 11: |
|
| 12: | namespace Symfony\Component\Yaml\Tests;
|
| 13: |
|
| 14: | use PHPUnit\Framework\TestCase;
|
| 15: | use Symfony\Component\Yaml\Yaml;
|
| 16: |
|
| 17: | class YamlTest extends TestCase
|
| 18: | {
|
| 19: | public function testParseAndDump()
|
| 20: | {
|
| 21: | $data = array('lorem' => 'ipsum', 'dolor' => 'sit');
|
| 22: | $yml = Yaml::dump($data);
|
| 23: | $parsed = Yaml::parse($yml);
|
| 24: | $this->assertEquals($data, $parsed);
|
| 25: | }
|
| 26: |
|
| 27: | |
| 28: | |
| 29: |
|
| 30: | public function testLegacyParseFromFile()
|
| 31: | {
|
| 32: | $filename = __DIR__.'/Fixtures/index.yml';
|
| 33: | $contents = file_get_contents($filename);
|
| 34: | $parsedByFilename = Yaml::parse($filename);
|
| 35: | $parsedByContents = Yaml::parse($contents);
|
| 36: | $this->assertEquals($parsedByFilename, $parsedByContents);
|
| 37: | }
|
| 38: |
|
| 39: | |
| 40: | |
| 41: | |
| 42: |
|
| 43: | public function testZeroIndentationThrowsException()
|
| 44: | {
|
| 45: | Yaml::dump(array('lorem' => 'ipsum', 'dolor' => 'sit'), 2, 0);
|
| 46: | }
|
| 47: |
|
| 48: | |
| 49: | |
| 50: | |
| 51: |
|
| 52: | public function testNegativeIndentationThrowsException()
|
| 53: | {
|
| 54: | Yaml::dump(array('lorem' => 'ipsum', 'dolor' => 'sit'), 2, -4);
|
| 55: | }
|
| 56: | }
|
| 57: | |