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
|
// Copyright 2022 Google LLC All Rights Reserved.
//
// 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 authn
import (
"encoding/json"
"strings"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestAuthConfigMarshalJSON(t *testing.T) {
cases := []struct {
name string
config AuthConfig
json string
}{{
name: "auth field is calculated",
config: AuthConfig{
Username: "user",
Password: "pass",
IdentityToken: "id",
RegistryToken: "reg",
},
json: `{"username":"user","password":"pass","auth":"dXNlcjpwYXNz","identitytoken":"id","registrytoken":"reg"}`,
}, {
name: "auth field replaced",
config: AuthConfig{
Username: "user",
Password: "pass",
Auth: "blah",
IdentityToken: "id",
RegistryToken: "reg",
},
json: `{"username":"user","password":"pass","auth":"dXNlcjpwYXNz","identitytoken":"id","registrytoken":"reg"}`,
}}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
bytes, err := json.Marshal(&tc.config)
if err != nil {
t.Fatal("Marshal() =", err)
}
if diff := cmp.Diff(tc.json, string(bytes)); diff != "" {
t.Error("json output diff (-want, +got): ", diff)
}
})
}
}
func TestAuthConfigUnmarshalJSON(t *testing.T) {
cases := []struct {
name string
json string
err string
want AuthConfig
}{{
name: "valid config no auth",
json: `{
"username": "user",
"password": "pass",
"identitytoken": "id",
"registrytoken": "reg"
}`,
want: AuthConfig{
// Auth value is set based on username and password
Auth: "dXNlcjpwYXNz",
Username: "user",
Password: "pass",
IdentityToken: "id",
RegistryToken: "reg",
},
}, {
name: "bad json input",
json: `{"username":true}`,
err: "json: cannot unmarshal",
}, {
name: "auth is base64",
json: `{ "auth": "dXNlcjpwYXNz" }`, // user:pass
want: AuthConfig{
Username: "user",
Password: "pass",
Auth: "dXNlcjpwYXNz",
},
}, {
name: "auth field overrides others",
json: `{ "auth": "dXNlcjpwYXNz", "username":"foo", "password":"bar" }`, // user:pass
want: AuthConfig{
Username: "user",
Password: "pass",
Auth: "dXNlcjpwYXNz",
},
}, {
name: "auth is base64 padded",
json: `{ "auth": "dXNlcjpwYXNzd29yZA==" }`, // user:password
want: AuthConfig{
Username: "user",
Password: "password",
Auth: "dXNlcjpwYXNzd29yZA==",
},
}, {
name: "auth is not base64",
json: `{ "auth": "bad-auth-bad" }`,
err: "unable to decode auth field",
}, {
name: "decoded auth is not valid",
json: `{ "auth": "Zm9vYmFy" }`,
err: "unable to decode auth field: must be formatted as base64(username:password)",
}}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
var got AuthConfig
err := json.Unmarshal([]byte(tc.json), &got)
if tc.err != "" && err == nil {
t.Fatal("no error occurred expected:", tc.err)
} else if tc.err != "" && err != nil {
if !strings.HasPrefix(err.Error(), tc.err) {
t.Fatalf("expected err %q to have prefix %q", err, tc.err)
}
return
}
if err != nil {
t.Fatal("Unmarshal()=", err)
}
if diff := cmp.Diff(tc.want, got); diff != "" {
t.Fatal("unexpected diff (-want, +got)\n", diff)
}
})
}
}
|