Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
6 / 6 |
CRAP | |
100.00% |
11 / 11 |
RegexMatchExpectation | |
100.00% |
1 / 1 |
|
100.00% |
6 / 6 |
7 | |
100.00% |
11 / 11 |
__construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
jsonSerialize | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
getType | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
expect | |
100.00% |
1 / 1 |
2 | |
100.00% |
3 / 3 |
|||
getPattern | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
setPattern | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
<?php | |
/** | |
* Copyright (c) Tony Bogdanov <tonybogdanov@gmail.com> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ | |
namespace DataExpectation; | |
use DataExpectation\Exceptions\UnexpectedDataException; | |
/** | |
* Class RegexMatchExpectation | |
* | |
* @package DataExpectation | |
* @author Tony Bogdanov <tonybogdanov@gmail.com> | |
*/ | |
class RegexMatchExpectation extends AbstractExpectation { | |
/** | |
* @var string | |
*/ | |
protected $pattern; | |
/** | |
* RegexMatchExpectation constructor. | |
* | |
* @param string $pattern | |
*/ | |
public function __construct( string $pattern ) { | |
$this->setPattern( $pattern ); | |
} | |
/** | |
* @return array | |
*/ | |
public function jsonSerialize(): array { | |
return array_replace( parent::jsonSerialize(), [ | |
'expectationArguments' => [ $this->pattern ], | |
] ); | |
} | |
/** | |
* @return string | |
*/ | |
public function getType(): string { | |
return 'regexMatch = ' . $this->getPattern(); | |
} | |
/** | |
* @param $data | |
* @param string|null $path | |
* | |
* @return $this | |
* @throws UnexpectedDataException | |
*/ | |
public function expect( $data, string $path = null ) { | |
if ( ! preg_match( $this->getPattern(), $data ) ) { | |
throw new UnexpectedDataException( $data, $this, $path ); | |
} | |
return $this; | |
} | |
/** | |
* @return string | |
*/ | |
public function getPattern(): string { | |
return $this->pattern; | |
} | |
/** | |
* @param string $pattern | |
* | |
* @return $this | |
*/ | |
public function setPattern( string $pattern ) { | |
$this->pattern = $pattern; | |
return $this; | |
} | |
} |