-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathTestHttpClient.php
90 lines (78 loc) · 2.41 KB
/
TestHttpClient.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
/*
* OpenWeatherMap-PHP-API — A PHP API to parse weather data from https://OpenWeatherMap.org.
*
* @license MIT
*
* Please see the LICENSE file distributed with this source code for further
* information regarding copyright and licensing.
*
* Please visit the following links to read about the usage policies and the license of
* OpenWeatherMap data before using this library:
*
* @see https://OpenWeatherMap.org/price
* @see https://OpenWeatherMap.org/terms
* @see https://OpenWeatherMap.org/appid
*/
namespace Cmfcmf\OpenWeatherMap\Tests;
use Psr\Http\Client\ClientInterface;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
use Http\Factory\Guzzle\ResponseFactory;
use GuzzleHttp\Psr7;
class TestHttpClient implements ClientInterface
{
/**
* @var ResponseFactory
*/
private $responseFactory;
/**
* @var int
*/
private $errorWithStatusCode;
public function __construct()
{
$this->responseFactory = new ResponseFactory();
$this->errorWithStatusCode = null;
}
public function sendRequest(RequestInterface $request): ResponseInterface
{
$url = $request->getUri();
$format = strpos($url, 'json') !== false ? 'json' : 'xml';
$content = "";
if (strpos($url, 'forecast') !== false) {
$content = $this->forecast($format);
} elseif (strpos($url, 'group') !== false) {
$content = $this->group($format);
} elseif (strpos($url, "pollution") !== false) {
$content = FakeData::AIR_POLLUTION_CO;
} else {
$content = $this->currentWeather($format);
}
$response = $this->responseFactory->createResponse($this->errorWithStatusCode !== null ? $this->errorWithStatusCode : 200);
$this->errorWithStatusCode = null;
return $response->withBody(Psr7\stream_for($content));
}
public function returnErrorForNextRequest($code)
{
$this->errorWithStatusCode = $code;
}
private function currentWeather($format)
{
if ($format == 'xml') {
return FakeData::CURRENT_WEATHER_XML;
}
}
private function forecast($format)
{
if ($format == 'xml') {
return FakeData::forecastXML();
}
}
private function group($format)
{
if ($format == 'json') {
return FakeData::WEATHER_GROUP_JSON;
}
}
}