-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic_test.go
More file actions
183 lines (169 loc) · 4.04 KB
/
basic_test.go
File metadata and controls
183 lines (169 loc) · 4.04 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
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
/*
Copyright 2025 The OpenCIDN Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package utils
import (
"net/url"
"testing"
)
func TestParseBasicAuth(t *testing.T) {
tests := []struct {
name string
auth string
wantUser string
wantPass string
wantNil bool
}{
{
name: "valid auth with password",
auth: "Basic dXNlcjpwYXNzd29yZA==", // user:password
wantUser: "user",
wantPass: "password",
wantNil: false,
},
{
name: "valid auth without password",
auth: "Basic dXNlcg==", // user
wantUser: "user",
wantPass: "",
wantNil: false,
},
{
name: "invalid prefix",
auth: "Bearer token123",
wantNil: true,
},
{
name: "missing prefix",
auth: "dXNlcjpwYXNzd29yZA==",
wantNil: true,
},
{
name: "invalid base64",
auth: "Basic invalid!!!",
wantNil: true,
},
{
name: "empty string",
auth: "",
wantNil: true,
},
{
name: "case insensitive prefix",
auth: "basic dXNlcjpwYXNzd29yZA==", // lowercase basic
wantUser: "user",
wantPass: "password",
wantNil: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := ParseBasicAuth(tt.auth)
if tt.wantNil {
if got != nil {
t.Errorf("ParseBasicAuth() = %v, want nil", got)
}
return
}
if got == nil {
t.Errorf("ParseBasicAuth() = nil, want non-nil")
return
}
if got.Username() != tt.wantUser {
t.Errorf("ParseBasicAuth() username = %v, want %v", got.Username(), tt.wantUser)
}
gotPass, _ := got.Password()
if gotPass != tt.wantPass {
t.Errorf("ParseBasicAuth() password = %v, want %v", gotPass, tt.wantPass)
}
})
}
}
func TestFormathBasicAuth(t *testing.T) {
tests := []struct {
name string
ui *url.Userinfo
want string
}{
{
name: "with password",
ui: url.UserPassword("user", "password"),
want: "Basic dXNlcjpwYXNzd29yZA==",
},
{
name: "without password",
ui: url.User("user"),
want: "Basic dXNlcg==",
},
{
name: "nil userinfo",
ui: nil,
want: "",
},
{
name: "special characters in username",
ui: url.UserPassword("admin@domain.com", "pass123"),
want: "Basic YWRtaW4lNDBkb21haW4uY29tOnBhc3MxMjM=", // @ is URL-encoded to %40
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := FormathBasicAuth(tt.ui); got != tt.want {
t.Errorf("FormathBasicAuth() = %v, want %v", got, tt.want)
}
})
}
}
func TestParseAndFormatBasicAuth_RoundTrip(t *testing.T) {
tests := []struct {
name string
username string
password string
}{
{
name: "simple credentials",
username: "user",
password: "password",
},
{
name: "username with numbers",
username: "admin123",
password: "secure123",
},
{
name: "alphanumeric only",
username: "testuser",
password: "Passw0rd123",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Format credentials
ui := url.UserPassword(tt.username, tt.password)
formatted := FormathBasicAuth(ui)
// Parse them back
parsed := ParseBasicAuth(formatted)
if parsed == nil {
t.Fatal("ParseBasicAuth() returned nil")
}
// For alphanumeric credentials without special chars,
// the round trip should preserve the values exactly
if parsed.Username() != tt.username {
t.Errorf("Round trip username = %v, want %v", parsed.Username(), tt.username)
}
parsedPass, _ := parsed.Password()
if parsedPass != tt.password {
t.Errorf("Round trip password = %v, want %v", parsedPass, tt.password)
}
})
}
}