-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostcode_test.go
More file actions
83 lines (66 loc) · 2.43 KB
/
postcode_test.go
File metadata and controls
83 lines (66 loc) · 2.43 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
package postcode
import (
"github.com/previousdeveloper/postcodes-go-client/model"
"testing"
)
import "github.com/golang/mock/gomock"
import mock "github.com/previousdeveloper/postcodes-go-client/mocks"
//go:generate mockgen -destination=../mocks/mock-http-client-wrapper.go -source ../postcode/httpclient.go HttpClientWrapper
func TestPostCodeClient_LookupPostcode(t *testing.T) {
t.Parallel()
mockCtrl := gomock.NewController(t)
mockHttpClientWrapper := mock.NewMockHttpClientWrapper(mockCtrl)
text := "{\"status\": 200}"
bytes := []byte(text)
mockHttpClientWrapper.EXPECT().Get("postCode").Return(bytes)
configuration := &configuration{HttpClientWrapper: mockHttpClientWrapper}
newPostCode := NewPostCode(configuration)
postcodeResult := newPostCode.LookupPostcode("postCode")
if postcodeResult.Status != 200 {
t.Error("er")
}
}
func TestPostCodeClient_GetNearestPostPostcode(t *testing.T) {
t.Parallel()
mockCtrl := gomock.NewController(t)
mockHttpClientWrapper := mock.NewMockHttpClientWrapper(mockCtrl)
text := "{\"status\": 200}"
bytes := []byte(text)
mockHttpClientWrapper.EXPECT().Get("?lon=a&lat=b").Return(bytes)
configuration := &configuration{HttpClientWrapper: mockHttpClientWrapper}
newPostCode := NewPostCode(configuration)
result := newPostCode.GetNearestPostPostcode("a", "b")
if result.Status != 200 {
t.Error("er")
}
}
func TestPostCodeClient_BulkLookupPostcode(t *testing.T) {
t.Parallel()
mockCtrl := gomock.NewController(t)
mockHttpClientWrapper := mock.NewMockHttpClientWrapper(mockCtrl)
text := "{\"Status\": 200}"
bytes := []byte(text)
request := &model.BulkPostCodeRequest{}
configuration := &configuration{HttpClientWrapper: mockHttpClientWrapper}
mockHttpClientWrapper.EXPECT().Post(request).Return(bytes)
newPostCode := NewPostCode(configuration)
result := newPostCode.BulkLookupPostcode(request)
if result.Status != 200 {
t.Error("er")
}
}
func TestPostCodeClient_BulkReverseGeocoding(t *testing.T) {
t.Parallel()
mockCtrl := gomock.NewController(t)
mockHttpClientWrapper := mock.NewMockHttpClientWrapper(mockCtrl)
text := "{\"Status\": 200}"
bytes := []byte(text)
request := &model.BulkReverseGeocodingRequest{}
configuration := &configuration{HttpClientWrapper: mockHttpClientWrapper}
mockHttpClientWrapper.EXPECT().Post(request).Return(bytes)
newPostCode := NewPostCode(configuration)
result := newPostCode.BulkReverseGeocoding(request)
if result.Status != 200 {
t.Error("er")
}
}