-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostcodeIo_test.go
104 lines (90 loc) · 3.46 KB
/
postcodeIo_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
package main
import (
"encoding/json"
"fmt"
"github.com/beemi/postcode-io-tests-golang/internal/config"
"github.com/stretchr/testify/assert"
"io"
"log"
"net/http"
"strings"
"testing"
)
// PostCodeIO payload structure for response
type PostCodeIO struct {
Status int `json:"status"`
Result Result `json:"result"`
}
// Result is the Postcode Io
type Result struct {
Postcode string `json:"postcode"`
Quality int64 `json:"quality"`
Eastings int64 `json:"eastings"`
Northings int64 `json:"northings"`
Country string `json:"country"`
NhsHa string `json:"nhs_ha"`
Longitude float64 `json:"longitude"`
Latitude float64 `json:"latitude"`
EuropeanElectoralRegion string `json:"european_electoral_region"`
PrimaryCareTrust string `json:"primary_care_trust"`
Region string `json:"region"`
Lsoa string `json:"lsoa"`
Msoa string `json:"msoa"`
Incode string `json:"incode"`
Outcode string `json:"outcode"`
ParliamentaryConstituency string `json:"parliamentary_constituency"`
AdminDistrict string `json:"admin_district"`
Parish string `json:"parish"`
AdminCounty interface{} `json:"admin_county"`
AdminWard string `json:"admin_ward"`
Ced interface{} `json:"ced"`
Ccg string `json:"ccg"`
Nuts string `json:"nuts"`
Codes Codes `json:"codes"`
}
// Codes postcode response codes
type Codes struct {
AdminDistrict string `json:"admin_district"`
AdminCounty string `json:"admin_county"`
AdminWard string `json:"admin_ward"`
Parish string `json:"parish"`
ParliamentaryConstituency string `json:"parliamentary_constituency"`
Ccg string `json:"ccg"`
Ced string `json:"ced"`
Nuts string `json:"nuts"`
}
// TestPostCodeLatLong test validate lat long validation
// Validate Json schema validation from file from local disk using gojsonschema package
// Assert response using testify package
func TestPostCodeLatLong(t *testing.T) {
testPostcode := "RM17 6EY"
url := config.PostCodeIOEndPoint() + "/postcodes/%s"
method := "GET"
// add postcode to url
url = fmt.Sprintf(url, testPostcode)
payload := strings.NewReader("")
client := &http.Client{}
req, err := http.NewRequest(method, url, payload)
//assert ensure no error
assert.NoError(t, err)
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
assert.NoError(t, err)
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
}
}(res.Body)
assert.Equal(t, 200, res.StatusCode, "Get Postcode lat long Api failed")
body, err := io.ReadAll(res.Body)
log.Printf("Response Body: \n %s", string(body))
//assert ensure no error
assert.NoError(t, err)
var postCodeResponse PostCodeIO
//Json Unmarshal
err = json.Unmarshal(body, &postCodeResponse)
assert.NoError(t, err)
//validate response objects with assertions
assert.Equal(t, 200, postCodeResponse.Status)
assert.Equal(t, testPostcode, postCodeResponse.Result.Postcode, "result.postcode value is wrong")
}