Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Add Equality matcher class #390

Merged
merged 1 commit into from
Dec 13, 2023
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
31 changes: 31 additions & 0 deletions src/PhpPact/Consumer/Matcher/Matchers/Equality.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 is the default matcher, and relies on the equals operator
*/
class Equality implements MatcherInterface
{
/**
* @param object|array<mixed>|string|float|int|bool|null $value
*/
public function __construct(private object|array|string|float|int|bool|null $value)
{
}

public function jsonSerialize(): object
{
return (object) [
'pact:matcher:type' => $this->getType(),
'value' => $this->value
];
}

public function getType(): string
{
return 'equality';
}
}
10 changes: 10 additions & 0 deletions src/PhpPact/Consumer/Matcher/Model/MatcherInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

namespace PhpPact\Consumer\Matcher\Model;

use JsonSerializable;

interface MatcherInterface extends JsonSerializable
{
public function getType(): string;
}
18 changes: 18 additions & 0 deletions tests/PhpPact/Consumer/Matcher/Matchers/EqualityTest.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\Equality;
use PHPUnit\Framework\TestCase;

class EqualityTest extends TestCase
{
public function testSerialize(): void
{
$string = new Equality('exact this string');
$this->assertSame(
'{"pact:matcher:type":"equality","value":"exact this string"}',
json_encode($string)
);
}
}