-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
369 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit bootstrap="../../../vendor/autoload.php" colors="true"> | ||
<testsuites> | ||
<testsuite name="PhpPact Example Tests"> | ||
<directory>./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<php> | ||
<env name="PACT_LOGLEVEL" value="DEBUG"/> | ||
</php> | ||
</phpunit> |
40 changes: 40 additions & 0 deletions
40
example/form-urlencoded/consumer/src/Service/HttpClientService.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
|
||
namespace FormUrlEncodedConsumer\Service; | ||
|
||
use GuzzleHttp\Client; | ||
use GuzzleHttp\Psr7\Uri; | ||
|
||
class HttpClientService | ||
{ | ||
private Client $httpClient; | ||
|
||
private string $baseUri; | ||
|
||
public function __construct(string $baseUri) | ||
{ | ||
$this->httpClient = new Client(); | ||
$this->baseUri = $baseUri; | ||
} | ||
|
||
public function createUser(): string | ||
{ | ||
$response = $this->httpClient->post(new Uri("{$this->baseUri}/users"), [ | ||
'body' => http_build_query([ | ||
'empty' => '', | ||
'agree' => 'true', | ||
'fullname' => 'First Last Name', | ||
'email' => '[email protected]', | ||
'password' => 'very@secure&password123', | ||
'age' => 41, | ||
]) . | ||
'&roles[]=User&roles[]=Manager', | ||
'headers' => [ | ||
'Accept' => 'application/json', | ||
'Content-Type' => 'application/x-www-form-urlencoded', | ||
], | ||
]); | ||
|
||
return $response->getBody(); | ||
} | ||
} |
81 changes: 81 additions & 0 deletions
81
example/form-urlencoded/consumer/tests/Service/HttpClientServiceTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<?php | ||
|
||
namespace FormUrlEncodedConsumer\Tests\Service; | ||
|
||
use PhpPact\Consumer\Matcher\Matcher; | ||
use FormUrlEncodedConsumer\Service\HttpClientService; | ||
use PhpPact\Consumer\InteractionBuilder; | ||
use PhpPact\Consumer\Model\Body\Text; | ||
use PhpPact\Consumer\Model\ConsumerRequest; | ||
use PhpPact\Consumer\Model\ProviderResponse; | ||
use PhpPact\Standalone\MockService\MockServerConfig; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class HttpClientServiceTest extends TestCase | ||
{ | ||
public function testGetMovies() | ||
{ | ||
$matcher = new Matcher(); | ||
|
||
$request = new ConsumerRequest(); | ||
$request | ||
->setMethod('POST') | ||
->setPath('/users') | ||
->addHeader('Content-Type', 'application/x-www-form-urlencoded') | ||
->addHeader('Accept', 'application/json') | ||
->setBody( | ||
new Text( | ||
json_encode([ | ||
'null' => $matcher->nullValue(), | ||
'empty' => $matcher->equal(''), | ||
'agree' => $matcher->regex('false', 'true|false'), | ||
'fullname' => $matcher->string('User name'), | ||
'email' => $matcher->email('[email protected]'), | ||
'password' => $matcher->regex('user@password111', '^[\w\d@$!%*#?&^_-]{8,}$'), | ||
'age' => $matcher->number(27), | ||
'roles[]' => $matcher->eachValue(['User'], [$matcher->regex('User', 'Admin|User|Manager')]), | ||
// Boolean value is not supported, and will panic | ||
// 'boolean' => $matcher->booleanV3(true), | ||
// Object value is not supported, and will panic | ||
// 'object' => $matcher->like([ | ||
// 'key' => $matcher->string('value',) | ||
// ]), | ||
]), | ||
'application/x-www-form-urlencoded' | ||
) | ||
) | ||
; | ||
|
||
$response = new ProviderResponse(); | ||
$response | ||
->setStatus(201) | ||
->addHeader('Content-Type', 'application/json') | ||
->setBody([ | ||
'id' => $matcher->uuid('6e58b1df-ff80-4031-b7b9-5191e4c74ee8'), | ||
]); | ||
|
||
$config = new MockServerConfig(); | ||
$config | ||
->setConsumer('formUrlEncodedConsumer') | ||
->setProvider('formUrlEncodedProvider') | ||
->setPactDir(__DIR__.'/../../../pacts'); | ||
if ($logLevel = \getenv('PACT_LOGLEVEL')) { | ||
$config->setLogLevel($logLevel); | ||
} | ||
$builder = new InteractionBuilder($config); | ||
$builder | ||
->given('Endpoint is protected') | ||
->uponReceiving('A post request to /users') | ||
->with($request) | ||
->willRespondWith($response); | ||
|
||
$service = new HttpClientService($config->getBaseUri()); | ||
$body = json_decode($service->createUser(), true); | ||
$verifyResult = $builder->verify(); | ||
|
||
$this->assertTrue($verifyResult); | ||
$this->assertArrayHasKey('id', $body); | ||
$pattern = Matcher::UUID_V4_FORMAT; | ||
$this->assertEquals(1, preg_match("/{$pattern}/", $body['id'])); | ||
} | ||
} |
137 changes: 137 additions & 0 deletions
137
example/form-urlencoded/pacts/formUrlEncodedConsumer-formUrlEncodedProvider.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
{ | ||
"consumer": { | ||
"name": "formUrlEncodedConsumer" | ||
}, | ||
"interactions": [ | ||
{ | ||
"description": "A post request to /users", | ||
"providerStates": [ | ||
{ | ||
"name": "Endpoint is protected" | ||
} | ||
], | ||
"request": { | ||
"body": "age=27&agree=false&email=user%40email.test&empty=&fullname=User+name&password=user%40password111&roles%5B%5D=User", | ||
"headers": { | ||
"Accept": "application/json", | ||
"Content-Type": "application/x-www-form-urlencoded" | ||
}, | ||
"matchingRules": { | ||
"body": { | ||
"$.age": { | ||
"combine": "AND", | ||
"matchers": [ | ||
{ | ||
"match": "number" | ||
} | ||
] | ||
}, | ||
"$.agree": { | ||
"combine": "AND", | ||
"matchers": [ | ||
{ | ||
"match": "regex", | ||
"regex": "true|false" | ||
} | ||
] | ||
}, | ||
"$.email": { | ||
"combine": "AND", | ||
"matchers": [ | ||
{ | ||
"match": "regex", | ||
"regex": "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$" | ||
} | ||
] | ||
}, | ||
"$.empty": { | ||
"combine": "AND", | ||
"matchers": [ | ||
{ | ||
"match": "equality" | ||
} | ||
] | ||
}, | ||
"$.fullname": { | ||
"combine": "AND", | ||
"matchers": [ | ||
{ | ||
"match": "type" | ||
} | ||
] | ||
}, | ||
"$.null": { | ||
"combine": "AND", | ||
"matchers": [ | ||
{ | ||
"match": "null" | ||
} | ||
] | ||
}, | ||
"$.password": { | ||
"combine": "AND", | ||
"matchers": [ | ||
{ | ||
"match": "regex", | ||
"regex": "^[\\w\\d@$!%*#?&^_-]{8,}$" | ||
} | ||
] | ||
}, | ||
"$['roles[]']": { | ||
"combine": "AND", | ||
"matchers": [ | ||
{ | ||
"match": "eachValue", | ||
"rules": [ | ||
{ | ||
"match": "regex", | ||
"regex": "Admin|User|Manager" | ||
} | ||
], | ||
"value": "[\"User\"]" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"method": "POST", | ||
"path": "/users" | ||
}, | ||
"response": { | ||
"body": { | ||
"id": "6e58b1df-ff80-4031-b7b9-5191e4c74ee8" | ||
}, | ||
"headers": { | ||
"Content-Type": "application/json" | ||
}, | ||
"matchingRules": { | ||
"body": { | ||
"$.id": { | ||
"combine": "AND", | ||
"matchers": [ | ||
{ | ||
"match": "regex", | ||
"regex": "^[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"status": 201 | ||
} | ||
} | ||
], | ||
"metadata": { | ||
"pactRust": { | ||
"ffi": "0.4.24", | ||
"mockserver": "1.2.10", | ||
"models": "1.2.5" | ||
}, | ||
"pactSpecification": { | ||
"version": "3.0.0" | ||
} | ||
}, | ||
"provider": { | ||
"name": "formUrlEncodedProvider" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit bootstrap="../../../vendor/autoload.php" colors="true"> | ||
<testsuites> | ||
<testsuite name="PhpPact Example Tests"> | ||
<directory>./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<php> | ||
<env name="PACT_LOGLEVEL" value="DEBUG"/> | ||
</php> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
use React\Http\Message\Response; | ||
use Psr\Http\Message\ServerRequestInterface; | ||
|
||
require __DIR__ . '/../../../../vendor/autoload.php'; | ||
|
||
$app = new FrameworkX\App(); | ||
|
||
$app->post('/users', function (ServerRequestInterface $request) { | ||
$response = new Response(); | ||
$auth = $request->getHeader('Authorization'); | ||
if ($auth != 'Bearer 1a2b3c4d5e6f7g8h9i0k') { | ||
$response->withStatus(403); | ||
} | ||
|
||
error_log(sprintf('request body: %s', (string) $request->getBody())); | ||
|
||
$response->getBody()->write(\json_encode(['id' => '49dcfd3f-a5c9-49cb-a09e-a40a1da936b9'])); | ||
|
||
return $response | ||
->withStatus(201) | ||
->withHeader('Content-Type', 'application/json'); | ||
}); | ||
|
||
$app->post('/pact-change-state', function (ServerRequestInterface $request) { | ||
return new Response(); | ||
}); | ||
|
||
$app->run(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
namespace FormUrlEncodedProvider\Tests; | ||
|
||
use GuzzleHttp\Psr7\Uri; | ||
use PhpPact\Standalone\ProviderVerifier\Model\VerifierConfig; | ||
use PhpPact\Standalone\ProviderVerifier\Verifier; | ||
use PhpPactTest\Helper\PhpProcess; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class PactVerifyTest extends TestCase | ||
{ | ||
private PhpProcess $process; | ||
|
||
protected function setUp(): void | ||
{ | ||
$this->process = new PhpProcess(__DIR__ . '/../public/'); | ||
$this->process->start(); | ||
} | ||
|
||
protected function tearDown(): void | ||
{ | ||
$this->process->stop(); | ||
} | ||
|
||
/** | ||
* This test will run after the web server is started. | ||
*/ | ||
public function testPactVerifyConsumer() | ||
{ | ||
$config = new VerifierConfig(); | ||
$config->getProviderInfo() | ||
->setName('formUrlEncodedProvider') // Providers name to fetch. | ||
->setHost('localhost') | ||
->setPort($this->process->getPort()); | ||
$config->getProviderState() | ||
->setStateChangeUrl(new Uri(sprintf('http://localhost:%d/pact-change-state', $this->process->getPort()))) | ||
; | ||
$config->getCustomHeaders() | ||
->addHeader('Authorization', 'Bearer 1a2b3c4d5e6f7g8h9i0k'); | ||
if ($level = \getenv('PACT_LOGLEVEL')) { | ||
$config->setLogLevel($level); | ||
} | ||
|
||
$verifier = new Verifier($config); | ||
$verifier->addFile(__DIR__ . '/../../pacts/formUrlEncodedConsumer-formUrlEncodedProvider.json'); | ||
|
||
$verifyResult = $verifier->verify(); | ||
|
||
$this->assertTrue($verifyResult); | ||
} | ||
} |