-
-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathOpenWeatherMapTest.php
208 lines (171 loc) · 6.79 KB
/
OpenWeatherMapTest.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?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 Cmfcmf\OpenWeatherMap;
use Cmfcmf\OpenWeatherMap\Exception;
use Cmfcmf\OpenWeatherMap\Tests\MyTestCase;
use Cmfcmf\OpenWeatherMap\Tests\TestHttpClient;
use Cache\Adapter\PHPArray\ArrayCachePool;
use Http\Factory\Guzzle\RequestFactory;
use Http\Adapter\Guzzle6\Client as GuzzleAdapter;
use Psr\SimpleCache\CacheInterface;
class OpenWeatherMapTest extends MyTestCase
{
/**
* @var string
*/
protected $apiKey;
/**
* @var OpenWeatherMap
*/
protected $owm;
/**
* @var OpenWeatherMap
*/
protected $openWeather;
/**
* @var CacheInterface
*/
protected $cache;
/**
* @var TestHttpClient
*/
protected $httpClient;
protected function setUp(): void
{
$ini = parse_ini_file(__DIR__.'/../Examples/ApiKey.ini');
$this->apiKey = $ini['api_key'];
$this->httpClient = new TestHttpClient();
$this->owm = new OpenWeatherMap($this->apiKey, $this->httpClient, new RequestFactory());
$this->openWeather = new OpenWeatherMap($this->apiKey, GuzzleAdapter::createWithConfig([]), new RequestFactory());
$this->cache = new ArrayCachePool();
}
public function testApiKeyNotNull()
{
$weather = $this->owm;
$apiKey = $weather->getApiKey();
$this->assertSame($this->apiKey, $apiKey);
}
public function testSetApiKey()
{
$weather = $this->owm;
$weather->setApiKey($this->apiKey);
$apiKey = $weather->getApiKey();
$this->assertSame($this->apiKey, $apiKey);
}
public function testGetApiKey()
{
$weather = $this->owm;
$apiKey = $weather->getApiKey();
$this->assertSame($this->apiKey, $apiKey);
}
public function testInvalidData()
{
$this->expectException(\Cmfcmf\OpenWeatherMap\Exception::class);
$this->httpClient->returnErrorForNextRequest(500);
$this->owm->getWeather('Berlin', 'imperial', 'en', '');
}
public function testGetWeather()
{
$currentWeather = $this->owm->getWeather('Berlin', 'imperial', 'en', '');
$this->assertInstanceOf('\Cmfcmf\OpenWeatherMap\CurrentWeather', $currentWeather);
}
public function testGetWeatherGroup()
{
$currentWeather = $this->owm->getWeatherGroup(array('2950159'), 'imperial', 'en', '');
$this->assertInstanceOf('\Cmfcmf\OpenWeatherMap\CurrentWeatherGroup', $currentWeather);
$currentWeather = $this->owm->getWeatherGroup('2950159', 'imperial', 'en', '');
$this->assertInstanceOf('\Cmfcmf\OpenWeatherMap\CurrentWeatherGroup', $currentWeather);
}
public function testGetWeatherForecast()
{
$days = 1;
$defaultDay = $this->owm->getWeatherForecast('Berlin', 'imperial', 'en', '', $days);
$days = 16;
$maxDay = $this->owm->getWeatherForecast('Berlin', 'imperial', 'en', '', $days);
$this->assertInstanceOf('\Cmfcmf\OpenWeatherMap\WeatherForecast', $defaultDay);
$this->assertInstanceOf('\Cmfcmf\OpenWeatherMap\WeatherForecast', $maxDay);
}
public function testGetCurrentUVIndex()
{
$owm = $this->openWeather;
$result = $owm->getCurrentUVIndex(40.7, -74.2);
$this->assertInstanceOf('\Cmfcmf\OpenWeatherMap\UVIndex', $result);
}
public function testGetForecastUVIndex()
{
$owm = $this->openWeather;
try {
$result = $owm->getForecastUVIndex(40.7, -74.2, 5);
} catch (Exception $e) {
// OWM might not actually have data for the timespan.
$this->assertSame('An error occurred: not found', $e->getMessage());
}
$this->assertContainsOnlyInstancesOf('\Cmfcmf\OpenWeatherMap\UVIndex', $result);
}
public function testGetHistoryUVIndex()
{
$owm = $this->openWeather;
try {
$start = new \DateTime('1969-08-15');
$end = new \DateTime('1969-08-18');
$result = $owm->getHistoricUVIndex(40.7, -74.2, $start, $end);
} catch (Exception $e) {
// OWM might not actually have data for the timespan.
$this->assertSame('An error occurred: not found', $e->getMessage());
}
$this->assertContainsOnlyInstancesOf('\Cmfcmf\OpenWeatherMap\UVIndex', $result);
}
public function testGetDailyWeatherForecast()
{
$days = 16;
$dailyForecast = $this->owm->getDailyWeatherForecast('Berlin', 'imperial', 'en', '', $days);
$this->assertInstanceOf('\Cmfcmf\OpenWeatherMap\WeatherForecast', $dailyForecast);
}
public function testGetAirPollution()
{
$airPollutionCurrent = $this->owm->getAirPollution("CO", "40", "-74", "current");
$this->assertInstanceOf(OpenWeatherMap\AirPollution\COAirPollution::class, $airPollutionCurrent);
$airPollutionPast = $this->owm->getAirPollution("CO", "40", "-74", "2016Z");
$this->assertInstanceOf(OpenWeatherMap\AirPollution\COAirPollution::class, $airPollutionPast);
}
public function testWasCached()
{
$weather = $this->owm;
$result = $weather->wasCached();
$this->assertFalse($result);
}
public function testCached()
{
$weather = new OpenWeatherMap($this->apiKey, new TestHttpClient(), new RequestFactory(), $this->cache, 600);
$currWeatherData = $weather->getRawWeatherData('Berlin', 'imperial', 'en', $this->apiKey, 'xml');
$this->assertFalse($weather->wasCached());
$cachedWeatherData = $weather->getRawWeatherData('Berlin', 'imperial', 'en', $this->apiKey, 'xml');
$this->assertTrue($weather->wasCached());
$this->assertInternalType('string', $currWeatherData);
$this->assertInternalType('string', $cachedWeatherData);
$this->assertSame($currWeatherData, $cachedWeatherData);
}
public function testBuildQueryUrlParameter()
{
$weather = $this->owm;
$queryWithNumbericArray = $weather->getWeather(array('2950159'), 'imperial', 'en', '');
$queryWithLatLonArray = $weather->getWeather(array('lat' => 52.524368, 'lon' => 13.410530), 'imperial', 'en', '');
$this->assertInstanceOf('\Cmfcmf\OpenWeatherMap\CurrentWeather', $queryWithNumbericArray);
$this->assertInstanceOf('\Cmfcmf\OpenWeatherMap\CurrentWeather', $queryWithLatLonArray);
}
}