You are here

public function ExtensionsReportCase::testDuplicateWarn1 in Site Audit 8.2

Download Two copies of an extension. Check should warn.

File

tests/extensionsReportTest.php, line 81
Contains /site_audit/tests/ExtensionsReportCase.

Class

ExtensionsReportCase
Class ExtensionsReportCase.

Namespace

Unish

Code

public function testDuplicateWarn1() {
  $this
    ->drush('pm-download', array(
    'php',
  ), $this->options);
  $this
    ->drush('pm-download', array(
    'php',
  ), $this->options + array(
    'destination' => 'profiles',
  ));
  $this
    ->drush('pm-enable', array(
    'php',
  ), $this->options);
  $this
    ->drush('audit-extensions', array(), $this->options + array(
    'detail' => NULL,
    'json' => NULL,
  ));
  $output = json_decode($this
    ->getOutput());
  $this
    ->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN, $output->checks->SiteAuditCheckExtensionsDuplicate->score);
}