Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ $matcher->getError(); // returns null or error message
* ``inArray($value)``
* ``oneOf(...$expanders)`` - example usage ``"@string@.oneOf(contains('foo'), contains('bar'), contains('baz'))"``
* ``matchRegex($regex)`` - example usage ``"@string@.matchRegex('/^lorem.+/')"``
* ``optional()`` - work's only with ``ArrayMatcher``, ``JsonMatcher`` and ``XmlMatcher``

##Example usage

Expand Down Expand Up @@ -237,7 +238,8 @@ $matcher->match(
'id' => 1,
'firstName' => 'Norbert',
'lastName' => 'Orzechowicz',
'roles' => array('ROLE_USER')
'roles' => array('ROLE_USER'),
'position' => 'Developer',
),
array(
'id' => 2,
Expand All @@ -261,7 +263,8 @@ $matcher->match(
'id' => '@integer@.greaterThan(0)',
'firstName' => '@string@',
'lastName' => 'Orzechowicz',
'roles' => '@array@'
'roles' => '@array@',
'position' => '@string@.optional()'
),
array(
'id' => '@integer@',
Expand Down Expand Up @@ -303,7 +306,8 @@ $matcher->match(
"firstName": @string@,
"lastName": @string@,
"created": "@string@.isDateTime()",
"roles": @array@
"roles": @array@,
"posiiton": "@string@.optional()"
}
]
}'
Expand Down Expand Up @@ -347,6 +351,7 @@ XML
<m:GetStockPrice>
<m:StockName>@string@</m:StockName>
<m:StockValue>@string@</m:StockValue>
<m:StockQty>@integer@.optional()</m:StockQty>
</m:GetStockPrice>
</soap:Body>

Expand Down
32 changes: 30 additions & 2 deletions src/Matcher/ArrayMatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Coduo\PHPMatcher\Matcher;

use Coduo\PHPMatcher\Exception\Exception;
use Coduo\PHPMatcher\Parser;
use Coduo\ToString\StringConverter;
use Symfony\Component\PropertyAccess\PropertyAccess;
Expand Down Expand Up @@ -153,19 +154,46 @@ function ($item) use ($skipPattern) {
}
);

$notExistingKeys = array_diff_key($pattern, $values);

$notExistingKeys = $this->findNotExistingKeys($pattern, $values);
if (count($notExistingKeys) > 0) {
$keyNames = array_keys($notExistingKeys);
$path = $this->formatFullPath($parentPath, $this->formatAccessPath($keyNames[0]));
$this->setMissingElementInError('value', $path);

return false;
}
}

return true;
}

/**
* Finds not existing keys
* Excludes keys with pattern which includes Optional Expander
*
* @param $pattern
* @param $values
* @return array
*/
private function findNotExistingKeys($pattern, $values)
{
$notExistingKeys = array_diff_key($pattern, $values);

return array_filter($notExistingKeys, function ($pattern) use ($values) {
if (is_array($pattern)) {
return !$this->match($values, $pattern);
}

try {
$typePattern = $this->parser->parse($pattern);
} catch (Exception $e) {
return true;
}

return !$typePattern->hasExpander('optional');
});
}

/**
* @param $value
* @param $pattern
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/Contains.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

final class Contains implements PatternExpander
{
const NAME = 'contains';

/**
* @var null|string
*/
Expand All @@ -22,6 +24,14 @@ final class Contains implements PatternExpander
*/
private $ignoreCase;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param $string
* @param bool $ignoreCase
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/Count.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

final class Count implements PatternExpander
{
const NAME = 'count';

/**
* @var null|string
*/
Expand All @@ -17,6 +19,14 @@ final class Count implements PatternExpander
*/
private $value;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param $value
*/
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/EndsWith.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

final class EndsWith implements PatternExpander
{
const NAME = 'endsWith';

/**
* @var
*/
Expand All @@ -22,6 +24,14 @@ final class EndsWith implements PatternExpander
*/
private $ignoreCase;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param string $stringEnding
* @param bool $ignoreCase
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/GreaterThan.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

final class GreaterThan implements PatternExpander
{
const NAME = 'greaterThan';

/**
* @var
*/
Expand All @@ -17,6 +19,14 @@ final class GreaterThan implements PatternExpander
*/
private $error;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param $boundary
*/
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/InArray.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

final class InArray implements PatternExpander
{
const NAME = 'inArray';

/**
* @var null|string
*/
Expand All @@ -17,6 +19,14 @@ final class InArray implements PatternExpander
*/
private $value;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param $value
*/
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/IsDateTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,21 @@

final class IsDateTime implements PatternExpander
{
const NAME = 'isDateTime';

/**
* @var null|string
*/
private $error;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param string $value
* @return boolean
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/IsEmail.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,21 @@

final class IsEmail implements PatternExpander
{
const NAME = 'isEmail';

/**
* @var null|string
*/
private $error;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param string $value
* @return boolean
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/IsEmpty.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,18 @@

final class IsEmpty implements PatternExpander
{
const NAME = 'isEmpty';

private $error;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param mixed $value
*
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/IsNotEmpty.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,18 @@

final class IsNotEmpty implements PatternExpander
{
const NAME = 'isNotEmpty';

private $error;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param $value
* @return boolean
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/IsUrl.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,21 @@

final class IsUrl implements PatternExpander
{
const NAME = 'isUrl';

/**
* @var null|string
*/
private $error;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param string $value
* @return boolean
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/LowerThan.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

final class LowerThan implements PatternExpander
{
const NAME = 'lowerThan';

/**
* @var
*/
Expand All @@ -17,6 +19,14 @@ final class LowerThan implements PatternExpander
*/
private $error;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param $boundary
*/
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/MatchRegex.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

final class MatchRegex implements PatternExpander
{
const NAME = 'matchRegex';

/**
* @var null|string
*/
Expand All @@ -17,6 +19,14 @@ final class MatchRegex implements PatternExpander
*/
private $pattern;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

/**
* @param string $pattern
*/
Expand Down
10 changes: 10 additions & 0 deletions src/Matcher/Pattern/Expander/OneOf.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,23 @@

final class OneOf implements PatternExpander
{
const NAME = 'oneOf';

/**
* @var PatternExpander[]
*/
protected $expanders;

protected $error;

/**
* {@inheritdoc}
*/
public static function is(string $name)
{
return self::NAME === $name;
}

public function __construct()
{
if (func_num_args() < 2) {
Expand Down
Loading