-
Notifications
You must be signed in to change notification settings - Fork 2
/
utils_test.go
138 lines (118 loc) · 3.34 KB
/
utils_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
package giniapi
import (
"context"
"fmt"
"io/ioutil"
"testing"
)
// Test helpers
func assertEqual(t *testing.T, a interface{}, b interface{}, message string) {
if a == b {
return
}
if len(message) == 0 {
message = fmt.Sprintf("%v != %v", a, b)
}
t.Fatal(message)
}
func assertNotEqual(t *testing.T, a interface{}, b interface{}, message string) {
if a != b {
return
}
if len(message) == 0 {
message = fmt.Sprintf("%v != %v", a, b)
}
t.Fatal(message)
}
func testOauthClient(t *testing.T) *APIClient {
config := Config{
ClientID: "testclient",
ClientSecret: "secret",
Authentication: UseOauth2,
AuthCode: "123456",
Endpoints: Endpoints{
API: testHTTPServer.URL,
UserCenter: testHTTPServer.URL,
},
}
client, err := NewClient(&config)
if err != nil {
t.Fatal("Cannot init the api client")
}
return client
}
func testBasicAuthClient(t *testing.T) *APIClient {
config := Config{
ClientID: "testclient",
ClientSecret: "secret",
Authentication: UseBasicAuth,
Endpoints: Endpoints{
API: testHTTPServer.URL,
UserCenter: testHTTPServer.URL,
},
}
client, err := NewClient(&config)
if err != nil {
t.Fatal("Cannot init the api client")
}
return client
}
// Real tests from here
func Test_makeAPIRequest(t *testing.T) {
// Basic config
config := Config{
ClientID: "testclient",
ClientSecret: "secret",
Endpoints: Endpoints{
API: testHTTPServer.URL,
UserCenter: testHTTPServer.URL,
},
}
ctx := context.Background()
// basicAuth
config.Authentication = UseBasicAuth
api, err := NewClient(&config)
if err != nil {
t.Errorf("Failed to setup NewClient: %s", err)
}
// Fail without userIdentifier
if response, err := api.makeAPIRequest(ctx, "GET", testHTTPServer.URL+"/test/http/basicAuth", nil, nil, ""); response != nil || err == nil {
t.Errorf("Missing userIdentifier should raise err")
}
// Succeed with userIdentifier
response, err := api.makeAPIRequest(ctx, "GET", testHTTPServer.URL+"/test/http/basicAuth", nil, nil, "user123")
if response == nil || err != nil {
t.Errorf("HTTP call with supplied userIdentifier failed: %s", err)
}
body, _ := ioutil.ReadAll(response.Body)
if response.StatusCode != 200 || string(body) != "test completed" {
t.Errorf("Body (%s) or statusCode(%d) mismatch", string(body), response.StatusCode)
}
// oauth2
config.Authentication = UseOauth2
config.AuthCode = "123456"
api, err = NewClient(&config)
if err != nil {
t.Errorf("Failed to setup NewClient: %s", err)
}
// Make oauth2 call
if response, err := api.makeAPIRequest(ctx, "GET", testHTTPServer.URL+"/test/http/oauth2", nil, nil, ""); response == nil || err != nil {
t.Errorf("Call failed: %#v", err)
}
// Pass additional headers
headers := map[string]string{
"X-Dummy-Header": "Ignored",
}
if response, err := api.makeAPIRequest(ctx, "GET", testHTTPServer.URL+"/test/http/oauth2", nil, headers, ""); response == nil || err != nil {
t.Errorf("Call failed: %#v", err)
}
}
func Test_encodeURLParams(t *testing.T) {
params := map[string]interface{}{
"aInt": 9,
"aStrWithSpaces": "Just a string",
"aStrWithEncoding": "test20%25gn%3B-%2F",
}
u := encodeURLParams("https://www.example.com", params)
assertEqual(t, u, "https://www.example.com?aInt=9&aStrWithEncoding=test20%2525gn%253B-%252F&aStrWithSpaces=Just+a+string", "")
}