mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
92 lines
3.4 KiB
PHP
92 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Tests\Tasks;
|
|
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
use SilverStripe\CMS\Tasks\MigrateSiteTreeLinkingTask;
|
|
use SilverStripe\Dev\SapphireTest;
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\ORM\DB;
|
|
use SilverStripe\Dev\Deprecation;
|
|
|
|
class MigrateSiteTreeLinkingTaskTest extends SapphireTest
|
|
{
|
|
protected static $fixture_file = 'MigrateSiteTreeLinkingTaskTest.yml';
|
|
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
parent::setUpBeforeClass();
|
|
|
|
// Cover db reset in case parent did not start
|
|
if (!static::getExtraDataObjects()) {
|
|
DataObject::reset();
|
|
static::resetDBSchema(true, true);
|
|
}
|
|
|
|
// Ensure legacy SiteTree_LinkTracking table exists
|
|
DB::get_schema()->schemaUpdate(function () {
|
|
DB::require_table('SiteTree_LinkTracking', [
|
|
'SiteTreeID' => 'Int',
|
|
'ChildID' => 'Int',
|
|
'FieldName' => 'Varchar',
|
|
]);
|
|
});
|
|
}
|
|
|
|
protected function setUp(): void
|
|
{
|
|
if (Deprecation::isEnabled()) {
|
|
$this->markTestSkipped('Test calls deprecated code');
|
|
}
|
|
parent::setUp();
|
|
|
|
// Manually bootstrap all Content blocks with soft coded IDs (raw sql to avoid save hooks)
|
|
$replacements = [
|
|
'$$ABOUTID$$' => $this->idFromFixture(SiteTree::class, 'about'),
|
|
'$$HOMEID$$' => $this->idFromFixture(SiteTree::class, 'home'),
|
|
'$$STAFFID$$' => $this->idFromFixture(SiteTree::class, 'staff'),
|
|
];
|
|
foreach (DB::query('SELECT "ID", "Content" FROM "SiteTree"') as $row) {
|
|
$id = (int)$row['ID'];
|
|
$content = str_replace(array_keys($replacements ?? []), array_values($replacements ?? []), $row['Content'] ?? '');
|
|
DB::prepared_query('UPDATE "SiteTree" SET "Content" = ? WHERE "ID" = ?', [$content, $id]);
|
|
}
|
|
DataObject::reset();
|
|
}
|
|
|
|
public function testLinkingMigration()
|
|
{
|
|
ob_start();
|
|
|
|
DB::quiet(false);
|
|
$task = new MigrateSiteTreeLinkingTask();
|
|
$task->run(null);
|
|
$this->assertStringContainsString(
|
|
"Migrated page links on 5 Pages",
|
|
ob_get_contents(),
|
|
'Rewritten links are correctly reported'
|
|
);
|
|
DB::quiet(true);
|
|
ob_end_clean();
|
|
|
|
// Query links for pages
|
|
/** @var SiteTree $home */
|
|
$home = $this->objFromFixture(SiteTree::class, 'home');
|
|
/** @var SiteTree $about */
|
|
$about = $this->objFromFixture(SiteTree::class, 'about');
|
|
/** @var SiteTree $staff */
|
|
$staff = $this->objFromFixture(SiteTree::class, 'staff');
|
|
/** @var SiteTree $action */
|
|
$action = $this->objFromFixture(SiteTree::class, 'action');
|
|
/** @var SiteTree $hash */
|
|
$hash = $this->objFromFixture(SiteTree::class, 'hash_link');
|
|
|
|
// Ensure all links are created
|
|
$this->assertListEquals([['ID' => $about->ID], ['ID' => $staff->ID]], $home->LinkTracking());
|
|
$this->assertListEquals([['ID' => $home->ID], ['ID' => $staff->ID]], $about->LinkTracking());
|
|
$this->assertListEquals([['ID' => $home->ID], ['ID' => $about->ID]], $staff->LinkTracking());
|
|
$this->assertListEquals([['ID' => $home->ID]], $action->LinkTracking());
|
|
$this->assertListEquals([['ID' => $home->ID], ['ID' => $about->ID]], $hash->LinkTracking());
|
|
}
|
|
}
|