mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
155 lines
5.5 KiB
PHP
155 lines
5.5 KiB
PHP
<?php
|
|
use SilverStripe\Filesystem\Storage\AssetStore;
|
|
|
|
/**
|
|
* Tests {@see AssetControlExtension}
|
|
*/
|
|
class AssetControlExtensionTest extends SapphireTest {
|
|
|
|
protected $extraDataObjects = array(
|
|
'AssetControlExtensionTest_VersionedObject',
|
|
'AssetControlExtensionTest_Object'
|
|
);
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
|
|
// Set backend and base url
|
|
AssetStoreTest_SpyStore::activate('AssetControlExtensionTest');
|
|
|
|
// Setup fixture manually
|
|
$object1 = new AssetControlExtensionTest_VersionedObject();
|
|
$object1->Title = 'My object';
|
|
$fish1 = realpath(__DIR__ .'/../model/testimages/test-image-high-quality.jpg');
|
|
$object1->Header->setFromLocalFile($fish1, 'Header/MyObjectHeader.jpg');
|
|
$object1->Download->setFromString('file content', 'Documents/File.txt');
|
|
$object1->write();
|
|
$object1->publish('Stage', 'Live');
|
|
|
|
$object2 = new AssetControlExtensionTest_Object();
|
|
$object2->Title = 'Unversioned';
|
|
$object2->Image->setFromLocalFile($fish1, 'Images/BeautifulFish.jpg');
|
|
$object2->write();
|
|
|
|
$object3 = new AssetControlExtensionTest_ArchivedObject();
|
|
$object3->Title = 'Archived';
|
|
$object3->Header->setFromLocalFile($fish1, 'Archived/MyObjectHeader.jpg');
|
|
$object3->write();
|
|
$object3->publish('Stage', 'Live');
|
|
}
|
|
|
|
public function tearDown() {
|
|
AssetStoreTest_SpyStore::reset();
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testFileDelete() {
|
|
/** @var AssetControlExtensionTest_VersionedObject $object1 */
|
|
$object1 = AssetControlExtensionTest_VersionedObject::get()
|
|
->filter('Title', 'My object')
|
|
->first();
|
|
/** @var AssetControlExtensionTest_Object $object2 */
|
|
$object2 = AssetControlExtensionTest_Object::get()
|
|
->filter('Title', 'Unversioned')
|
|
->first();
|
|
|
|
/** @var AssetControlExtensionTest_ArchivedObject $object3 */
|
|
$object3 = AssetControlExtensionTest_ArchivedObject::get()
|
|
->filter('Title', 'Archived')
|
|
->first();
|
|
|
|
$this->assertTrue($object1->Download->exists());
|
|
$this->assertTrue($object1->Header->exists());
|
|
$this->assertTrue($object2->Image->exists());
|
|
$this->assertTrue($object3->Header->exists());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PUBLIC, $object1->Download->getVisibility());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PUBLIC, $object1->Header->getVisibility());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PUBLIC, $object2->Image->getVisibility());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PUBLIC, $object3->Header->getVisibility());
|
|
|
|
// Check live stage for versioned objects
|
|
$object1Live = Versioned::get_one_by_stage('AssetControlExtensionTest_VersionedObject', 'Live',
|
|
array('"ID"' => $object1->ID)
|
|
);
|
|
$object3Live = Versioned::get_one_by_stage('AssetControlExtensionTest_ArchivedObject', 'Live',
|
|
array('"ID"' => $object3->ID)
|
|
);
|
|
$this->assertTrue($object1Live->Download->exists());
|
|
$this->assertTrue($object1Live->Header->exists());
|
|
$this->assertTrue($object3Live->Header->exists());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PUBLIC, $object1Live->Download->getVisibility());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PUBLIC, $object1Live->Header->getVisibility());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PUBLIC, $object3Live->Header->getVisibility());
|
|
|
|
// Delete live records; Should cause versioned records to be protected
|
|
$object1Live->deleteFromStage('Live');
|
|
$object3Live->deleteFromStage('Live');
|
|
$this->assertTrue($object1->Download->exists());
|
|
$this->assertTrue($object1->Header->exists());
|
|
$this->assertTrue($object3->Header->exists());
|
|
$this->assertTrue($object1Live->Download->exists());
|
|
$this->assertTrue($object1Live->Header->exists());
|
|
$this->assertTrue($object3Live->Header->exists());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PROTECTED, $object1->Download->getVisibility());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PROTECTED, $object1->Header->getVisibility());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PROTECTED, $object3->Header->getVisibility());
|
|
|
|
// Delete draft record; Should remove all records
|
|
// Archived assets only should remain
|
|
$object1->delete();
|
|
$object2->delete();
|
|
$object3->delete();
|
|
$this->assertFalse($object1->Download->exists());
|
|
$this->assertFalse($object1->Header->exists());
|
|
$this->assertFalse($object2->Image->exists());
|
|
$this->assertTrue($object3->Header->exists());
|
|
$this->assertFalse($object1Live->Download->exists());
|
|
$this->assertFalse($object1Live->Header->exists());
|
|
$this->assertTrue($object3Live->Header->exists());
|
|
$this->assertNull($object1->Download->getVisibility());
|
|
$this->assertNull($object1->Header->getVisibility());
|
|
$this->assertNull($object2->Image->getVisibility());
|
|
$this->assertEquals(AssetStore::VISIBILITY_PROTECTED, $object3->Header->getVisibility());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Versioned object with attached assets
|
|
*
|
|
* @property string $Title
|
|
* @property DBFile $Header
|
|
* @property DBFile $Download
|
|
* @mixin Versioned
|
|
*/
|
|
class AssetControlExtensionTest_VersionedObject extends DataObject implements TestOnly {
|
|
private static $extensions = array(
|
|
'Versioned'
|
|
);
|
|
|
|
private static $db = array(
|
|
'Title' => 'Varchar(255)',
|
|
'Header' => "DBFile('image/supported')",
|
|
'Download' => 'DBFile'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* A basic unversioned object
|
|
*
|
|
* @property string $Title
|
|
* @property DBFile $Image
|
|
*/
|
|
class AssetControlExtensionTest_Object extends DataObject implements TestOnly {
|
|
private static $db = array(
|
|
'Title' => 'Varchar(255)',
|
|
'Image' => "DBFile('image/supported')"
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Versioned object that always archives its assets
|
|
*/
|
|
class AssetControlExtensionTest_ArchivedObject extends AssetControlExtensionTest_VersionedObject {
|
|
private static $archive_assets = true;
|
|
}
|