daux.io/tests/Tree/ContentTest.php

60 lignes
2.2 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 [
['This is content', [], 'This is content'],
["title: This is a simple title\n---\nThis is content\n", ['title' => 'This is a simple title'], 'This is content'],
["title: This is a simple title\ntitle :This is another title\n---\nThis is content\n", ['title' => 'This is another title'], 'This is content'],
["title: This is a simple title\nthis is not metadata\n---\nThis is content\n", ['title' => 'This is a simple title'], 'This is content'],
['title: This is only metatada, no content', [], 'title: This is only metatada, no content'],
["title: This is almost only metadata\n---\n", ['title' => 'This is almost only metadata'], ''],
["# Some content\n\nhi\n```yml\nvalue: true\n```\n----\n Follow up", [], "# Some content\n\nhi\n```yml\nvalue: true\n```\n----\n Follow up"],
];
}
/**
* @dataProvider providerTestAttributes
*/
public function testAttributes($content, $attributes, $finalContent)
{
$obj = $this->createContent($content);
$this->assertEquals($attributes, $obj->getAttribute());
$this->assertEquals($finalContent, trim($obj->getContent()));
}
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'));
}
}