aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fabpot-yaml/test/sfYamlParserTest.php
blob: e17f023fdfeecc8ad31b638abeedfa2136d5fa21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php

/*
 * This file is part of the symfony package.
 * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

require_once(dirname(__FILE__).'/lime/lime.php');
require_once(dirname(__FILE__).'/../lib/sfYaml.php');
require_once(dirname(__FILE__).'/../lib/sfYamlParser.php');

sfYaml::setSpecVersion('1.1');

$t = new lime_test(153);

$parser = new sfYamlParser();

$path = dirname(__FILE__).'/fixtures';
$files = $parser->parse(file_get_contents($path.'/index.yml'));
foreach ($files as $file)
{
  $t->diag($file);

  $yamls = file_get_contents($path.'/'.$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'])
    {
      $t->todo($test['test']);
    }
    else
    {
      $expected = var_export(eval('return '.trim($test['php']).';'), true);

      $t->is(var_export($parser->parse($test['yaml']), true), $expected, $test['test']);
    }
  }
}

// test tabs in YAML
$yamls = array(
  "foo:\n	bar",
  "foo:\n 	bar",
  "foo:\n	 bar",
  "foo:\n 	 bar",
);

foreach ($yamls as $yaml)
{
  try
  {
    $content = $parser->parse($yaml);
    $t->fail('YAML files must not contain tabs');
  }
  catch (InvalidArgumentException $e)
  {
    $t->pass('YAML files must not contain tabs');
  }
}

$yaml = <<<EOF
--- %YAML:1.0
foo
...
EOF;

$t->is('foo', $parser->parse($yaml));

// objects
$t->diag('Objects support');
class A
{
  public $a = 'foo';
}
$a = array('foo' => new A(), 'bar' => 1);
$t->is($parser->parse(<<<EOF
foo: !!php/object:O:1:"A":1:{s:1:"a";s:3:"foo";}
bar: 1
EOF
), $a, '->parse() is able to dump objects');