-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather_test.go
249 lines (237 loc) · 5.06 KB
/
weather_test.go
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
package main
import (
"testing"
)
func TestGetUnit(t *testing.T) {
tests := []struct {
name string
unit string
want Unit
expectErr bool
}{
{
name: "valid metric unit",
unit: "metric",
want: UnitMetric,
expectErr: false,
},
{
name: "valid imperial unit",
unit: "imperial",
want: UnitImperial,
expectErr: false,
},
{
name: "invalid unit",
unit: "unknown",
want: "",
expectErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := GetUnit(tt.unit)
if (err != nil) != tt.expectErr {
t.Errorf("GetUnit() error = %v, expectErr %v", err, tt.expectErr)
return
}
if got != tt.want {
t.Errorf("GetUnit() = %v, want %v", got, tt.want)
}
})
}
}
func TestGetCity(t *testing.T) {
tests := []struct {
name string
countryCode string
cityName string
want City
expectErr bool
}{
{
name: "valid city",
countryCode: "US",
cityName: "New York",
want: City{ID: 5128581, Name: "New York", Country: "US"},
expectErr: false,
},
{
name: "invalid city",
countryCode: "US",
cityName: "Unknown City",
want: City{},
expectErr: true,
},
{
name: "invalid country code",
countryCode: "XX",
cityName: "New York",
want: City{},
expectErr: true,
},
}
// Mock the citiesList for testing
citiesList = []byte(`[
{"id": 5128581, "name": "New York", "country": "US"},
{"id": 2643743, "name": "London", "country": "GB"}
]`)
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := GetCity(tt.countryCode, tt.cityName)
if (err != nil) != tt.expectErr {
t.Errorf("GetCity() error = %v, expectErr %v", err, tt.expectErr)
return
}
if got != tt.want {
t.Errorf("GetCity() = %v, want %v", got, tt.want)
}
})
}
}
func TestCities_Get(t *testing.T) {
tests := []struct {
name string
cities Cities
countryCode string
cityName string
want City
}{
{
name: "city found",
cities: Cities{
{ID: 5128581, Name: "New York", Country: "US"},
{ID: 2643743, Name: "London", Country: "GB"},
},
countryCode: "US",
cityName: "New York",
want: City{ID: 5128581, Name: "New York", Country: "US"},
},
{
name: "city not found",
cities: Cities{
{ID: 5128581, Name: "New York", Country: "US"},
{ID: 2643743, Name: "London", Country: "GB"},
},
countryCode: "US",
cityName: "Unknown City",
want: City{},
},
{
name: "country code not found",
cities: Cities{
{ID: 5128581, Name: "New York", Country: "US"},
{ID: 2643743, Name: "London", Country: "GB"},
},
countryCode: "XX",
cityName: "New York",
want: City{},
},
{
name: "case insensitive match",
cities: Cities{
{ID: 5128581, Name: "New York", Country: "US"},
{ID: 2643743, Name: "London", Country: "GB"},
},
countryCode: "us",
cityName: "new york",
want: City{ID: 5128581, Name: "New York", Country: "US"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.cities.Get(tt.countryCode, tt.cityName)
if got != tt.want {
t.Errorf("Cities.Get() = %v, want %v", got, tt.want)
}
})
}
}
func TestWeather_UnitIcon(t *testing.T) {
tests := []struct {
name string
weather Weather
want string
}{
{
name: "metric unit",
weather: Weather{Unit: UnitMetric},
want: CelsiusIcon,
},
{
name: "imperial unit",
weather: Weather{Unit: UnitImperial},
want: FahrenheitIcon,
},
{
name: "unknown unit",
weather: Weather{Unit: "unknown"},
want: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.weather.UnitIcon(); got != tt.want {
t.Errorf("Weather.UnitIcon() = %v, want %v", got, tt.want)
}
})
}
}
func TestWindDirections_Get(t *testing.T) {
tests := []struct {
name string
windDirs WindDirections
windDirDeg float32
want string
}{
{
name: "exact north",
windDirs: windDirections,
windDirDeg: 0.0,
want: "N",
},
{
name: "north-northeast",
windDirs: windDirections,
windDirDeg: 22.5,
want: "NNE",
},
{
name: "east",
windDirs: windDirections,
windDirDeg: 90.0,
want: "E",
},
{
name: "south-southwest",
windDirs: windDirections,
windDirDeg: 202.5,
want: "SSW",
},
{
name: "west-northwest",
windDirs: windDirections,
windDirDeg: 292.5,
want: "WNW",
},
{
name: "exact north again",
windDirs: windDirections,
windDirDeg: 360.0,
want: "N",
},
{
name: "out of range",
windDirs: windDirections,
windDirDeg: 400.0,
want: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.windDirs.Get(tt.windDirDeg); got != tt.want {
t.Errorf("WindDirections.Get() = %v, want %v", got, tt.want)
}
})
}
}