2013-10-29 12:06:26 +01:00
|
|
|
<?php
|
2017-12-11 00:10:56 +01:00
|
|
|
|
|
|
|
namespace SilverStripe\VersionFeed\Tests;
|
|
|
|
|
|
|
|
|
|
|
|
use Page;
|
|
|
|
use SilverStripe\VersionFeed\VersionFeed;
|
|
|
|
use SilverStripe\VersionFeed\VersionFeedController;
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
2017-12-11 05:20:00 +01:00
|
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
|
|
use SilverStripe\CMS\Controllers\ContentController;
|
2017-12-11 00:10:56 +01:00
|
|
|
|
|
|
|
|
2013-10-29 12:06:26 +01:00
|
|
|
class VersionFeedTest extends SapphireTest {
|
|
|
|
|
2013-10-29 12:06:34 +01:00
|
|
|
protected $usesDatabase = true;
|
|
|
|
|
2017-12-11 05:20:00 +01:00
|
|
|
protected static $required_extensions = [
|
|
|
|
SiteTree::class => [VersionFeed::class],
|
|
|
|
ContentController::class => [VersionFeedController::class],
|
|
|
|
];
|
2013-10-29 12:06:34 +01:00
|
|
|
|
2017-12-11 05:20:00 +01:00
|
|
|
protected $illegalExtensions = [
|
|
|
|
'SiteTree' => ['Translatable']
|
|
|
|
];
|
2013-10-29 12:06:34 +01:00
|
|
|
|
2013-10-29 12:06:26 +01:00
|
|
|
public function testDiffedChangesExcludesRestrictedItems() {
|
|
|
|
$this->markTestIncomplete();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDiffedChangesIncludesFullHistory() {
|
|
|
|
$this->markTestIncomplete();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDiffedChangesTitle() {
|
2017-12-11 05:20:00 +01:00
|
|
|
$page = new Page(['Title' => 'My Title']);
|
2013-10-29 12:06:26 +01:00
|
|
|
$page->write();
|
|
|
|
$page->publish('Stage', 'Live');
|
2013-10-29 12:06:34 +01:00
|
|
|
|
2013-10-29 12:06:26 +01:00
|
|
|
$page->Title = 'My Changed Title';
|
|
|
|
$page->write();
|
|
|
|
$page->publish('Stage', 'Live');
|
|
|
|
|
|
|
|
$page->Title = 'My Unpublished Changed Title';
|
|
|
|
$page->write();
|
|
|
|
|
2014-02-18 06:43:58 +01:00
|
|
|
// Strip spaces from test output because they're not reliably maintained by the HTML Tidier
|
|
|
|
$cleanDiffOutput = function($val) {
|
|
|
|
return str_replace(' ','',strip_tags($val));
|
|
|
|
};
|
|
|
|
|
2013-10-29 12:06:26 +01:00
|
|
|
$this->assertContains(
|
2014-02-18 06:43:58 +01:00
|
|
|
str_replace(' ' ,'',_t('RSSHistory.TITLECHANGED', 'Title has changed:') . 'My Changed Title'),
|
2015-03-30 00:28:42 +02:00
|
|
|
array_map($cleanDiffOutput, $page->getDiffList()->column('DiffTitle')),
|
2013-10-29 12:06:26 +01:00
|
|
|
'Detects published title changes'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertNotContains(
|
2014-02-18 06:43:58 +01:00
|
|
|
str_replace(' ' ,'',_t('RSSHistory.TITLECHANGED', 'Title has changed:') . 'My Unpublished Changed Title'),
|
2015-03-30 00:28:42 +02:00
|
|
|
array_map($cleanDiffOutput, $page->getDiffList()->column('DiffTitle')),
|
2013-10-29 12:06:26 +01:00
|
|
|
'Ignores unpublished title changes'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-03-30 00:28:42 +02:00
|
|
|
}
|