-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathapi_spec.rb
More file actions
228 lines (198 loc) · 7.28 KB
/
api_spec.rb
File metadata and controls
228 lines (198 loc) · 7.28 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
describe 'Open weather Current API' do
context '.city' do
it 'return current weather for cochi' do
response = VCR.use_cassette('api/current_city_valid') do
OpenWeather::Current.city('Cochin, In')
end
response['cod'].should eq(200)
end
it 'returns error if the city is invalid' do
response = VCR.use_cassette('api/current_city_invalid') do
OpenWeather::Current.city('Cochiiiiiin, In')
end
response['cod'].should eq('404')
end
end
context '.city_id' do
it 'return current weather for city id of cochi' do
response = VCR.use_cassette('api/current_city_id_valid') do
OpenWeather::Current.city_id('1273874')
end
response['cod'].should eq(200)
end
it 'returns error if the city id is invalid' do
response = VCR.use_cassette('api/current_city_id_invalid') do
OpenWeather::Current.city('invalidid')
end
response['cod'].should eq('404')
end
end
context '.geocode' do
it 'return current weather for geocode of cochi' do
response = VCR.use_cassette('api/current_geocode_valid') do
OpenWeather::Current.geocode('9.94', '76.26')
end
response['cod'].should eq(200)
end
it 'returns error if the geocode is invalid' do
response = VCR.use_cassette('api/current_geocode_invalid') do
OpenWeather::Current.geocode('181', '181')
end
response['cod'].should eq('404')
end
end
context 'units option' do
it 'returns the current temperature in requested units' do
response = VCR.use_cassette('api/current_city_metric_valid') do
OpenWeather::Current.city('Cochin, In', units: 'metric')
end
temp_metric = response['main']['temp']
response = VCR.use_cassette('api/current_city_imperial_valid') do
OpenWeather::Current.city('Cochin, In', units: 'imperial')
end
temp_imperial = response['main']['temp']
farenheit_to_celsius = ((temp_imperial - 32) / 1.8000)
expect(farenheit_to_celsius).to be_within(0.01).of(temp_metric)
end
end
end
describe 'Open weather Forecast API' do
context '.city' do
it 'return forecast weather for cochi' do
response = VCR.use_cassette('api/forecast_city_valid') do
OpenWeather::Forecast.city('Cochin, In')
end
response['cod'].to_s.should eq('200')
end
it 'returns error if the city is invalid' do
response = VCR.use_cassette('api/forecast_invalid') do
OpenWeather::Forecast.city('Cochiiiiiin, In')
end
response['cod'].to_s.should eq('404')
end
it 'returns error if json parse error' do
response = VCR.use_cassette('api/forecast_json_parse_error') do
OpenWeather::Forecast.city('Cochin, In')
end
response['cod'].to_s.should eq('500')
end
it 'returns error if server return 500' do
response = VCR.use_cassette('api/forecast_server_error') do
OpenWeather::Forecast.city('Cochin, In')
end
response['cod'].to_s.should eq('500')
end
end
context '.city_id' do
it 'return forecast weather for city id of cochi' do
response = VCR.use_cassette('api/forecast_city_id_valid') do
OpenWeather::Forecast.city_id('1273874')
end
response['cod'].to_s.should eq('200')
end
it 'returns error if the city id is invalid' do
response = VCR.use_cassette('api/forecast_city_id_invalid') do
OpenWeather::Forecast.city('invalidid')
end
response['cod'].to_s.should eq('404')
end
end
context '.geocode' do
it 'return forecast weather for geocode of cochi' do
response = VCR.use_cassette('api/forecast_geocode_valid') do
OpenWeather::Forecast.geocode('9.94', '76.26')
end
response['cod'].to_s.should eq('200')
end
it 'returns error if the geocode is invalid' do
response = VCR.use_cassette('api/forecast_geocode_invalid') do
OpenWeather::Forecast.geocode('181', '181')
end
response['cod'].to_s.should eq('404')
end
end
context 'units option' do
it 'returns the forecast in requested units' do
response = VCR.use_cassette('api/forecast_city_metric_valid') do
OpenWeather::Forecast.city('Cochin, In', units: 'metric')
end
temp_metric = response['list'].first['main']['temp']
response = VCR.use_cassette('api/forecast_city_imperial_valid') do
OpenWeather::Forecast.city('Cochin, In', units: 'imperial')
end
temp_imperial = response['list'].first['main']['temp']
farenheit_to_celsius = ((temp_imperial - 32) / 1.8000)
expect(farenheit_to_celsius).to be_within(temp_metric-1).of(temp_metric+1)
end
end
end
describe 'Open weather Forecast Daily API' do
context '.city' do
it 'return forecast weather for cochi' do
response = VCR.use_cassette('api/forecast_daily_city_valid') do
OpenWeather::ForecastDaily.city('Cochin, In')
end
response['cod'].to_s.should eq('200')
end
it 'returns error if the city is invalid' do
response = VCR.use_cassette('api/forecast_daily_invalid') do
OpenWeather::ForecastDaily.city('Cochiiiiiin, In')
end
response['cod'].to_s.should eq('404')
end
end
context '.city_id' do
it 'return forecast weather for city id of cochi' do
response = VCR.use_cassette('api/forecast_daily_city_id_valid') do
OpenWeather::ForecastDaily.city_id('1273874')
end
response['cod'].to_s.should eq('200')
end
it 'returns error if the city id is invalid' do
response = VCR.use_cassette('api/forecast_daily_city_id_invalid') do
OpenWeather::ForecastDaily.city('invalidid')
end
response['cod'].to_s.should eq('404')
end
end
context '.geocode' do
it 'return forecast weather for geocode of cochi' do
response = VCR.use_cassette('api/forecast_daily_geocode_valid') do
OpenWeather::ForecastDaily.geocode('9.94', '76.26')
end
response['cod'].to_s.should eq('200')
end
it 'returns error if the geocode is invalid' do
response = VCR.use_cassette('api/forecast_daily_geocode_invalid') do
OpenWeather::ForecastDaily.geocode('181', '181')
end
response['cod'].to_s.should eq('404')
end
end
context 'units option' do
it 'returns the forecast in requested units' do
response = VCR.use_cassette('api/forecast_daily_city_metric_valid') do
OpenWeather::ForecastDaily.city('Cochin, In', units: 'metric')
end
temp_metric = response['list'].first['temp']['day']
response = VCR.use_cassette('api/forecast_daily_city_imperial_valid') do
OpenWeather::ForecastDaily.city('Cochin, In', units: 'imperial')
end
temp_imperial = response['list'].first['temp']['day']
farenheit_to_celsius = ((temp_imperial - 32) / 1.8000)
expect(farenheit_to_celsius).to be_within(temp_metric-1).of(temp_metric+1)
end
end
context 'cnt option' do
it 'returns the forecast for N days' do
response = VCR.use_cassette('api/forecast_daily_cnt_default') do
OpenWeather::ForecastDaily.city('Cochin, In')
end
response['list'].count.should eq(7)
response = VCR.use_cassette('api/forecast_daily_cnt_6') do
OpenWeather::ForecastDaily.city('Cochin, In', cnt: 6)
end
response['list'].count.should eq(6)
end
end
end