Skip to content

Commit 385ffbe

Browse files
committed
Initial commit
0 parents  commit 385ffbe

25 files changed

+854
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.yml]
12+
indent_style = space
13+
indent_size = 2

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.idea
2+
composer.phar
3+
composer.lock
4+
/vendor/

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 SWIS BV
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Fixture client for PHP-HTTP
2+
3+
[![PHP from Packagist](https://img.shields.io/packagist/php-v/swisnl/php-http-fixture-client.svg)](https://packagist.org/packages/swisnl/php-http-fixture-client)
4+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/swisnl/php-http-fixture-client.svg)](https://packagist.org/packages/swisnl/php-http-fixture-client)
5+
[![Software License](https://img.shields.io/packagist/l/swisnl/php-http-fixture-client.svg)](LICENSE)
6+
[![Run Status](https://api.shippable.com/projects/5a7d7deb260fde0600abe59e/badge?branch=master)](https://app.shippable.com/github/swisnl/php-http-fixture-client)
7+
[![Coverage Badge](https://api.shippable.com/projects/5a7d7deb260fde0600abe59e/coverageBadge?branch=master)](https://app.shippable.com/github/swisnl/php-http-fixture-client)

composer.json

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"name": "swisnl/php-http-fixture-client",
3+
"description": "Fixture client for PHP-HTTP",
4+
"type": "library",
5+
"keywords": [
6+
"swisnl",
7+
"swis",
8+
"php-http",
9+
"fixture",
10+
"client",
11+
"psr-7"
12+
],
13+
"homepage": "https://github.com/swisnl/php-http-fixture-client",
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "Jasper Zonneveld",
18+
"email": "[email protected]",
19+
"homepage": "https://www.swis.nl/over-ons/jasper-zonneveld",
20+
"role": "Developer"
21+
}
22+
],
23+
"require": {
24+
"php": "^7.0",
25+
"danielstjules/stringy": "^3.1",
26+
"php-http/discovery": "^1.4",
27+
"php-http/mock-client": "^1.1",
28+
"psr/http-message": "^1.0"
29+
},
30+
"require-dev": {
31+
"friendsofphp/php-cs-fixer": "^2.10",
32+
"php-http/guzzle6-adapter": "^1.1",
33+
"phpunit/phpunit": "^6.0"
34+
},
35+
"provide": {
36+
"php-http/async-client-implementation": "1.0",
37+
"php-http/client-implementation": "1.0"
38+
},
39+
"autoload": {
40+
"psr-4": {
41+
"Swis\\Http\\Fixture\\": "src/"
42+
}
43+
},
44+
"autoload-dev": {
45+
"psr-4" : {
46+
"Swis\\Http\\Fixture\\Tests\\" : "tests/"
47+
}
48+
},
49+
"scripts": {
50+
"test": "phpunit",
51+
"check-style": "php-cs-fixer fix --dry-run -v",
52+
"fix-style": "php-cs-fixer fix"
53+
},
54+
"config": {
55+
"sort-packages": true
56+
}
57+
}

phpunit.xml.dist

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<phpunit backupGlobals="false"
4+
backupStaticAttributes="false"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false"
11+
syntaxCheck="false"
12+
bootstrap="./vendor/autoload.php"
13+
>
14+
<testsuites>
15+
<testsuite name="Client Test Suite">
16+
<directory>./tests/</directory>
17+
</testsuite>
18+
</testsuites>
19+
20+
<filter>
21+
<whitelist>
22+
<directory suffix=".php">./src/</directory>
23+
</whitelist>
24+
</filter>
25+
</phpunit>

shippable.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: php
2+
3+
php:
4+
- "7.0"
5+
- "7.1"
6+
7+
build:
8+
ci:
9+
# Setup
10+
- composer global require hirak/prestissimo
11+
- mkdir -p shippable/testresults
12+
- mkdir -p shippable/codecoverage
13+
14+
# Install
15+
- composer install
16+
17+
# Tests
18+
- vendor/bin/phpunit --log-junit shippable/testresults/junit.xml --coverage-xml shippable/codecoverage

src/Client.php

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?php
2+
3+
namespace Swis\Http\Fixture;
4+
5+
use Http\Message\ResponseFactory;
6+
use Http\Mock\Client as MockClient;
7+
use Psr\Http\Message\RequestInterface;
8+
9+
class Client extends MockClient
10+
{
11+
/**
12+
* @var \Swis\Http\Fixture\ResponseBuilderInterface
13+
*/
14+
protected $fixtureResponseBuilder;
15+
16+
/**
17+
* @param \Swis\Http\Fixture\ResponseBuilderInterface $fixtureResponseBuilder
18+
* @param \Http\Message\ResponseFactory|null $responseFactory
19+
*/
20+
public function __construct(ResponseBuilderInterface $fixtureResponseBuilder, ResponseFactory $responseFactory = null)
21+
{
22+
parent::__construct($responseFactory);
23+
24+
$this->fixtureResponseBuilder = $fixtureResponseBuilder;
25+
}
26+
27+
/**
28+
* @param \Psr\Http\Message\RequestInterface $request
29+
*
30+
* @throws \Http\Client\Exception
31+
* @throws \Exception
32+
*
33+
* @return \Psr\Http\Message\ResponseInterface|mixed|null
34+
*/
35+
public function sendRequest(RequestInterface $request)
36+
{
37+
$this->setDefaultResponse($this->fixtureResponseBuilder->build($request));
38+
39+
return parent::sendRequest($request);
40+
}
41+
}

src/MockNotFoundException.php

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?php
2+
3+
namespace Swis\Http\Fixture;
4+
5+
class MockNotFoundException extends \Exception
6+
{
7+
/**
8+
* @var array
9+
*/
10+
protected $possiblePaths;
11+
12+
/**
13+
* @param string $message
14+
* @param array $possiblePaths
15+
* @param int $code
16+
* @param \Throwable|null $previous
17+
*/
18+
public function __construct(string $message = '', array $possiblePaths = [], int $code = 0, \Throwable $previous = null)
19+
{
20+
$this->possiblePaths = $possiblePaths;
21+
22+
parent::__construct($message, $code, $previous);
23+
}
24+
25+
/**
26+
* @return array
27+
*/
28+
public function getPossiblePaths(): array
29+
{
30+
return $this->possiblePaths;
31+
}
32+
}

0 commit comments

Comments
 (0)