2011-03-18 04:37:22 +01:00
|
|
|
<?php
|
2016-06-16 06:57:19 +02:00
|
|
|
|
|
|
|
use SilverStripe\ORM\DataObject;
|
2016-08-10 06:08:39 +02:00
|
|
|
use SilverStripe\CMS\Tasks\MigrateSiteTreeLinkingTask;
|
2016-08-23 04:36:06 +02:00
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
|
|
|
2011-03-18 04:37:22 +01:00
|
|
|
/**
|
2011-03-22 10:47:26 +01:00
|
|
|
* @package cms
|
2011-03-18 04:37:22 +01:00
|
|
|
* @subpackage tests
|
|
|
|
*/
|
2017-01-25 21:59:25 +01:00
|
|
|
class MigrateSiteTreeLinkingTaskTest extends SapphireTest
|
|
|
|
{
|
2016-03-08 21:50:55 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
protected static $fixture_file = 'MigrateSiteTreeLinkingTaskTest.yml';
|
2016-03-08 21:50:55 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
protected static $use_draft_site = true;
|
2016-03-08 21:50:55 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
public function testLinkingMigration()
|
|
|
|
{
|
|
|
|
ob_start();
|
2016-03-08 21:50:55 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$task = new MigrateSiteTreeLinkingTask();
|
|
|
|
$task->run(null);
|
2016-03-08 21:50:55 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
"Rewrote 9 link(s) on 5 page(s) to use shortcodes.\n",
|
|
|
|
ob_get_contents(),
|
|
|
|
'Rewritten links are correctly reported'
|
|
|
|
);
|
|
|
|
ob_end_clean();
|
2016-03-08 21:50:55 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$homeID = $this->idFromFixture('SilverStripe\\CMS\\Model\\SiteTree', 'home');
|
|
|
|
$aboutID = $this->idFromFixture('SilverStripe\\CMS\\Model\\SiteTree', 'about');
|
|
|
|
$staffID = $this->idFromFixture('SilverStripe\\CMS\\Model\\SiteTree', 'staff');
|
|
|
|
$actionID = $this->idFromFixture('SilverStripe\\CMS\\Model\\SiteTree', 'action');
|
|
|
|
$hashID = $this->idFromFixture('SilverStripe\\CMS\\Model\\SiteTree', 'hash_link');
|
2016-03-08 21:50:55 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$homeContent = sprintf(
|
|
|
|
'<a href="[sitetree_link,id=%d]">About</a><a href="[sitetree_link,id=%d]">Staff</a><a href="http://silverstripe.org/">External Link</a><a name="anchor"></a>',
|
|
|
|
$aboutID,
|
|
|
|
$staffID
|
|
|
|
);
|
|
|
|
$aboutContent = sprintf(
|
|
|
|
'<a href="[sitetree_link,id=%d]">Home</a><a href="[sitetree_link,id=%d]">Staff</a><a name="second-anchor"></a>',
|
|
|
|
$homeID,
|
|
|
|
$staffID
|
|
|
|
);
|
|
|
|
$staffContent = sprintf(
|
|
|
|
'<a href="[sitetree_link,id=%d]">Home</a><a href="[sitetree_link,id=%d]">About</a>',
|
|
|
|
$homeID,
|
|
|
|
$aboutID
|
|
|
|
);
|
|
|
|
$actionContent = sprintf(
|
|
|
|
'<a href="[sitetree_link,id=%d]SearchForm">Search Form</a>',
|
|
|
|
$homeID
|
|
|
|
);
|
|
|
|
$hashLinkContent = sprintf(
|
|
|
|
'<a href="[sitetree_link,id=%d]#anchor">Home</a><a href="[sitetree_link,id=%d]#second-anchor">About</a>',
|
|
|
|
$homeID,
|
|
|
|
$aboutID
|
|
|
|
);
|
2016-03-08 21:50:55 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
$homeContent,
|
|
|
|
DataObject::get_by_id('SilverStripe\\CMS\\Model\\SiteTree', $homeID)->Content,
|
|
|
|
'HTML URLSegment links are rewritten.'
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
$aboutContent,
|
|
|
|
DataObject::get_by_id('SilverStripe\\CMS\\Model\\SiteTree', $aboutID)->Content
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
$staffContent,
|
|
|
|
DataObject::get_by_id('SilverStripe\\CMS\\Model\\SiteTree', $staffID)->Content
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
$actionContent,
|
|
|
|
DataObject::get_by_id('SilverStripe\\CMS\\Model\\SiteTree', $actionID)->Content,
|
|
|
|
'Links to actions on pages are rewritten correctly.'
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
$hashLinkContent,
|
|
|
|
DataObject::get_by_id('SilverStripe\\CMS\\Model\\SiteTree', $hashID)->Content,
|
|
|
|
'Hash/anchor links are correctly handled.'
|
|
|
|
);
|
|
|
|
}
|
2012-04-12 09:23:20 +02:00
|
|
|
}
|