public function DomainAliasWildcardTest::testDomainAliasWildcards in Domain Access 8
Test for environment matching.
File
- domain_alias/
tests/ src/ Functional/ DomainAliasWildcardTest.php, line 35
Class
- DomainAliasWildcardTest
- Tests behavior for the domain alias wildcard match handler.
Namespace
Drupal\Tests\domain_alias\FunctionalCode
public function testDomainAliasWildcards() {
$domain_storage = \Drupal::entityTypeManager()
->getStorage('domain');
$alias_loader = \Drupal::entityTypeManager()
->getStorage('domain_alias');
$domains = $domain_storage
->loadMultipleSorted(NULL, TRUE);
// Our patterns should map to example.com, one.example.com, two.example.com.
$patterns = [
'example.*',
'four.example.*',
'five.example.*',
];
foreach ($domains as $domain) {
$values = [
'domain_id' => $domain
->id(),
'pattern' => array_shift($patterns),
'redirect' => 0,
'environment' => 'local',
];
$this
->createDomainAlias($values);
}
// Test the environment loader.
$local = $alias_loader
->loadByEnvironment('local');
$this
->assert(count($local) == 3, 'Three aliases set to local');
// Test the environment matcher. $domain here is two.example.com.
$match = $alias_loader
->loadByEnvironmentMatch($domain, 'local');
$this
->assert(count($match) == 1, 'One environment match loaded');
$alias = current($match);
$this
->assert($alias
->getPattern() == 'five.example.*', 'Proper pattern match loaded.');
// Test the environment matcher. $domain here is one.example.com.
$domain = $domain_storage
->load('one_example_com');
$matches = $alias_loader
->loadByEnvironmentMatch($domain, 'local');
$this
->assert(count($matches) == 1, 'One environment match loaded');
$alias = current($matches);
$this
->assert($alias
->getPattern() == 'four.example.*', 'Proper pattern match loaded.');
// Now load a page and check things.
// Since we cannot read the service request, we place a block
// which shows links to all domains.
$this
->drupalPlaceBlock('domain_switcher_block');
// To get around block access, let the anon user view the block.
user_role_grant_permissions(RoleInterface::ANONYMOUS_ID, [
'administer domains',
]);
// For a non-aliased request, the url list should be normal.
$this
->drupalGet($domain
->getPath());
foreach ($domains as $domain) {
$this
->assertSession()
->assertEscaped($domain
->getHostname());
$this
->assertSession()
->linkByHrefExists($domain
->getPath(), 0, 'Link found: ' . $domain
->getPath());
}
// For an aliased request (four.example.com), the list should be aliased.
$url = $domain
->getScheme() . str_replace('*', $this->baseTLD, $alias
->getPattern());
$this
->drupalGet($url);
foreach ($matches as $match) {
$this
->assertSession()
->assertEscaped(str_replace('*', $this->baseTLD, $match
->getPattern()));
}
}