class BestPracticesReportCase in Site Audit 8.2
Class BestPracticesReportCase.
@group commands
Hierarchy
- class \Unish\SiteAuditTestAbstract extends \Unish\CommandUnishTestCase
- class \Unish\BestPracticesReportCase
Expanded class hierarchy of BestPracticesReportCase
File
- tests/
bestPracticesReportTest.php, line 16 - Contains /site_audit/tests/BestPracticesReportCase.
Namespace
UnishView source
class BestPracticesReportCase extends SiteAuditTestAbstract {
/**
* Sets up the environment for this test.
*/
public function setUp() {
$this
->setUpSiteAuditTestEnvironment();
}
/**
* If fast_404 is enabled and fast_404 paths are empty, check should warn.
*/
public function testFast404One() {
// Enable fast_404 and make fast_404 paths empty.
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('fast_404.enabled', TRUE);
\$config->set('fast_404.paths', '');
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
// Execute the best-practices command and get output.
$this
->drush('audit-best-practices', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN, $output->checks->SiteAuditCheckBestPracticesFast404->score);
}
/**
* Fast_404 enabled and fast_404 paths not empty in fast_404, check passes.
*/
public function testFast404Two() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('fast_404.enabled', TRUE);
\$config->set('fast_404.paths', '/\\.(?:txt|png)\$/i');
\$config->save();;
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-best-practices', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS, $output->checks->SiteAuditCheckBestPracticesFast404->score);
}
/**
* If fast_404 is disabled, check should warn.
*/
public function testFast404Three() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('fast_404.enabled', FALSE);
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-best-practices', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN, $output->checks->SiteAuditCheckBestPracticesFast404->score);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BestPracticesReportCase:: |
public | function | Sets up the environment for this test. | |
BestPracticesReportCase:: |
public | function | If fast_404 is enabled and fast_404 paths are empty, check should warn. | |
BestPracticesReportCase:: |
public | function | If fast_404 is disabled, check should warn. | |
BestPracticesReportCase:: |
public | function | Fast_404 enabled and fast_404 paths not empty in fast_404, check passes. | |
SiteAuditTestAbstract:: |
public | function | Sets up environment for running site_audit tests. |