public function DomainConfigPageCacheTest::testDomainResponse in Domain Access 8
Tests that a domain response is proper.
File
- domain_config/
tests/ src/ Functional/ DomainConfigPageCacheTest.php, line 27
Class
- DomainConfigPageCacheTest
- Tests page caching results.
Namespace
Drupal\Tests\domain_config\FunctionalCode
public function testDomainResponse() {
// No domains should exist.
$this
->domainTableIsEmpty();
// Create a new domain programmatically.
$this
->domainCreateTestDomains(5);
$expected = [];
$domains = \Drupal::entityTypeManager()
->getStorage('domain')
->loadMultiple(NULL, TRUE);
foreach ($domains as $domain) {
$this
->drupalGet($domain
->getPath());
// The page cache includes a colon at the end.
$expected[] = $domain
->getPath() . ':';
}
$database = \Drupal::database();
$query = $database
->query("SELECT cid FROM {cache_page}");
$result = $query
->fetchCol();
$this
->assertEqual(sort($expected), sort($result), implode(', ', $result));
}