1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\Diagnostics\tests\Unit;
use Piwik\Plugins\Diagnostics\Diagnostic\DiagnosticResult;
use Piwik\Plugins\Diagnostics\DiagnosticReport;
class DiagnosticReportTest extends \PHPUnit\Framework\TestCase
{
public function testShouldComputeErrorAndWarningCount()
{
$report = new DiagnosticReport(
array(DiagnosticResult::singleResult('Error', DiagnosticResult::STATUS_ERROR, 'Comment')),
array(DiagnosticResult::singleResult('Warning', DiagnosticResult::STATUS_WARNING, 'Comment')),
array(DiagnosticResult::informationalResult('Test', 'Comment'))
);
$this->assertEquals(1, $report->getErrorCount());
$this->assertTrue($report->hasErrors());
$this->assertEquals(1, $report->getWarningCount());
$this->assertTrue($report->hasWarnings());
$report = new DiagnosticReport(array(), array(), array());
$this->assertEquals(0, $report->getErrorCount());
$this->assertFalse($report->hasErrors());
$this->assertEquals(0, $report->getWarningCount());
$this->assertFalse($report->hasWarnings());
}
public function testGetAllResults()
{
$report = new DiagnosticReport(
array(DiagnosticResult::singleResult('Error', DiagnosticResult::STATUS_ERROR, 'Comment')),
array(DiagnosticResult::singleResult('Warning', DiagnosticResult::STATUS_WARNING, 'Comment')),
array(DiagnosticResult::informationalResult('Test', 'Comment'))
);
$this->assertCount(1, $report->getMandatoryDiagnosticResults());
$this->assertCount(1, $report->getOptionalDiagnosticResults());
$this->assertCount(1, $report->getInformationalResults());
$this->assertCount(3, $report->getAllResults());
}
}
|