', $this->yaml['morelesskey']);
}
public function testArrayOfZero() {
$this->assertSame (array(0), $this->yaml['array_of_zero']);
}
public function testSophisticatedArrayOfZero() {
$this->assertSame (array('rx' => array ('tx' => array (0))), $this->yaml['sophisticated_array_of_zero']);
}
public function testSwitches() {
$this->assertEquals (array (array ('row' => 0, 'col' => 0, 'func' => array ('tx' => array(0, 1)))), $this->yaml['switches']);
}
public function testEmptySequence() {
$this->assertSame (array(), $this->yaml['empty_sequence']);
}
public function testEmptyHash() {
$this->assertSame (array(), $this->yaml['empty_hash']);
}
public function testEmptykey() {
$this->assertSame (array('' => array ('key' => 'value')), $this->yaml['empty_key']);
}
public function testMultilines() {
$this->assertSame (array(array('type' => 'SomeItem', 'values' => array ('blah', 'blah', 'blah', 'blah'), 'ints' => array(2, 54, 12, 2143))), $this->yaml['multiline_items']);
}
public function testManyNewlines() {
$this->assertSame ('A quick
fox
jumped
over
a lazy
dog', $this->yaml['many_lines']);
}
public function testWerte() {
$this->assertSame (array ('1' => 'nummer 1', '0' => 'Stunde 0'), $this->yaml['werte']);
}
/* public function testNoIndent() {
$this->assertSame (array(
array ('record1'=>'value1'),
array ('record2'=>'value2')
)
, $this->yaml['noindent_records']);
} */
public function testColonsInKeys() {
$this->assertSame (array (1000), $this->yaml['a:1']);
}
public function testColonsInKeys2() {
$this->assertSame (array (2000), $this->yaml['a:2']);
}
public function testUnquotedColonsInKeys() {
$this->assertSame (array (3000), $this->yaml['a:3']);
}
public function testComplicatedKeyWithColon() {
$this->assertSame(array("a:b:''test'" => 'value'), $this->yaml['complex_unquoted_key']);
}
public function testKeysInMappedValueException() {
$this->setExpectedException('Exception');
Spyc::YAMLLoad('x: y: z:');
}
public function testKeysInValueException() {
$this->setExpectedException('Exception');
Spyc::YAMLLoad('x: y: z');
}
public function testSpecialCharacters() {
$this->assertSame ('[{]]{{]]', $this->yaml['special_characters']);
}
public function testAngleQuotes() {
$Quotes = Spyc::YAMLLoad(__DIR__.'/quotes.yaml');
$this->assertEquals (array ('html_tags' => array ('
', ''), 'html_content' => array ('
hello world
', 'hello
world'), 'text_content' => array ('hello world')),
$Quotes);
}
public function testFailingColons() {
$Failing = Spyc::YAMLLoad(__DIR__.'/failing1.yaml');
$this->assertSame (array ('MyObject' => array ('Prop1' => array ('key1:val1'))),
$Failing);
}
public function testQuotesWithComments() {
$Expected = 'bar';
$Actual = spyc_load_file (__DIR__.'/comments.yaml');
$this->assertEquals ($Expected, $Actual['foo']);
}
public function testArrayWithComments() {
$Expected = array ('x', 'y', 'z');
$Actual = spyc_load_file (__DIR__.'/comments.yaml');
$this->assertEquals ($Expected, $Actual['arr']);
}
public function testAfterArrayWithKittens() {
$Expected = 'kittens';
$Actual = spyc_load_file (__DIR__.'/comments.yaml');
$this->assertEquals ($Expected, $Actual['bar']);
}
// Plain characters http://www.yaml.org/spec/1.2/spec.html#id2789510
public function testKai() {
$Expected = array('-example' => 'value');
$Actual = spyc_load_file (__DIR__.'/indent_1.yaml');
$this->assertEquals ($Expected, $Actual['kai']);
}
public function testKaiList() {
$Expected = array ('-item', '-item', '-item');
$Actual = spyc_load_file (__DIR__.'/indent_1.yaml');
$this->assertEquals ($Expected, $Actual['kai_list_of_items']);
}
public function testDifferentQuoteTypes() {
$expected = array ('Something', "", "", "Something else");
$this->assertSame ($expected, $this->yaml['invoice']);
}
public function testDifferentQuoteTypes2() {
$expected = array ('Something', "Nothing", "Anything", "Thing");
$this->assertSame ($expected, $this->yaml['quotes']);
}
// Separation spaces http://www.yaml.org/spec/1.2/spec.html#id2778394
public function testMultipleArrays() {
$expected = array(array(array('x')));
$this->assertSame($expected, Spyc::YAMLLoad("- - - x"));
}
public function testElementWithEmptyHash()
{
$element = "hash: {}\narray: []";
$yaml = Spyc::YAMLLoadString($element);
$this->assertEquals($yaml['hash'], []);
$this->assertEquals($yaml['array'], []);
$yaml = Spyc::YAMLLoadString($element, [
'setting_empty_hash_as_object' => true
]);
$this->assertInstanceOf(stdClass::class, $yaml['hash']);
$this->assertEquals($yaml['array'], []);
}
}