mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 11:05:56 +02:00
e1da17e9d9
ENHANCEMENT Return string from parser (instead of HTMLText dependency)
160 lines
4.8 KiB
PHP
160 lines
4.8 KiB
PHP
<?php
|
|
/**
|
|
* @package sapphiredocs
|
|
*/
|
|
class DocumentationParserTest extends SapphireTest {
|
|
|
|
function testImageRewrites() {
|
|
// Page on toplevel
|
|
$page = new DocumentationPage(
|
|
'subfolder/subpage.md',
|
|
new DocumentationEntity('mymodule', '2.4', BASE_PATH . '/sapphiredocs/tests/docs/'),
|
|
'en',
|
|
'2.4'
|
|
);
|
|
$result = DocumentationParser::rewrite_image_links($page->getMarkdown(), $page, 'mycontroller/cms/2.4/en/');
|
|
$this->assertContains(
|
|
'[relative image link](' . Director::absoluteBaseURL() . '/sapphiredocs/tests/docs/en/subfolder/_images/image.png)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[parent image link](' . Director::absoluteBaseURL() . '/sapphiredocs/tests/docs/en/_images/image.png)',
|
|
$result
|
|
);
|
|
// TODO Fix absolute image references
|
|
// $this->assertContains(
|
|
// '[absolute image link](' . Director::absoluteBaseURL() . '/sapphiredocs/tests/docs/en/_images/image.png)',
|
|
// $result
|
|
// );
|
|
}
|
|
|
|
function testApiLinks() {
|
|
// Page on toplevel
|
|
$page = new DocumentationPage(
|
|
'test.md',
|
|
new DocumentationEntity('mymodule', '2.4', BASE_PATH . '/sapphiredocs/tests/docs/'),
|
|
'en',
|
|
'2.4'
|
|
);
|
|
$result = DocumentationParser::rewrite_api_links($page->getMarkdown(), $page, 'mycontroller/cms/2.4/en/');
|
|
$this->assertContains(
|
|
'[link: api](http://api.silverstripe.org/search/lookup/?q=DataObject&version=2.4&module=mymodule)',
|
|
$result
|
|
);
|
|
$this->assertContains( '[DataObject::$has_one](http://api.silverstripe.org/search/lookup/?q=DataObject::$has_one&version=2.4&module=mymodule)',
|
|
$result
|
|
);
|
|
}
|
|
|
|
function testRelativeLinks() {
|
|
// Page on toplevel
|
|
$page = new DocumentationPage(
|
|
'test.md',
|
|
new DocumentationEntity('mymodule', null, BASE_PATH . '/sapphiredocs/tests/docs/')
|
|
);
|
|
$result = DocumentationParser::rewrite_relative_links($page->getMarkdown(), $page, 'mycontroller/cms/2.4/en/');
|
|
$this->assertContains(
|
|
'[link: subfolder index](mycontroller/cms/2.4/en/subfolder/)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: subfolder page](mycontroller/cms/2.4/en/subfolder/subpage)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: http](http://silverstripe.org)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: api](api:DataObject)',
|
|
$result
|
|
);
|
|
|
|
// Page in subfolder
|
|
$page = new DocumentationPage(
|
|
'subfolder/subpage.md',
|
|
new DocumentationEntity('mymodule', null, BASE_PATH . '/sapphiredocs/tests/docs/')
|
|
);
|
|
$result = DocumentationParser::rewrite_relative_links($page->getMarkdown(), $page, 'mycontroller/cms/2.4/en/');
|
|
$this->assertContains(
|
|
'[link: absolute index](mycontroller/cms/2.4/en/)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: absolute index with name](mycontroller/cms/2.4/en/index)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: relative index](mycontroller/cms/2.4/en/)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: relative parent page](mycontroller/cms/2.4/en/test)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: absolute parent page](mycontroller/cms/2.4/en/test)',
|
|
$result
|
|
);
|
|
|
|
// Page in nested subfolder
|
|
$page = new DocumentationPage(
|
|
'subfolder/subsubfolder/subsubpage.md',
|
|
new DocumentationEntity('mymodule', null, BASE_PATH . '/sapphiredocs/tests/docs/')
|
|
);
|
|
$result = DocumentationParser::rewrite_relative_links($page->getMarkdown(), $page, 'mycontroller/cms/2.4/en/');
|
|
$this->assertContains(
|
|
'[link: absolute index](mycontroller/cms/2.4/en/)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: relative index](mycontroller/cms/2.4/en/subfolder/)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: relative parent page](mycontroller/cms/2.4/en/subfolder/subpage)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: relative grandparent page](mycontroller/cms/2.4/en/test)',
|
|
$result
|
|
);
|
|
$this->assertContains(
|
|
'[link: absolute page](mycontroller/cms/2.4/en/test)',
|
|
$result
|
|
);
|
|
}
|
|
|
|
function testCleanPageNames() {
|
|
$names = array(
|
|
'documentation-Page',
|
|
'documentation_Page',
|
|
'documentation.md',
|
|
'documentation.pdf',
|
|
'documentation.file.txt',
|
|
'.hidden'
|
|
);
|
|
|
|
$should = array(
|
|
'Documentation Page',
|
|
'Documentation Page',
|
|
'Documentation',
|
|
'Documentation',
|
|
'Documentation',
|
|
'.hidden' // don't display something without a title
|
|
);
|
|
|
|
foreach($names as $key => $value) {
|
|
$this->assertEquals(DocumentationParser::clean_page_name($value), $should[$key]);
|
|
}
|
|
}
|
|
|
|
function testGetPagesFromFolder() {
|
|
$pages = DocumentationParser::get_pages_from_folder(BASE_PATH . '/sapphiredocs/tests/docs/en/');
|
|
$this->assertContains('index', $pages->column('Filename'), 'Index');
|
|
$this->assertContains('subfolder', $pages->column('Filename'), 'Foldername');
|
|
$this->assertContains('test', $pages->column('Filename'), 'Filename');
|
|
$this->assertNotContains('_images', $pages->column('Filename'), 'Ignored files');
|
|
}
|
|
|
|
} |