Skip to content

Commit

Permalink
Merge pull request #403 from tienvx/add-includes-matcher-class
Browse files Browse the repository at this point in the history
refactor: Add Includes matcher class
  • Loading branch information
tienvx authored Dec 17, 2023
2 parents 3a9db0a + e6dd3de commit 2bc7099
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/PhpPact/Consumer/Matcher/Matchers/Includes.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php

namespace PhpPact\Consumer\Matcher\Matchers;

use PhpPact\Consumer\Matcher\Model\MatcherInterface;

/**
* This checks if the string representation of a value contains the substring.
*/
class Includes implements MatcherInterface
{
public function __construct(private string $value)
{
}

/**
* @return array<string, string>
*/
public function jsonSerialize(): array
{
return [
'pact:matcher:type' => $this->getType(),
'value' => $this->value,
];
}

public function getType(): string
{
return 'include';
}
}
18 changes: 18 additions & 0 deletions tests/PhpPact/Consumer/Matcher/Matchers/IncludesTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

namespace PhpPactTest\Consumer\Matcher\Matchers;

use PhpPact\Consumer\Matcher\Matchers\Includes;
use PHPUnit\Framework\TestCase;

class IncludesTest extends TestCase
{
public function testSerialize(): void
{
$string = new Includes('contains this string');
$this->assertSame(
'{"pact:matcher:type":"include","value":"contains this string"}',
json_encode($string)
);
}
}

0 comments on commit 2bc7099

Please sign in to comment.