class CacheReportCase in Site Audit 8.2
Class CacheReportCase.
@group commands
Hierarchy
- class \Unish\SiteAuditTestAbstract extends \Unish\CommandUnishTestCase
- class \Unish\CacheReportCase
Expanded class hierarchy of CacheReportCase
File
- tests/
cacheReportTest.php, line 16 - Contains /site_audit/tests/CacheReportCase.
Namespace
UnishView source
class CacheReportCase extends SiteAuditTestAbstract {
/**
* Sets up the environment for this test.
*/
public function setUp() {
$this
->setUpSiteAuditTestEnvironment();
}
/**
* Set cache.page.max_age to 0. Check should Fail.
*/
public function testPageExpireOne() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('cache.page.max_age', 0);
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-cache', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_FAIL, $output->checks->SiteAuditCheckCachePageExpire->score);
}
/**
* Set cache.page.max_age between 0 and 900. Check should Warn.
*/
public function testPageExpireTwo() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('cache.page.max_age', rand(1,89));
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-cache', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN, $output->checks->SiteAuditCheckCachePageExpire->score);
}
/**
* Set cache.page.max_age greater than 900. Check should Pass.
*/
public function testPageExpireThree() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('cache.page.max_age', 901);
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-cache', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS, $output->checks->SiteAuditCheckCachePageExpire->score);
}
/**
* Set js.preprocess to false. Check should Fail.
*/
public function testPreprocessJsFail() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('js.preprocess', FALSE);
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-cache', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_FAIL, $output->checks->SiteAuditCheckCachePreprocessJs->score);
}
/**
* Set js.preprocess to true. Check should Pass.
*/
public function testPreprocessJsPass() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('js.preprocess', TRUE);
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-cache', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS, $output->checks->SiteAuditCheckCachePreprocessJs->score);
}
/**
* Set js.preprocess to false. Check should Fail.
*/
public function testPreprocessCssFail() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('css.preprocess', FALSE);
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-cache', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_FAIL, $output->checks->SiteAuditCheckCachePreprocessCss->score);
}
/**
* Set js.preprocess to true. Check should Pass.
*/
public function testPreprocessCssPass() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('css.preprocess', TRUE);
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-cache', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS, $output->checks->SiteAuditCheckCachePreprocessCss->score);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheReportCase:: |
public | function | Sets up the environment for this test. | |
CacheReportCase:: |
public | function | Set cache.page.max_age to 0. Check should Fail. | |
CacheReportCase:: |
public | function | Set cache.page.max_age greater than 900. Check should Pass. | |
CacheReportCase:: |
public | function | Set cache.page.max_age between 0 and 900. Check should Warn. | |
CacheReportCase:: |
public | function | Set js.preprocess to false. Check should Fail. | |
CacheReportCase:: |
public | function | Set js.preprocess to true. Check should Pass. | |
CacheReportCase:: |
public | function | Set js.preprocess to false. Check should Fail. | |
CacheReportCase:: |
public | function | Set js.preprocess to true. Check should Pass. | |
SiteAuditTestAbstract:: |
public | function | Sets up environment for running site_audit tests. |