| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346 | <?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\Yaml\Tests;use PHPUnit\Framework\TestCase;use Symfony\Component\Yaml\Parser;use Symfony\Component\Yaml\Tag\TaggedValue;use Symfony\Component\Yaml\Yaml;class ParserTest extends TestCase{    /** @var Parser */    protected $parser;    protected function setUp()    {        $this->parser = new Parser();    }    protected function tearDown()    {        $this->parser = null;        chmod(__DIR__.'/Fixtures/not_readable.yml', 0644);    }    /**     * @dataProvider getDataFormSpecifications     */    public function testSpecifications($expected, $yaml, $comment, $deprecated)    {        $deprecations = [];        if ($deprecated) {            set_error_handler(function ($type, $msg) use (&$deprecations) {                if (E_USER_DEPRECATED !== $type) {                    restore_error_handler();                    return \call_user_func_array('PHPUnit\Util\ErrorHandler::handleError', \func_get_args());                }                $deprecations[] = $msg;                return null;            });        }        $this->assertEquals($expected, var_export($this->parser->parse($yaml), true), $comment);        if ($deprecated) {            restore_error_handler();            $this->assertCount(1, $deprecations);            $this->assertStringContainsString(true !== $deprecated ? $deprecated : 'Using the comma as a group separator for floats is deprecated since Symfony 3.2 and will be removed in 4.0 on line 1.', $deprecations[0]);        }    }    public function getDataFormSpecifications()    {        return $this->loadTestsFromFixtureFiles('index.yml');    }    /**     * @group legacy     * @expectedDeprecationMessage Using the Yaml::PARSE_KEYS_AS_STRINGS flag is deprecated since Symfony 3.4 as it will be removed in 4.0. Quote your keys when they are evaluable     * @dataProvider getNonStringMappingKeysData     */    public function testNonStringMappingKeys($expected, $yaml, $comment)    {        $this->assertSame($expected, var_export($this->parser->parse($yaml, Yaml::PARSE_KEYS_AS_STRINGS), true), $comment);    }    public function getNonStringMappingKeysData()    {        return $this->loadTestsFromFixtureFiles('nonStringKeys.yml');    }    /**     * @group legacy     * @dataProvider getLegacyNonStringMappingKeysData     */    public function testLegacyNonStringMappingKeys($expected, $yaml, $comment)    {        $this->assertSame($expected, var_export($this->parser->parse($yaml), true), $comment);    }    public function getLegacyNonStringMappingKeysData()    {        return $this->loadTestsFromFixtureFiles('legacyNonStringKeys.yml');    }    public function testTabsInYaml()    {        // test tabs in YAML        $yamls = [            "foo:\n	bar",            "foo:\n 	bar",            "foo:\n	 bar",            "foo:\n 	 bar",        ];        foreach ($yamls as $yaml) {            try {                $this->parser->parse($yaml);                $this->fail('YAML files must not contain tabs');            } catch (\Exception $e) {                $this->assertInstanceOf('\Exception', $e, 'YAML files must not contain tabs');                $this->assertEquals('A YAML file cannot contain tabs as indentation at line 2 (near "'.strpbrk($yaml, "\t").'").', $e->getMessage(), 'YAML files must not contain tabs');            }        }    }    public function testEndOfTheDocumentMarker()    {        $yaml = <<<'EOF'--- %YAML:1.0foo...EOF;        $this->assertEquals('foo', $this->parser->parse($yaml));    }    public function getBlockChompingTests()    {        $tests = [];        $yaml = <<<'EOF'foo: |-    one    twobar: |-    one    twoEOF;        $expected = [            'foo' => "one\ntwo",            'bar' => "one\ntwo",        ];        $tests['Literal block chomping strip with single trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: |-    one    twobar: |-    one    twoEOF;        $expected = [            'foo' => "one\ntwo",            'bar' => "one\ntwo",        ];        $tests['Literal block chomping strip with multiple trailing newlines'] = [$expected, $yaml];        $yaml = <<<'EOF'{}EOF;        $expected = [];        $tests['Literal block chomping strip with multiple trailing newlines after a 1-liner'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: |-    one    twobar: |-    one    twoEOF;        $expected = [            'foo' => "one\ntwo",            'bar' => "one\ntwo",        ];        $tests['Literal block chomping strip without trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: |    one    twobar: |    one    twoEOF;        $expected = [            'foo' => "one\ntwo\n",            'bar' => "one\ntwo\n",        ];        $tests['Literal block chomping clip with single trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: |    one    twobar: |    one    twoEOF;        $expected = [            'foo' => "one\ntwo\n",            'bar' => "one\ntwo\n",        ];        $tests['Literal block chomping clip with multiple trailing newlines'] = [$expected, $yaml];        $yaml = <<<'EOF'foo:- bar: |    one    twoEOF;        $expected = [            'foo' => [                [                    'bar' => "one\n\ntwo",                ],            ],        ];        $tests['Literal block chomping clip with embedded blank line inside unindented collection'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: |    one    twobar: |    one    twoEOF;        $expected = [            'foo' => "one\ntwo\n",            'bar' => "one\ntwo",        ];        $tests['Literal block chomping clip without trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: |+    one    twobar: |+    one    twoEOF;        $expected = [            'foo' => "one\ntwo\n",            'bar' => "one\ntwo\n",        ];        $tests['Literal block chomping keep with single trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: |+    one    twobar: |+    one    twoEOF;        $expected = [            'foo' => "one\ntwo\n\n",            'bar' => "one\ntwo\n\n",        ];        $tests['Literal block chomping keep with multiple trailing newlines'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: |+    one    twobar: |+    one    twoEOF;        $expected = [            'foo' => "one\ntwo\n",            'bar' => "one\ntwo",        ];        $tests['Literal block chomping keep without trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: >-    one    twobar: >-    one    twoEOF;        $expected = [            'foo' => 'one two',            'bar' => 'one two',        ];        $tests['Folded block chomping strip with single trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: >-    one    twobar: >-    one    twoEOF;        $expected = [            'foo' => 'one two',            'bar' => 'one two',        ];        $tests['Folded block chomping strip with multiple trailing newlines'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: >-    one    twobar: >-    one    twoEOF;        $expected = [            'foo' => 'one two',            'bar' => 'one two',        ];        $tests['Folded block chomping strip without trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: >    one    twobar: >    one    twoEOF;        $expected = [            'foo' => "one two\n",            'bar' => "one two\n",        ];        $tests['Folded block chomping clip with single trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: >    one    twobar: >    one    twoEOF;        $expected = [            'foo' => "one two\n",            'bar' => "one two\n",        ];        $tests['Folded block chomping clip with multiple trailing newlines'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: >    one    twobar: >    one    twoEOF;        $expected = [            'foo' => "one two\n",            'bar' => 'one two',        ];        $tests['Folded block chomping clip without trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: >+    one    twobar: >+    one    twoEOF;        $expected = [            'foo' => "one two\n",            'bar' => "one two\n",        ];        $tests['Folded block chomping keep with single trailing newline'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: >+    one    twobar: >+    one    twoEOF;        $expected = [            'foo' => "one two\n\n",            'bar' => "one two\n\n",        ];        $tests['Folded block chomping keep with multiple trailing newlines'] = [$expected, $yaml];        $yaml = <<<'EOF'foo: >+    one    twobar: >+    one    twoEOF;        $expected = [            'foo' => "one two\n",            'bar' => 'one two',        ];        $tests['Folded block chomping keep without trailing newline'] = [$expected, $yaml];        return $tests;    }    /**     * @dataProvider getBlockChompingTests     */    public function testBlockChomping($expected, $yaml)    {        $this->assertSame($expected, $this->parser->parse($yaml));    }    /**     * Regression test for issue #7989.     *     * @see https://github.com/symfony/symfony/issues/7989     */    public function testBlockLiteralWithLeadingNewlines()    {        $yaml = <<<'EOF'foo: |-    barEOF;        $expected = [            'foo' => "\n\nbar",        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function testObjectSupportEnabled()    {        $input = <<<'EOF'foo: !php/object O:30:"Symfony\Component\Yaml\Tests\B":1:{s:1:"b";s:3:"foo";}bar: 1EOF;        $this->assertEquals(['foo' => new B(), 'bar' => 1], $this->parser->parse($input, Yaml::PARSE_OBJECT), '->parse() is able to parse objects');    }    /**     * @group legacy     */    public function testObjectSupportEnabledPassingTrue()    {        $input = <<<'EOF'foo: !php/object:O:30:"Symfony\Component\Yaml\Tests\B":1:{s:1:"b";s:3:"foo";}bar: 1EOF;        $this->assertEquals(['foo' => new B(), 'bar' => 1], $this->parser->parse($input, false, true), '->parse() is able to parse objects');    }    /**     * @group legacy     * @dataProvider deprecatedObjectValueProvider     */    public function testObjectSupportEnabledWithDeprecatedTag($yaml)    {        $this->assertEquals(['foo' => new B(), 'bar' => 1], $this->parser->parse($yaml, Yaml::PARSE_OBJECT), '->parse() is able to parse objects');    }    public function deprecatedObjectValueProvider()    {        return [            [                <<<YAMLfoo: !!php/object:O:30:"Symfony\Component\Yaml\Tests\B":1:{s:1:"b";s:3:"foo";}bar: 1YAML            ],            [                <<<YAMLfoo: !php/object:O:30:"Symfony\Component\Yaml\Tests\B":1:{s:1:"b";s:3:"foo";}bar: 1YAML            ],        ];    }    /**     * @dataProvider invalidDumpedObjectProvider     */    public function testObjectSupportDisabledButNoExceptions($input)    {        $this->assertEquals(['foo' => null, 'bar' => 1], $this->parser->parse($input), '->parse() does not parse objects');    }    /**     * @dataProvider getObjectForMapTests     */    public function testObjectForMap($yaml, $expected)    {        $flags = Yaml::PARSE_OBJECT_FOR_MAP;        $this->assertEquals($expected, $this->parser->parse($yaml, $flags));    }    /**     * @group legacy     * @dataProvider getObjectForMapTests     */    public function testObjectForMapEnabledWithMappingUsingBooleanToggles($yaml, $expected)    {        $this->assertEquals($expected, $this->parser->parse($yaml, false, false, true));    }    public function getObjectForMapTests()    {        $tests = [];        $yaml = <<<'EOF'foo:    fiz: [cat]EOF;        $expected = new \stdClass();        $expected->foo = new \stdClass();        $expected->foo->fiz = ['cat'];        $tests['mapping'] = [$yaml, $expected];        $yaml = '{ "foo": "bar", "fiz": "cat" }';        $expected = new \stdClass();        $expected->foo = 'bar';        $expected->fiz = 'cat';        $tests['inline-mapping'] = [$yaml, $expected];        $yaml = "foo: bar\nbaz: foobar";        $expected = new \stdClass();        $expected->foo = 'bar';        $expected->baz = 'foobar';        $tests['object-for-map-is-applied-after-parsing'] = [$yaml, $expected];        $yaml = <<<'EOT'array:  - key: one  - key: twoEOT;        $expected = new \stdClass();        $expected->array = [];        $expected->array[0] = new \stdClass();        $expected->array[0]->key = 'one';        $expected->array[1] = new \stdClass();        $expected->array[1]->key = 'two';        $tests['nest-map-and-sequence'] = [$yaml, $expected];        $yaml = <<<'YAML'map:  1: one  2: twoYAML;        $expected = new \stdClass();        $expected->map = new \stdClass();        $expected->map->{1} = 'one';        $expected->map->{2} = 'two';        $tests['numeric-keys'] = [$yaml, $expected];        $yaml = <<<'YAML'map:  '0': one  '1': twoYAML;        $expected = new \stdClass();        $expected->map = new \stdClass();        $expected->map->{0} = 'one';        $expected->map->{1} = 'two';        $tests['zero-indexed-numeric-keys'] = [$yaml, $expected];        return $tests;    }    /**     * @dataProvider invalidDumpedObjectProvider     */    public function testObjectsSupportDisabledWithExceptions($yaml)    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->parser->parse($yaml, Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE);    }    public function testCanParseContentWithTrailingSpaces()    {        $yaml = "items:  \n  foo: bar";        $expected = [            'items' => ['foo' => 'bar'],        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    /**     * @group legacy     * @dataProvider invalidDumpedObjectProvider     */    public function testObjectsSupportDisabledWithExceptionsUsingBooleanToggles($yaml)    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->parser->parse($yaml, true);    }    public function invalidDumpedObjectProvider()    {        $yamlTag = <<<'EOF'foo: !!php/object:O:30:"Symfony\Tests\Component\Yaml\B":1:{s:1:"b";s:3:"foo";}bar: 1EOF;        $localTag = <<<'EOF'foo: !php/object:O:30:"Symfony\Tests\Component\Yaml\B":1:{s:1:"b";s:3:"foo";}bar: 1EOF;        return [            'yaml-tag' => [$yamlTag],            'local-tag' => [$localTag],        ];    }    /**     * @requires extension iconv     */    public function testNonUtf8Exception()    {        $yamls = [            iconv('UTF-8', 'ISO-8859-1', "foo: 'äöüß'"),            iconv('UTF-8', 'ISO-8859-15', "euro: '€'"),            iconv('UTF-8', 'CP1252', "cp1252: '©ÉÇáñ'"),        ];        foreach ($yamls as $yaml) {            try {                $this->parser->parse($yaml);                $this->fail('charsets other than UTF-8 are rejected.');            } catch (\Exception $e) {                $this->assertInstanceOf('Symfony\Component\Yaml\Exception\ParseException', $e, 'charsets other than UTF-8 are rejected.');            }        }    }    public function testUnindentedCollectionException()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $yaml = <<<'EOF'collection:-item1-item2-item3EOF;        $this->parser->parse($yaml);    }    public function testShortcutKeyUnindentedCollectionException()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $yaml = <<<'EOF'collection:-  key: foo  foo: barEOF;        $this->parser->parse($yaml);    }    public function testMultipleDocumentsNotSupportedException()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessageRegExp('/^Multiple documents are not supported.+/');        Yaml::parse(<<<'EOL'# Ranking of 1998 home runs---- Mark McGwire- Sammy Sosa- Ken Griffey# Team ranking---- Chicago Cubs- St Louis CardinalsEOL        );    }    public function testSequenceInAMapping()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        Yaml::parse(<<<'EOF'yaml:  hash: me  - array stuffEOF        );    }    public function testSequenceInMappingStartedBySingleDashLine()    {        $yaml = <<<'EOT'a:-  b:  -    bar: baz- food: eEOT;        $expected = [            'a' => [                [                    'b' => [                        [                            'bar' => 'baz',                        ],                    ],                ],                'foo',            ],            'd' => 'e',        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function testSequenceFollowedByCommentEmbeddedInMapping()    {        $yaml = <<<'EOT'a:    b:        - c# comment    d: eEOT;        $expected = [            'a' => [                'b' => ['c'],                'd' => 'e',            ],        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function testNonStringFollowedByCommentEmbeddedInMapping()    {        $yaml = <<<'EOT'a:    b:        {}# comment    d:        1.1# another commentEOT;        $expected = [            'a' => [                'b' => [],                'd' => 1.1,            ],        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function getParseExceptionNotAffectedMultiLineStringLastResortParsing()    {        $tests = [];        $yaml = <<<'EOT'a    b:EOT;        $tests['parse error on first line'] = [$yaml];        $yaml = <<<'EOT'ab    c:EOT;        $tests['parse error due to inconsistent indentation'] = [$yaml];        $yaml = <<<'EOT' &  *  !  |  >  '  "  %  @  ` #, { asd a;sdasd }-@^qw3EOT;        $tests['symfony/symfony/issues/22967#issuecomment-322067742'] = [$yaml];        return $tests;    }    /**     * @dataProvider getParseExceptionNotAffectedMultiLineStringLastResortParsing     */    public function testParseExceptionNotAffectedByMultiLineStringLastResortParsing($yaml)    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->parser->parse($yaml);    }    public function testMultiLineStringLastResortParsing()    {        $yaml = <<<'EOT'test:  You can have things that don't look like strings here  true  yes you canEOT;        $expected = [            'test' => 'You can have things that don\'t look like strings here true yes you can',        ];        $this->assertSame($expected, $this->parser->parse($yaml));        $yaml = <<<'EOT'a:    b       cEOT;        $expected = [            'a' => 'b c',        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function testMappingInASequence()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        Yaml::parse(<<<'EOF'yaml:  - array stuff  hash: meEOF        );    }    public function testScalarInSequence()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessage('missing colon');        Yaml::parse(<<<'EOF'foo:    - bar"missing colon"    foo: barEOF        );    }    /**     * > It is an error for two equal keys to appear in the same mapping node.     * > In such a case the YAML processor may continue, ignoring the second     * > `key: value` pair and issuing an appropriate warning. This strategy     * > preserves a consistent information model for one-pass and random access     * > applications.     *     * @see http://yaml.org/spec/1.2/spec.html#id2759572     * @see http://yaml.org/spec/1.1/#id932806     * @group legacy     */    public function testMappingDuplicateKeyBlock()    {        $input = <<<'EOD'parent:    child: first    child: duplicateparent:    child: duplicate    child: duplicateEOD;        $expected = [            'parent' => [                'child' => 'first',            ],        ];        $this->assertSame($expected, Yaml::parse($input));    }    /**     * @group legacy     */    public function testMappingDuplicateKeyFlow()    {        $input = <<<'EOD'parent: { child: first, child: duplicate }parent: { child: duplicate, child: duplicate }EOD;        $expected = [            'parent' => [                'child' => 'first',            ],        ];        $this->assertSame($expected, Yaml::parse($input));    }    /**     * @group legacy     * @dataProvider getParseExceptionOnDuplicateData     * @expectedDeprecation Duplicate key "%s" detected whilst parsing YAML. Silent handling of duplicate mapping keys in YAML is deprecated %s and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0 on line %d.     * throws \Symfony\Component\Yaml\Exception\ParseException in 4.0     */    public function testParseExceptionOnDuplicate($input, $duplicateKey, $lineNumber)    {        Yaml::parse($input);    }    public function getParseExceptionOnDuplicateData()    {        $tests = [];        $yaml = <<<EODparent: { child: first, child: duplicate }EOD;        $tests[] = [$yaml, 'child', 1];        $yaml = <<<EODparent:  child: first,  child: duplicateEOD;        $tests[] = [$yaml, 'child', 3];        $yaml = <<<EODparent: { child: foo }parent: { child: bar }EOD;        $tests[] = [$yaml, 'parent', 2];        $yaml = <<<EODparent: { child_mapping: { value: bar},  child_mapping: { value: bar} }EOD;        $tests[] = [$yaml, 'child_mapping', 1];        $yaml = <<<EODparent:  child_mapping:    value: bar  child_mapping:    value: barEOD;        $tests[] = [$yaml, 'child_mapping', 4];        $yaml = <<<EODparent: { child_sequence: ['key1', 'key2', 'key3'],  child_sequence: ['key1', 'key2', 'key3'] }EOD;        $tests[] = [$yaml, 'child_sequence', 1];        $yaml = <<<EODparent:  child_sequence:    - key1    - key2    - key3  child_sequence:    - key1    - key2    - key3EOD;        $tests[] = [$yaml, 'child_sequence', 6];        return $tests;    }    public function testEmptyValue()    {        $input = <<<'EOF'hash:EOF;        $this->assertEquals(['hash' => null], Yaml::parse($input));    }    public function testCommentAtTheRootIndent()    {        $this->assertEquals([            'services' => [                'app.foo_service' => [                    'class' => 'Foo',                ],                'app/bar_service' => [                    'class' => 'Bar',                ],            ],        ], Yaml::parse(<<<'EOF'# comment 1services:# comment 2    # comment 3    app.foo_service:        class: Foo# comment 4    # comment 5    app/bar_service:        class: BarEOF        ));    }    public function testStringBlockWithComments()    {        $this->assertEquals(['content' => <<<'EOT'# comment 1header    # comment 2    <body>        <h1>title</h1>    </body>footer # comment3EOT        ], Yaml::parse(<<<'EOF'content: |    # comment 1    header        # comment 2        <body>            <h1>title</h1>        </body>    footer # comment3EOF        ));    }    public function testFoldedStringBlockWithComments()    {        $this->assertEquals([['content' => <<<'EOT'# comment 1header    # comment 2    <body>        <h1>title</h1>    </body>footer # comment3EOT        ]], Yaml::parse(<<<'EOF'-    content: |        # comment 1        header            # comment 2            <body>                <h1>title</h1>            </body>        footer # comment3EOF        ));    }    public function testNestedFoldedStringBlockWithComments()    {        $this->assertEquals([[            'title' => 'some title',            'content' => <<<'EOT'# comment 1header    # comment 2    <body>        <h1>title</h1>    </body>footer # comment3EOT        ]], Yaml::parse(<<<'EOF'-    title: some title    content: |        # comment 1        header            # comment 2            <body>                <h1>title</h1>            </body>        footer # comment3EOF        ));    }    public function testReferenceResolvingInInlineStrings()    {        $this->assertEquals([            'var' => 'var-value',            'scalar' => 'var-value',            'list' => ['var-value'],            'list_in_list' => [['var-value']],            'map_in_list' => [['key' => 'var-value']],            'embedded_mapping' => [['key' => 'var-value']],            'map' => ['key' => 'var-value'],            'list_in_map' => ['key' => ['var-value']],            'map_in_map' => ['foo' => ['bar' => 'var-value']],        ], Yaml::parse(<<<'EOF'var:  &var var-valuescalar: *varlist: [ *var ]list_in_list: [[ *var ]]map_in_list: [ { key: *var } ]embedded_mapping: [ key: *var ]map: { key: *var }list_in_map: { key: [*var] }map_in_map: { foo: { bar: *var } }EOF        ));    }    public function testYamlDirective()    {        $yaml = <<<'EOF'%YAML 1.2---foo: 1bar: 2EOF;        $this->assertEquals(['foo' => 1, 'bar' => 2], $this->parser->parse($yaml));    }    /**     * @group legacy     * @expectedDeprecation Implicit casting of numeric key to string is deprecated since Symfony 3.3 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0. Quote your evaluable mapping keys instead on line 2.     */    public function testFloatKeys()    {        $yaml = <<<'EOF'foo:    1.2: "bar"    1.3: "baz"EOF;        $expected = [            'foo' => [                '1.2' => 'bar',                '1.3' => 'baz',            ],        ];        $this->assertEquals($expected, $this->parser->parse($yaml));    }    /**     * @group legacy     * @expectedDeprecation Implicit casting of non-string key to string is deprecated since Symfony 3.3 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0. Quote your evaluable mapping keys instead on line 1.     */    public function testBooleanKeys()    {        $yaml = <<<'EOF'true: foofalse: barEOF;        $expected = [            1 => 'foo',            0 => 'bar',        ];        $this->assertEquals($expected, $this->parser->parse($yaml));    }    public function testExplicitStringCasting()    {        $yaml = <<<'EOF''1.2': "bar"!!str 1.3: "baz"'true': foo!!str false: bar!!str null: 'null''~': 'null'EOF;        $expected = [            '1.2' => 'bar',            '1.3' => 'baz',            'true' => 'foo',            'false' => 'bar',            'null' => 'null',            '~' => 'null',        ];        $this->assertEquals($expected, $this->parser->parse($yaml));    }    public function testColonInMappingValueException()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessage('A colon cannot be used in an unquoted mapping value');        $yaml = <<<'EOF'foo: bar: bazEOF;        $this->parser->parse($yaml);    }    public function testColonInMappingValueExceptionNotTriggeredByColonInComment()    {        $yaml = <<<'EOT'foo:    bar: foobar # Note: a comment after a colonEOT;        $this->assertSame(['foo' => ['bar' => 'foobar']], $this->parser->parse($yaml));    }    /**     * @dataProvider getCommentLikeStringInScalarBlockData     */    public function testCommentLikeStringsAreNotStrippedInBlockScalars($yaml, $expectedParserResult)    {        $this->assertSame($expectedParserResult, $this->parser->parse($yaml));    }    public function getCommentLikeStringInScalarBlockData()    {        $tests = [];        $yaml = <<<'EOT'pages:    -        title: some title        content: |            # comment 1            header                # comment 2                <body>                    <h1>title</h1>                </body>            footer # comment3EOT;        $expected = [            'pages' => [                [                    'title' => 'some title',                    'content' => <<<'EOT'# comment 1header    # comment 2    <body>        <h1>title</h1>    </body>footer # comment3EOT                    ,                ],            ],        ];        $tests[] = [$yaml, $expected];        $yaml = <<<'EOT'test: |    foo    # bar    bazcollection:    - one: |        foo        # bar        baz    - two: |        foo        # bar        bazEOT;        $expected = [            'test' => <<<'EOT'foo# barbazEOT            ,            'collection' => [                [                    'one' => <<<'EOT'foo# barbazEOT                    ,                ],                [                    'two' => <<<'EOT'foo# barbazEOT                    ,                ],            ],        ];        $tests[] = [$yaml, $expected];        $yaml = <<<'EOT'foo:  bar:    scalar-block: >      line1      line2>  baz:# comment    foobar: ~EOT;        $expected = [            'foo' => [                'bar' => [                    'scalar-block' => "line1 line2>\n",                ],                'baz' => [                    'foobar' => null,                ],            ],        ];        $tests[] = [$yaml, $expected];        $yaml = <<<'EOT'a:    b: hello#    c: |#        first row#        second row    d: helloEOT;        $expected = [            'a' => [                'b' => 'hello',                'd' => 'hello',            ],        ];        $tests[] = [$yaml, $expected];        return $tests;    }    public function testBlankLinesAreParsedAsNewLinesInFoldedBlocks()    {        $yaml = <<<'EOT'test: >    <h2>A heading</h2>    <ul>    <li>a list</li>    <li>may be a good example</li>    </ul>EOT;        $this->assertSame(            [                'test' => <<<'EOT'<h2>A heading</h2><ul> <li>a list</li> <li>may be a good example</li> </ul>EOT                ,            ],            $this->parser->parse($yaml)        );    }    public function testAdditionallyIndentedLinesAreParsedAsNewLinesInFoldedBlocks()    {        $yaml = <<<'EOT'test: >    <h2>A heading</h2>    <ul>      <li>a list</li>      <li>may be a good example</li>    </ul>EOT;        $this->assertSame(            [                'test' => <<<'EOT'<h2>A heading</h2><ul>  <li>a list</li>  <li>may be a good example</li></ul>EOT                ,            ],            $this->parser->parse($yaml)        );    }    /**     * @dataProvider getBinaryData     */    public function testParseBinaryData($data)    {        $this->assertSame(['data' => 'Hello world'], $this->parser->parse($data));    }    public function getBinaryData()    {        return [            'enclosed with double quotes' => ['data: !!binary "SGVsbG8gd29ybGQ="'],            'enclosed with single quotes' => ["data: !!binary 'SGVsbG8gd29ybGQ='"],            'containing spaces' => ['data: !!binary  "SGVs bG8gd 29ybGQ="'],            'in block scalar' => [                <<<'EOT'data: !!binary |    SGVsbG8gd29ybGQ=EOT    ],            'containing spaces in block scalar' => [                <<<'EOT'data: !!binary |    SGVs bG8gd 29ybGQ=EOT    ],        ];    }    /**     * @dataProvider getInvalidBinaryData     */    public function testParseInvalidBinaryData($data, $expectedMessage)    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessageRegExp($expectedMessage);        $this->parser->parse($data);    }    public function getInvalidBinaryData()    {        return [            'length not a multiple of four' => ['data: !!binary "SGVsbG8d29ybGQ="', '/The normalized base64 encoded data \(data without whitespace characters\) length must be a multiple of four \(\d+ bytes given\)/'],            'invalid characters' => ['!!binary "SGVsbG8#d29ybGQ="', '/The base64 encoded data \(.*\) contains invalid characters/'],            'too many equals characters' => ['data: !!binary "SGVsbG8gd29yb==="', '/The base64 encoded data \(.*\) contains invalid characters/'],            'misplaced equals character' => ['data: !!binary "SGVsbG8gd29ybG=Q"', '/The base64 encoded data \(.*\) contains invalid characters/'],            'length not a multiple of four in block scalar' => [                <<<'EOT'data: !!binary |    SGVsbG8d29ybGQ=EOT                ,                '/The normalized base64 encoded data \(data without whitespace characters\) length must be a multiple of four \(\d+ bytes given\)/',            ],            'invalid characters in block scalar' => [                <<<'EOT'data: !!binary |    SGVsbG8#d29ybGQ=EOT                ,                '/The base64 encoded data \(.*\) contains invalid characters/',            ],            'too many equals characters in block scalar' => [                <<<'EOT'data: !!binary |    SGVsbG8gd29yb===EOT                ,                '/The base64 encoded data \(.*\) contains invalid characters/',            ],            'misplaced equals character in block scalar' => [                <<<'EOT'data: !!binary |    SGVsbG8gd29ybG=QEOT                ,                '/The base64 encoded data \(.*\) contains invalid characters/',            ],        ];    }    public function testParseDateAsMappingValue()    {        $yaml = <<<'EOT'date: 2002-12-14EOT;        $expectedDate = new \DateTime();        $expectedDate->setTimeZone(new \DateTimeZone('UTC'));        $expectedDate->setDate(2002, 12, 14);        $expectedDate->setTime(0, 0, 0);        $this->assertEquals(['date' => $expectedDate], $this->parser->parse($yaml, Yaml::PARSE_DATETIME));    }    /**     * @param $lineNumber     * @param $yaml     * @dataProvider parserThrowsExceptionWithCorrectLineNumberProvider     */    public function testParserThrowsExceptionWithCorrectLineNumber($lineNumber, $yaml)    {        $this->expectException('\Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessage(sprintf('Unexpected characters near "," at line %d (near "bar: "123",").', $lineNumber));        $this->parser->parse($yaml);    }    public function parserThrowsExceptionWithCorrectLineNumberProvider()    {        return [            [                4,                <<<'YAML'foo:    -        # bar        bar: "123",YAML            ],            [                5,                <<<'YAML'foo:    -        # bar        # bar        bar: "123",YAML            ],            [                8,                <<<'YAML'foo:    -        # foobar        baz: 123bar:    -        # bar        bar: "123",YAML            ],            [                10,                <<<'YAML'foo:    -        # foobar        # foobar        baz: 123bar:    -        # bar        # bar        bar: "123",YAML            ],        ];    }    public function testParseMultiLineQuotedString()    {        $yaml = <<<EOTfoo: "bar  baz   foobarfoo"bar: bazEOT;        $this->assertSame(['foo' => 'bar baz foobar foo', 'bar' => 'baz'], $this->parser->parse($yaml));    }    public function testMultiLineQuotedStringWithTrailingBackslash()    {        $yaml = <<<YAMLfoobar:    "foo\    bar"YAML;        $this->assertSame(['foobar' => 'foobar'], $this->parser->parse($yaml));    }    public function testCommentCharactersInMultiLineQuotedStrings()    {        $yaml = <<<YAMLfoo:    foobar: 'foo      #bar'    bar: bazYAML;        $expected = [            'foo' => [                'foobar' => 'foo #bar',                'bar' => 'baz',            ],        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function testBlankLinesInQuotedMultiLineString()    {        $yaml = <<<YAMLfoobar: 'foo    bar'YAML;        $expected = [            'foobar' => "foo\nbar",        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function testEscapedQuoteInQuotedMultiLineString()    {        $yaml = <<<YAMLfoobar: "foo    \\"bar\\"    baz"YAML;        $expected = [            'foobar' => 'foo "bar" baz',        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function testBackslashInQuotedMultiLineString()    {        $yaml = <<<YAMLfoobar: "foo    bar\\\\"YAML;        $expected = [            'foobar' => 'foo bar\\',        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function testParseMultiLineUnquotedString()    {        $yaml = <<<EOTfoo: bar  baz   foobar  foobar: bazEOT;        $this->assertSame(['foo' => 'bar baz foobar foo', 'bar' => 'baz'], $this->parser->parse($yaml));    }    public function testParseMultiLineString()    {        $this->assertEquals("foo bar\nbaz", $this->parser->parse("foo\nbar\n\nbaz"));    }    /**     * @dataProvider multiLineDataProvider     */    public function testParseMultiLineMappingValue($yaml, $expected, $parseError)    {        $this->assertEquals($expected, $this->parser->parse($yaml));    }    public function multiLineDataProvider()    {        $tests = [];        $yaml = <<<'EOF'foo:- bar:    one    two    threeEOF;        $expected = [            'foo' => [                [                    'bar' => "one\ntwo three",                ],            ],        ];        $tests[] = [$yaml, $expected, false];        $yaml = <<<'EOF'bar"foo"EOF;        $expected = 'bar "foo"';        $tests[] = [$yaml, $expected, false];        $yaml = <<<'EOF'bar"fooEOF;        $expected = 'bar "foo';        $tests[] = [$yaml, $expected, false];        $yaml = <<<'EOF'bar'foo'EOF;        $expected = "bar\n'foo'";        $tests[] = [$yaml, $expected, false];        $yaml = <<<'EOF'barfoo'EOF;        $expected = "bar\nfoo'";        $tests[] = [$yaml, $expected, false];        return $tests;    }    public function testTaggedInlineMapping()    {        $this->assertEquals(new TaggedValue('foo', ['foo' => 'bar']), $this->parser->parse('!foo {foo: bar}', Yaml::PARSE_CUSTOM_TAGS));    }    /**     * @dataProvider taggedValuesProvider     */    public function testCustomTagSupport($expected, $yaml)    {        $this->assertEquals($expected, $this->parser->parse($yaml, Yaml::PARSE_CUSTOM_TAGS));    }    public function taggedValuesProvider()    {        return [            'sequences' => [                [new TaggedValue('foo', ['yaml']), new TaggedValue('quz', ['bar'])],                <<<YAML- !foo    - yaml- !quz [bar]YAML            ],            'mappings' => [                new TaggedValue('foo', ['foo' => new TaggedValue('quz', ['bar']), 'quz' => new TaggedValue('foo', ['quz' => 'bar'])]),                <<<YAML!foofoo: !quz [bar]quz: !foo   quz: barYAML            ],            'inline' => [                [new TaggedValue('foo', ['foo', 'bar']), new TaggedValue('quz', ['foo' => 'bar', 'quz' => new TaggedValue('bar', ['one' => 'bar'])])],                <<<YAML- !foo [foo, bar]- !quz {foo: bar, quz: !bar {one: bar}}YAML            ],        ];    }    public function testCustomTagsDisabled()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessage('Tags support is not enabled. Enable the `Yaml::PARSE_CUSTOM_TAGS` flag to use "!iterator" at line 1 (near "!iterator [foo]").');        $this->parser->parse('!iterator [foo]');    }    /**     * @group legacy     * @expectedDeprecation Using the unquoted scalar value "!iterator foo" is deprecated since Symfony 3.3 and will be considered as a tagged value in 4.0. You must quote it on line 1.     */    public function testUnsupportedTagWithScalar()    {        $this->assertEquals('!iterator foo', $this->parser->parse('!iterator foo'));    }    public function testExceptionWhenUsingUnsupportedBuiltInTags()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessage('The built-in tag "!!foo" is not implemented at line 1 (near "!!foo").');        $this->parser->parse('!!foo');    }    /**     * @group legacy     * @expectedDeprecation Starting an unquoted string with a question mark followed by a space is deprecated since Symfony 3.3 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0 on line 1.     */    public function testComplexMappingThrowsParseException()    {        $yaml = <<<YAML? "1":  name: végétalienYAML;        $this->parser->parse($yaml);    }    /**     * @group legacy     * @expectedDeprecation Starting an unquoted string with a question mark followed by a space is deprecated since Symfony 3.3 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0 on line 2.     */    public function testComplexMappingNestedInMappingThrowsParseException()    {        $yaml = <<<YAMLdiet:  ? "1"  :    name: végétalienYAML;        $this->parser->parse($yaml);    }    /**     * @group legacy     * @expectedDeprecation Starting an unquoted string with a question mark followed by a space is deprecated since Symfony 3.3 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0 on line 1.     */    public function testComplexMappingNestedInSequenceThrowsParseException()    {        $yaml = <<<YAML- ? "1"  :    name: végétalienYAML;        $this->parser->parse($yaml);    }    public function testParsingIniThrowsException()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessage('Unable to parse at line 1 (near "[parameters]").');        $ini = <<<INI[parameters]  foo = bar  bar = %foo%INI;        $this->parser->parse($ini);    }    private function loadTestsFromFixtureFiles($testsFile)    {        $parser = new Parser();        $tests = [];        $files = $parser->parseFile(__DIR__.'/Fixtures/'.$testsFile);        foreach ($files as $file) {            $yamls = file_get_contents(__DIR__.'/Fixtures/'.$file.'.yml');            // split YAMLs documents            foreach (preg_split('/^---( %YAML\:1\.0)?/m', $yamls) as $yaml) {                if (!$yaml) {                    continue;                }                $test = $parser->parse($yaml);                if (isset($test['todo']) && $test['todo']) {                    // TODO                } else {                    eval('$expected = '.trim($test['php']).';');                    $tests[] = [var_export($expected, true), $test['yaml'], $test['test'], isset($test['deprecated']) ? $test['deprecated'] : false];                }            }        }        return $tests;    }    public function testCanParseVeryLongValue()    {        $longStringWithSpaces = str_repeat('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ', 20000);        $trickyVal = ['x' => $longStringWithSpaces];        $yamlString = Yaml::dump($trickyVal);        $arrayFromYaml = $this->parser->parse($yamlString);        $this->assertEquals($trickyVal, $arrayFromYaml);    }    public function testParserCleansUpReferencesBetweenRuns()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessage('Reference "foo" does not exist at line 2');        $yaml = <<<YAMLfoo: &foo    baz: foobarbar:    <<: *fooYAML;        $this->parser->parse($yaml);        $yaml = <<<YAMLbar:    <<: *fooYAML;        $this->parser->parse($yaml);    }    public function testPhpConstantTagMappingKey()    {        $yaml = <<<YAMLtransitions:    !php/const 'Symfony\Component\Yaml\Tests\B::FOO':        from:            - !php/const 'Symfony\Component\Yaml\Tests\B::BAR'        to: !php/const 'Symfony\Component\Yaml\Tests\B::BAZ'YAML;        $expected = [            'transitions' => [                'foo' => [                    'from' => [                        'bar',                    ],                    'to' => 'baz',                ],            ],        ];        $this->assertSame($expected, $this->parser->parse($yaml, Yaml::PARSE_CONSTANT));    }    /**     * @group legacy     * @expectedDeprecation The !php/const: tag to indicate dumped PHP constants is deprecated since Symfony 3.4 and will be removed in 4.0. Use the !php/const (without the colon) tag instead on line 2.     * @expectedDeprecation The !php/const: tag to indicate dumped PHP constants is deprecated since Symfony 3.4 and will be removed in 4.0. Use the !php/const (without the colon) tag instead on line 4.     * @expectedDeprecation The !php/const: tag to indicate dumped PHP constants is deprecated since Symfony 3.4 and will be removed in 4.0. Use the !php/const (without the colon) tag instead on line 5.     */    public function testDeprecatedPhpConstantTagMappingKey()    {        $yaml = <<<YAMLtransitions:    !php/const:Symfony\Component\Yaml\Tests\B::FOO:        from:            - !php/const:Symfony\Component\Yaml\Tests\B::BAR        to: !php/const:Symfony\Component\Yaml\Tests\B::BAZYAML;        $expected = [            'transitions' => [                'foo' => [                    'from' => [                        'bar',                    ],                    'to' => 'baz',                ],            ],        ];        $this->assertSame($expected, $this->parser->parse($yaml, Yaml::PARSE_CONSTANT));    }    /**     * @group legacy     * @expectedDeprecation Using the Yaml::PARSE_KEYS_AS_STRINGS flag is deprecated since Symfony 3.4 as it will be removed in 4.0. Quote your keys when they are evaluable instead.     */    public function testPhpConstantTagMappingKeyWithKeysCastToStrings()    {        $yaml = <<<YAMLtransitions:    !php/const 'Symfony\Component\Yaml\Tests\B::FOO':        from:            - !php/const 'Symfony\Component\Yaml\Tests\B::BAR'        to: !php/const 'Symfony\Component\Yaml\Tests\B::BAZ'YAML;        $expected = [            'transitions' => [                'foo' => [                    'from' => [                        'bar',                    ],                    'to' => 'baz',                ],            ],        ];        $this->assertSame($expected, $this->parser->parse($yaml, Yaml::PARSE_CONSTANT | Yaml::PARSE_KEYS_AS_STRINGS));    }    public function testMergeKeysWhenMappingsAreParsedAsObjects()    {        $yaml = <<<YAMLfoo: &FOO    bar: 1bar: &BAR    baz: 2    <<: *FOObaz:    baz_foo: 3    <<:        baz_bar: 4foobar:    bar: ~    <<: [*FOO, *BAR]YAML;        $expected = (object) [            'foo' => (object) [                'bar' => 1,            ],            'bar' => (object) [                'baz' => 2,                'bar' => 1,            ],            'baz' => (object) [                'baz_foo' => 3,                'baz_bar' => 4,            ],            'foobar' => (object) [                'bar' => null,                'baz' => 2,            ],        ];        $this->assertEquals($expected, $this->parser->parse($yaml, Yaml::PARSE_OBJECT_FOR_MAP));    }    public function testFilenamesAreParsedAsStringsWithoutFlag()    {        $file = __DIR__.'/Fixtures/index.yml';        $this->assertSame($file, $this->parser->parse($file));    }    public function testParseFile()    {        $this->assertIsArray($this->parser->parseFile(__DIR__.'/Fixtures/index.yml'));    }    public function testParsingNonExistentFilesThrowsException()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessageRegExp('#^File ".+/Fixtures/nonexistent.yml" does not exist\.$#');        $this->parser->parseFile(__DIR__.'/Fixtures/nonexistent.yml');    }    public function testParsingNotReadableFilesThrowsException()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessageRegExp('#^File ".+/Fixtures/not_readable.yml" cannot be read\.$#');        if ('\\' === \DIRECTORY_SEPARATOR) {            $this->markTestSkipped('chmod is not supported on Windows');        }        if (!getenv('USER') || 'root' === getenv('USER')) {            $this->markTestSkipped('This test will fail if run under superuser');        }        $file = __DIR__.'/Fixtures/not_readable.yml';        chmod($file, 0200);        $this->parser->parseFile($file);    }    public function testParseReferencesOnMergeKeys()    {        $yaml = <<<YAMLmergekeyrefdef:    a: foo    <<: &quux        b: bar        c: bazmergekeyderef:    d: quux    <<: *quuxYAML;        $expected = [            'mergekeyrefdef' => [                'a' => 'foo',                'b' => 'bar',                'c' => 'baz',            ],            'mergekeyderef' => [                'd' => 'quux',                'b' => 'bar',                'c' => 'baz',            ],        ];        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function testParseReferencesOnMergeKeysWithMappingsParsedAsObjects()    {        $yaml = <<<YAMLmergekeyrefdef:    a: foo    <<: &quux        b: bar        c: bazmergekeyderef:    d: quux    <<: *quuxYAML;        $expected = (object) [            'mergekeyrefdef' => (object) [                'a' => 'foo',                'b' => 'bar',                'c' => 'baz',            ],            'mergekeyderef' => (object) [                'd' => 'quux',                'b' => 'bar',                'c' => 'baz',            ],        ];        $this->assertEquals($expected, $this->parser->parse($yaml, Yaml::PARSE_OBJECT_FOR_MAP));    }    public function testEvalRefException()    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessage('Reference "foo" does not exist');        $yaml = <<<EOEfoo: { &foo { a: Steve, <<: *foo} }EOE;        $this->parser->parse($yaml);    }    /**     * @dataProvider circularReferenceProvider     */    public function testDetectCircularReferences($yaml)    {        $this->expectException('Symfony\Component\Yaml\Exception\ParseException');        $this->expectExceptionMessage('Circular reference [foo, bar, foo] detected');        $this->parser->parse($yaml, Yaml::PARSE_CUSTOM_TAGS);    }    public function circularReferenceProvider()    {        $tests = [];        $yaml = <<<YAMLfoo:    - &foo      - &bar        bar: foobar        baz: *fooYAML;        $tests['sequence'] = [$yaml];        $yaml = <<<YAMLfoo: &foo    bar: &bar        foobar: baz        baz: *fooYAML;        $tests['mapping'] = [$yaml];        $yaml = <<<YAMLfoo: &foo    bar: &bar        foobar: baz        <<: *fooYAML;        $tests['mapping with merge key'] = [$yaml];        return $tests;    }    /**     * @dataProvider indentedMappingData     */    public function testParseIndentedMappings($yaml, $expected)    {        $this->assertSame($expected, $this->parser->parse($yaml));    }    public function indentedMappingData()    {        $tests = [];        $yaml = <<<YAMLfoo:  - bar: "foobar"    # A comment    baz: "foobaz"YAML;        $expected = [            'foo' => [                [                    'bar' => 'foobar',                    'baz' => 'foobaz',                ],            ],        ];        $tests['comment line is first line in indented block'] = [$yaml, $expected];        $yaml = <<<YAMLfoo:    - bar:        # comment        baz: [1, 2, 3]YAML;        $expected = [            'foo' => [                [                    'bar' => [                        'baz' => [1, 2, 3],                    ],                ],            ],        ];        $tests['mapping value on new line starting with a comment line'] = [$yaml, $expected];        $yaml = <<<YAMLfoo:  -    bar: foobarYAML;        $expected = [            'foo' => [                [                    'bar' => 'foobar',                ],            ],        ];        $tests['mapping in sequence starting on a new line'] = [$yaml, $expected];        $yaml = <<<YAMLfoo:    bar: bazYAML;        $expected = [            'foo' => [                'bar' => 'baz',            ],        ];        $tests['blank line at the beginning of an indented mapping value'] = [$yaml, $expected];        return $tests;    }    public function testMultiLineComment()    {        $yaml = <<<YAMLparameters:    abc# Comment YAML;        $this->assertSame(['parameters' => 'abc'], $this->parser->parse($yaml));    }    public function testParseValueWithModifiers()    {        $yaml = <<<YAMLparameters:    abc: |+5 # plus five spaces indent         one         two         three         four         fiveYAML;        $this->assertSame(            [                'parameters' => [                    'abc' => implode("\n", ['one', 'two', 'three', 'four', 'five']),                ],            ],            $this->parser->parse($yaml)        );    }    public function testParseValueWithNegativeModifiers()    {        $yaml = <<<YAMLparameters:    abc: |-3 # minus       one       two       three       four       fiveYAML;        $this->assertSame(            [                'parameters' => [                    'abc' => implode("\n", ['one', 'two', 'three', 'four', 'five']),                ],            ],            $this->parser->parse($yaml)        );    }}class B{    public $b = 'foo';    const FOO = 'foo';    const BAR = 'bar';    const BAZ = 'baz';}
 |