mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
81 lines
2.2 KiB
PHP
81 lines
2.2 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Dev\Constraint;
|
||
|
|
||
|
use PHPUnit_Framework_Constraint;
|
||
|
use PHPUnit_Framework_ExpectationFailedException;
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\SS_List;
|
||
|
|
||
|
if (!class_exists(PHPUnit_Framework_Constraint::class)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Constraint for checking if a SS_List contains only items matching the given
|
||
|
* key-value pairs. Each match must correspond to 1 distinct record.
|
||
|
*/
|
||
|
class SSListContainsOnly extends SSListContains implements TestOnly
|
||
|
{
|
||
|
/**
|
||
|
* Check if the test fails due to a not matching item
|
||
|
*
|
||
|
* @var bool
|
||
|
*/
|
||
|
private $itemNotMatching = false;
|
||
|
|
||
|
/**
|
||
|
* Evaluates the constraint for parameter $other
|
||
|
*
|
||
|
* If $returnResult is set to false (the default), an exception is thrown
|
||
|
* in case of a failure. null is returned otherwise.
|
||
|
*
|
||
|
* If $returnResult is true, the result of the evaluation is returned as
|
||
|
* a boolean value instead: true in case of success, false in case of a
|
||
|
* failure.
|
||
|
*
|
||
|
* @param SS_List $other Value or object to evaluate.
|
||
|
* @param string $description Additional information about the test
|
||
|
* @param bool $returnResult Whether to return a result or throw an exception
|
||
|
*
|
||
|
* @return null|bool
|
||
|
*
|
||
|
* @throws PHPUnit_Framework_ExpectationFailedException
|
||
|
*/
|
||
|
public function evaluate($other, $description = '', $returnResult = false)
|
||
|
{
|
||
|
$success = true;
|
||
|
|
||
|
foreach ($other as $item) {
|
||
|
if (!$this->checkIfItemEvaluatesRemainingMatches($item)) {
|
||
|
$this->itemNotMatching = true;
|
||
|
$success = false;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//we have remaining matches?
|
||
|
if (!$this->itemNotMatching && count($this->matches) !== 0) {
|
||
|
$success = false;
|
||
|
$this->hasLeftoverItems = true;
|
||
|
}
|
||
|
|
||
|
if ($returnResult) {
|
||
|
return $success;
|
||
|
}
|
||
|
|
||
|
if (!$success) {
|
||
|
$this->fail($other, $description);
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
protected function getStubForToString()
|
||
|
{
|
||
|
return $this->itemNotMatching
|
||
|
? parent::getStubForToString()
|
||
|
: " contained only the given items, the following items were left over:\n";
|
||
|
}
|
||
|
}
|