2010-08-01 06:46:32 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package sapphiredocs
|
|
|
|
*/
|
|
|
|
class DocumentationEntityTest extends SapphireTest {
|
|
|
|
|
|
|
|
function testDocumentationEntityAccessing() {
|
|
|
|
$entity = new DocumentationEntity('docs', '1.0', '../sapphiredocs/tests/docs/', 'My Test');
|
|
|
|
|
|
|
|
$this->assertEquals($entity->getTitle(), 'My Test');
|
|
|
|
$this->assertEquals($entity->getVersions(), array('1.0'));
|
|
|
|
$this->assertEquals($entity->getLanguages(), array('en', 'de'));
|
|
|
|
$this->assertEquals($entity->getModuleFolder(), 'docs');
|
|
|
|
|
|
|
|
$this->assertTrue($entity->hasVersion('1.0'));
|
|
|
|
$this->assertFalse($entity->hasVersion('2.0'));
|
|
|
|
|
|
|
|
$this->assertTrue($entity->hasLanguage('en'));
|
|
|
|
$this->assertFalse($entity->hasLanguage('fr'));
|
|
|
|
}
|
2010-08-01 09:03:48 +02:00
|
|
|
|
2011-07-01 03:19:35 +02:00
|
|
|
function testgetLatestVersion() {
|
2010-08-01 09:03:48 +02:00
|
|
|
$entity = new DocumentationEntity('docs', '1.0', '../sapphiredocs/tests/docs/', 'My Test');
|
2011-07-01 03:19:35 +02:00
|
|
|
$entity->addVersion('1.1', '../sapphiredocs/tests/docs-v2.4/');
|
|
|
|
$entity->addVersion('0.0', '../sapphiredocs/tests/docs-v3.0/');
|
|
|
|
$this->assertEquals('1.1', $entity->getLatestVersion(), 'Automatic version sorting');
|
2010-08-01 09:03:48 +02:00
|
|
|
|
|
|
|
$entity = new DocumentationEntity('docs', '1.0', '../sapphiredocs/tests/docs/', 'My Test');
|
2011-07-01 03:19:35 +02:00
|
|
|
$entity->addVersion('1.1.', '../sapphiredocs/tests/docs-v2.4/');
|
|
|
|
$entity->setLatestVersion('1.0');
|
|
|
|
$this->assertEquals('1.0', $entity->getLatestVersion(), 'Manual setting');
|
2010-08-01 09:03:48 +02:00
|
|
|
}
|
2010-08-01 06:46:32 +02:00
|
|
|
}
|