-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.test.js
93 lines (90 loc) · 2.28 KB
/
weather.test.js
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
const WeatherAPI = require('./weather');
const config = require('./config.js');
const weather = new WeatherAPI();
test('PerformGetRequest', async () => {
let params = {
station: '00FAY',
start: '2022-09-25',
end: '2022-09-26'
}
let headers = {
'X-RapidAPI-Key': config.key, 'X-RapidAPI-Host': config.host
}
let json = await weather.PerformGetRequest(headers, params);
var expected = {
"meta": {
"generated": "2022-09-27 18:39:03"
},
"data": [
{
"date": "2022-09-25",
"tavg": 12.4,
"tmin": 5.8,
"tmax": 20,
"prcp": 0,
"snow": null,
"wdir": 243,
"wspd": 10.3,
"wpgt": null,
"pres": 1020.6,
"tsun": null
},
{
"date": "2022-09-26",
"tavg": 15.4,
"tmin": 9.9,
"tmax": 21.5,
"prcp": 0,
"snow": null,
"wdir": 236,
"wspd": 6.5,
"wpgt": null,
"pres": 1018.8,
"tsun": null
}
]
};
expect(json).toEqual(expected);
})
test('GetDailyWeather', async () => {
let params = {
station: '00FAY',
start: '2022-09-25',
end: '2022-09-26'
}
let json = await weather.GetDailyWeather(params);
var expected = {
"meta": {
"generated": "2022-09-27 18:39:03"
},
"data": [
{
"date": "2022-09-25",
"tavg": 12.4,
"tmin": 5.8,
"tmax": 20,
"prcp": 0,
"snow": null,
"wdir": 243,
"wspd": 10.3,
"wpgt": null,
"pres": 1020.6,
"tsun": null
},
{
"date": "2022-09-26",
"tavg": 15.4,
"tmin": 9.9,
"tmax": 21.5,
"prcp": 0,
"snow": null,
"wdir": 236,
"wspd": 6.5,
"wpgt": null,
"pres": 1018.8,
"tsun": null
}
]
};
expect(json).toEqual(expected);
})