57 Zeilen
1.8 KiB
PHP
57 Zeilen
1.8 KiB
PHP
<?php namespace Todaymade\Daux\Tree;
|
|
|
|
use Todaymade\Daux\Config;
|
|
|
|
class ContentTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
protected function createContent($content) {
|
|
$dir = new Directory(new Root(new Config, ''), '');
|
|
$obj = new Content($dir, '');
|
|
$obj->setContent($content);
|
|
|
|
return $obj;
|
|
}
|
|
|
|
public function providerTestAttributes()
|
|
{
|
|
return array(
|
|
['This is content', []],
|
|
["title: This is a simple title\n---\nThis is content\n", ['title' => 'This is a simple title']],
|
|
["title: This is a simple title\ntitle :This is another title\n---\nThis is content\n", ['title' => 'This is another title']],
|
|
["title: This is a simple title\nthis is not metadata\n---\nThis is content\n", ['title' => 'This is a simple title']],
|
|
["title: This is only metatada, no content", []],
|
|
["title: This is almost only metadata\n---\n", ["title" => "This is almost only metadata"]]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerTestAttributes
|
|
*/
|
|
public function testAttributes($content, $attributes)
|
|
{
|
|
$obj = $this->createContent($content);
|
|
|
|
$this->assertEquals($attributes, $obj->getAttribute());
|
|
}
|
|
|
|
public function testNoAttributes()
|
|
{
|
|
$content = "This is a content with a separator\n----\n this wasn't an attribute";
|
|
|
|
$obj = $this->createContent($content);
|
|
|
|
$this->assertEquals($content, $obj->getContent());
|
|
}
|
|
|
|
public function testContentPreserved()
|
|
{
|
|
$content = "this was an attribute, but also a separator\n----\nand it works";
|
|
$with_attribute = "title: a title\n----\n$content";
|
|
|
|
$obj = $this->createContent($with_attribute);
|
|
|
|
$this->assertEquals($content, $obj->getContent());
|
|
$this->assertEquals('a title', $obj->getAttribute('title'));
|
|
}
|
|
}
|