mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
60860cc1b9
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@56212 467b73ca-7a2a-4603-9d3b-597d59a354a9
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* @package sapphire
|
|
* @subpackage tests
|
|
*/
|
|
class RootURLControllerTest extends SapphireTest {
|
|
static $fixture_file = 'sapphire/tests/control/RootURLControllerTest.yml';
|
|
|
|
function testHomepageForDomain() {
|
|
$originalHost = $_SERVER['HTTP_HOST'];
|
|
|
|
// Tests matching an HTTP_HOST value to URLSegment homepage values
|
|
$tests = array(
|
|
'page.co.nz' => 'page1',
|
|
'www.page.co.nz' => 'page1',
|
|
'help.com' => 'page1',
|
|
'www.help.com' => 'page1',
|
|
'something.com' => 'page1',
|
|
'www.something.com' => 'page1',
|
|
|
|
'other.co.nz' => 'page2',
|
|
'www.other.co.nz' => 'page2',
|
|
'right' => 'page2',
|
|
'www. right' => 'page2',
|
|
|
|
'only.com' => 'page3',
|
|
'www.only.com' => 'page3',
|
|
|
|
'www.somethingelse.com' => 'home',
|
|
'somethingelse.com' => 'home',
|
|
|
|
// Test some potential false matches to page2 and page3
|
|
'alternate.only.com' => 'home',
|
|
'www.alternate.only.com' => 'home',
|
|
'alternate.something.com' => 'home',
|
|
);
|
|
|
|
foreach($tests as $domain => $urlSegment) {
|
|
$_SERVER['HTTP_HOST'] = $domain;
|
|
$this->assertEquals($urlSegment, RootURLController::get_homepage_urlsegment(), "Testing $domain matches $urlSegment");
|
|
}
|
|
|
|
$_SERVER['HTTP_HOST'] = $originalHost;
|
|
}
|
|
} |