-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_account_test.go
162 lines (118 loc) · 2.95 KB
/
api_account_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
// API Test
package main
import (
"encoding/json"
"fmt"
"net/http/httptest"
"os"
"testing"
)
func Account_API_Test(server *httptest.Server, session string, t *testing.T) {
// Check get username API
initialUser := os.Getenv("VAULT_INITIAL_USER")
if initialUser == "" {
initialUser = VAULT_DEFAULT_USER
}
initialPassword := os.Getenv("VAULT_INITIAL_PASSWORD")
if initialPassword == "" {
initialPassword = VAULT_DEFAULT_PASSWORD
}
statusCode, bodyResponseBytes, err := DoTestRequest(server, "GET", "/api/account", nil, session)
if err != nil {
t.Error(err)
return
}
if statusCode != 200 {
t.Error(ErrorMismatch("StatusCode", fmt.Sprint(statusCode), "200"))
}
res1 := AccountContextAPIResponse{}
err = json.Unmarshal(bodyResponseBytes, &res1)
if err != nil {
t.Error(err)
return
}
if !res1.Root {
t.Error(ErrorMismatch("Root", fmt.Sprint(res1.Root), "true"))
}
if res1.Username != initialUser {
t.Error(ErrorMismatch("Username", fmt.Sprint(res1.Username), initialUser))
}
if !res1.Write {
t.Error(ErrorMismatch("Write", fmt.Sprint(res1.Write), "true"))
}
// Check invalid session
statusCode, _, err = DoTestRequest(server, "GET", "/api/account", nil, "random_invalid_session")
if err != nil {
t.Error(err)
return
}
if statusCode != 401 {
t.Error(ErrorMismatch("StatusCode", fmt.Sprint(statusCode), "401"))
}
// Change username
body, err := json.Marshal(ChangeUsernameBody{
Username: "test",
Password: initialPassword,
})
if err != nil {
t.Error(err)
return
}
statusCode, _, err = DoTestRequest(server, "POST", "/api/account/username", body, session)
if err != nil {
t.Error(err)
return
}
if statusCode != 200 {
t.Error(ErrorMismatch("StatusCode", fmt.Sprint(statusCode), "200"))
}
// Change password
body, err = json.Marshal(ChangePasswordBody{
Password: "test_password",
OldPassword: initialPassword,
})
if err != nil {
t.Error(err)
return
}
statusCode, _, err = DoTestRequest(server, "POST", "/api/account/password", body, session)
if err != nil {
t.Error(err)
return
}
if statusCode != 200 {
t.Error(ErrorMismatch("StatusCode", fmt.Sprint(statusCode), "200"))
}
// Test new credentials
body, err = json.Marshal(LoginAPIBody{
Username: "test",
Password: "test_password",
})
if err != nil {
t.Error(err)
return
}
statusCode, bodyResponseBytes, err = DoTestRequest(server, "POST", "/api/auth/login", body, "")
if err != nil {
t.Error(err)
return
}
if statusCode != 200 {
t.Error(ErrorMismatch("StatusCode", fmt.Sprint(statusCode), "200"))
}
bodyResponse := LoginAPIResponse{}
err = json.Unmarshal(bodyResponseBytes, &bodyResponse)
if err != nil {
t.Error(err)
return
}
// Close the session
statusCode, _, err = DoTestRequest(server, "POST", "/api/auth/logout", nil, bodyResponse.SessionId)
if err != nil {
t.Error(err)
return
}
if statusCode != 200 {
t.Error(ErrorMismatch("StatusCode", fmt.Sprint(statusCode), "200"))
}
}