daux.io/tests/Tree/ContentTest.php

59 lignes
2.2 KiB
PHP
Brut Vue normale Historique

2015-11-11 00:09:47 +01:00
<?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', [], "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"],
2015-11-11 00:09:47 +01:00
);
}
/**
* @dataProvider providerTestAttributes
*/
public function testAttributes($content, $attributes, $finalContent)
2015-11-11 00:09:47 +01:00
{
$obj = $this->createContent($content);
$this->assertEquals($attributes, $obj->getAttribute());
$this->assertEquals($finalContent, trim($obj->getContent()));
2015-11-11 00:09:47 +01:00
}
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'));
}
}