2012-07-16 08:21:48 +02:00
|
|
|
<?php
|
2015-12-17 19:48:37 +01:00
|
|
|
class DMSTest extends FunctionalTest
|
|
|
|
{
|
2017-05-02 04:49:41 +02:00
|
|
|
protected static $fixture_file = 'dmstest.yml';
|
2015-12-17 19:48:37 +01:00
|
|
|
|
2017-05-01 05:54:48 +02:00
|
|
|
/**
|
|
|
|
* Stub PDF files for testing
|
2017-05-17 06:24:25 +02:00
|
|
|
*
|
2017-05-01 05:54:48 +02:00
|
|
|
* @var string
|
|
|
|
*/
|
2015-12-17 19:48:37 +01:00
|
|
|
public static $testFile = 'dms/tests/DMS-test-lorum-file.pdf';
|
|
|
|
public static $testFile2 = 'dms/tests/DMS-test-document-2.pdf';
|
|
|
|
|
2017-05-01 05:54:48 +02:00
|
|
|
/**
|
2017-05-17 06:24:25 +02:00
|
|
|
* The test folder to write assets into
|
|
|
|
*
|
|
|
|
* @var string
|
2017-05-01 05:54:48 +02:00
|
|
|
*/
|
2017-05-17 06:24:25 +02:00
|
|
|
protected $testDmsPath = 'assets/_dms-assets-test-1234';
|
2015-12-17 19:48:37 +01:00
|
|
|
|
2017-05-02 04:49:41 +02:00
|
|
|
/**
|
2017-05-17 06:24:25 +02:00
|
|
|
* @var DMSInterace
|
2017-05-02 04:49:41 +02:00
|
|
|
*/
|
|
|
|
protected $dms;
|
|
|
|
|
2017-05-17 06:24:25 +02:00
|
|
|
/**
|
|
|
|
* Use a test DMS folder, so we don't overwrite the live one, and clear it out in case of previous broken tests
|
|
|
|
*
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2015-12-17 19:48:37 +01:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
2017-05-17 06:24:25 +02:00
|
|
|
Config::inst()->update('DMS', 'folder_name', $this->testDmsPath);
|
|
|
|
DMSFilesystemTestHelper::delete($this->testDmsPath);
|
2017-05-02 04:49:41 +02:00
|
|
|
$this->dms = DMS::inst();
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
2017-05-01 05:54:48 +02:00
|
|
|
/**
|
2017-05-17 06:24:25 +02:00
|
|
|
* Delete the test folder after the test runs
|
2017-05-01 05:54:48 +02:00
|
|
|
*
|
2017-05-17 06:24:25 +02:00
|
|
|
* {@inheritDoc}
|
2017-05-01 05:54:48 +02:00
|
|
|
*/
|
2017-05-17 06:24:25 +02:00
|
|
|
public function tearDown()
|
2015-12-17 19:48:37 +01:00
|
|
|
{
|
2017-05-17 06:24:25 +02:00
|
|
|
parent::tearDown();
|
|
|
|
DMSFilesystemTestHelper::delete($this->testDmsPath);
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testDMSStorage()
|
|
|
|
{
|
|
|
|
$file = self::$testFile;
|
2017-05-02 04:49:41 +02:00
|
|
|
$document = $this->dms->storeDocument($file);
|
2015-12-17 19:48:37 +01:00
|
|
|
|
|
|
|
$this->assertNotNull($document, "Document object created");
|
2017-05-01 05:54:48 +02:00
|
|
|
$this->assertTrue(
|
|
|
|
file_exists(
|
2017-05-17 06:24:25 +02:00
|
|
|
DMS::inst()->getStoragePath() . DIRECTORY_SEPARATOR . $document->Folder
|
2017-05-01 05:54:48 +02:00
|
|
|
. DIRECTORY_SEPARATOR . $document->Filename
|
|
|
|
),
|
|
|
|
"Document file copied into DMS folder"
|
|
|
|
);
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testDMSFolderSpanning()
|
|
|
|
{
|
2017-05-17 06:24:25 +02:00
|
|
|
Config::inst()->update('DMS', 'folder_size', 5);
|
2015-12-17 19:48:37 +01:00
|
|
|
$file = self::$testFile;
|
|
|
|
|
|
|
|
$documents = array();
|
|
|
|
for ($i = 0; $i <= 16; $i++) {
|
2017-05-02 04:49:41 +02:00
|
|
|
$document = $this->dms->storeDocument($file);
|
2015-12-17 19:48:37 +01:00
|
|
|
$this->assertNotNull($document, "Document object created on run number: $i");
|
|
|
|
$this->assertTrue(file_exists($document->getFullPath()));
|
|
|
|
$documents[] = $document;
|
|
|
|
}
|
|
|
|
|
2017-05-01 05:54:48 +02:00
|
|
|
// Test document objects have their folders set
|
2015-12-17 19:48:37 +01:00
|
|
|
$folders = array();
|
|
|
|
for ($i = 0; $i <= 16; $i++) {
|
|
|
|
$folderName = $documents[$i]->Folder;
|
2017-05-01 05:54:48 +02:00
|
|
|
$this->assertTrue(
|
|
|
|
strpos($documents[$i]->getFullPath(), DIRECTORY_SEPARATOR . $folderName . DIRECTORY_SEPARATOR) !== false,
|
|
|
|
"Correct folder name for the documents. Document path contains reference to folder name '$folderName'"
|
|
|
|
);
|
2015-12-17 19:48:37 +01:00
|
|
|
$folders[] = $folderName;
|
|
|
|
}
|
|
|
|
|
2017-05-01 05:54:48 +02:00
|
|
|
// Test we created 4 folder to contain the 17 files
|
2015-12-17 19:48:37 +01:00
|
|
|
foreach ($folders as $f) {
|
2017-05-17 06:24:25 +02:00
|
|
|
$this->assertTrue(
|
|
|
|
is_dir(DMS::inst()->getStoragePath() . DIRECTORY_SEPARATOR . $f),
|
|
|
|
"Document folder '$f' exists"
|
|
|
|
);
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testReplaceDocument()
|
|
|
|
{
|
2017-05-01 05:54:48 +02:00
|
|
|
// Store the first document
|
2017-05-02 04:49:41 +02:00
|
|
|
$document = $this->dms->storeDocument(self::$testFile);
|
2015-12-17 19:48:37 +01:00
|
|
|
$document->Title = "My custom title";
|
|
|
|
$document->Description = "My custom description";
|
|
|
|
$document->write();
|
|
|
|
|
2017-05-01 05:54:48 +02:00
|
|
|
// Then overwrite with a second document
|
2015-12-17 19:48:37 +01:00
|
|
|
$document = $document->replaceDocument(self::$testFile2);
|
|
|
|
|
|
|
|
$this->assertNotNull($document, "Document object created");
|
2017-05-01 05:54:48 +02:00
|
|
|
$this->assertTrue(
|
|
|
|
file_exists(
|
2017-05-17 06:24:25 +02:00
|
|
|
DMS::inst()->getStoragePath() . DIRECTORY_SEPARATOR . $document->Folder
|
2017-05-01 05:54:48 +02:00
|
|
|
. DIRECTORY_SEPARATOR . $document->Filename
|
|
|
|
),
|
|
|
|
"Document file copied into DMS folder"
|
|
|
|
);
|
|
|
|
$this->assertContains(
|
|
|
|
"DMS-test-document-2",
|
|
|
|
$document->Filename,
|
|
|
|
"Original document filename is contain in the new filename"
|
|
|
|
);
|
2015-12-17 19:48:37 +01:00
|
|
|
$this->assertEquals("My custom title", $document->Title, "Custom title not modified");
|
|
|
|
$this->assertEquals("My custom description", $document->Description, "Custom description not modified");
|
|
|
|
}
|
2017-05-02 04:49:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that documents can be returned by a given page
|
|
|
|
*/
|
|
|
|
public function testGetByPageWithoutEmbargoes()
|
|
|
|
{
|
|
|
|
$pageWithEmbargoes = $this->objFromFixture('SiteTree', 's3');
|
|
|
|
$documents = $this->dms->getByPage($pageWithEmbargoes);
|
2017-05-05 05:35:39 +02:00
|
|
|
// Fixture: 6 documents in set, 1 is embargoed
|
|
|
|
$this->assertCount(5, $documents, 'Embargoed documents are excluded by default');
|
2017-05-02 04:49:41 +02:00
|
|
|
$this->assertContainsOnlyInstancesOf('DMSDocument', $documents);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that embargoed documents are excluded from getByPage
|
|
|
|
*/
|
|
|
|
public function testGetByPageWithEmbargoedDocuments()
|
|
|
|
{
|
|
|
|
$pageWithEmbargoes = $this->objFromFixture('SiteTree', 's3');
|
|
|
|
$documents = $this->dms->getByPage($pageWithEmbargoes, true);
|
2017-05-05 05:35:39 +02:00
|
|
|
// Fixture: 6 documents in set, 1 is embargoed
|
|
|
|
$this->assertCount(6, $documents, 'Embargoed documents can be included');
|
2017-05-02 04:49:41 +02:00
|
|
|
$this->assertContainsOnlyInstancesOf('DMSDocument', $documents);
|
|
|
|
}
|
|
|
|
|
2017-05-17 07:24:50 +02:00
|
|
|
/**
|
|
|
|
* Ensure the shortcode handler key is configurable
|
|
|
|
*/
|
|
|
|
public function testShortcodeHandlerKeyIsConfigurable()
|
|
|
|
{
|
|
|
|
Config::inst()->update('DMS', 'shortcode_handler_key', 'testing');
|
|
|
|
$this->assertSame('testing', DMS::inst()->getShortcodeHandlerKey());
|
|
|
|
}
|
|
|
|
|
2017-05-02 04:49:41 +02:00
|
|
|
/**
|
|
|
|
* Test that document sets can be retrieved for a given page
|
|
|
|
*/
|
|
|
|
public function testGetDocumentSetsByPage()
|
|
|
|
{
|
|
|
|
$page = $this->objFromFixture('SiteTree', 's1');
|
|
|
|
$sets = $this->dms->getDocumentSetsByPage($page);
|
|
|
|
$this->assertCount(2, $sets);
|
|
|
|
$this->assertContainsOnlyInstancesOf('DMSDocumentSet', $sets);
|
|
|
|
}
|
2017-07-31 11:35:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensure that assets/* folders are not included in filesystem sync operations
|
|
|
|
*/
|
|
|
|
public function testFolderExcludedFromFilesystemSync()
|
|
|
|
{
|
|
|
|
// Undo setup config changes
|
|
|
|
Config::unnest();
|
|
|
|
Config::nest();
|
|
|
|
|
|
|
|
$result = Filesystem::config()->get('sync_blacklisted_patterns');
|
|
|
|
$folderName = substr(DMS::config()->get('folder_name'), 7);
|
|
|
|
$this->assertContains('/^' . $folderName . '$/i', $result);
|
|
|
|
}
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|