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
|
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package shared
import (
stdJSON "encoding/json"
"testing"
"github.com/AzureAD/microsoft-authentication-library-for-go/apps/internal/json"
"github.com/kylelemons/godebug/pretty"
)
var (
accHID = "hid"
accEnv = "env"
accRealm = "realm"
authType = "MSSTS"
accLid = "lid"
accUser = "user"
)
func TestAccountUnmarshal(t *testing.T) {
jsonMap := map[string]interface{}{
"home_account_id": "hid",
"environment": "env",
"extra": "this_is_extra",
"authority_type": authType,
}
b, err := stdJSON.Marshal(jsonMap)
if err != nil {
panic(err)
}
want := Account{
HomeAccountID: accHID,
Environment: accEnv,
AuthorityType: authType,
AdditionalFields: map[string]interface{}{
"extra": json.MarshalRaw("this_is_extra"),
},
}
got := Account{}
err = json.Unmarshal(b, &got)
if err != nil {
panic(err)
}
if diff := pretty.Compare(want, got); diff != "" {
t.Errorf("TestAccountUnmarshal: -want/+got:\n%s", diff)
}
}
func TestAccountKey(t *testing.T) {
acc := &Account{
HomeAccountID: accHID,
Environment: accEnv,
Realm: accRealm,
}
expectedKey := "hid-env-realm"
actualKey := acc.Key()
if expectedKey != actualKey {
t.Errorf("Actual key %s differs from expected key %s", actualKey, expectedKey)
}
}
func TestAccountMarshal(t *testing.T) {
acc := Account{
HomeAccountID: accHID,
Environment: accEnv,
Realm: accRealm,
LocalAccountID: accLid,
AuthorityType: authType,
PreferredUsername: accUser,
AdditionalFields: map[string]interface{}{"extra": "extra"},
}
want := map[string]interface{}{
"home_account_id": "hid",
"environment": "env",
"realm": "realm",
"local_account_id": "lid",
"authority_type": authType,
"username": "user",
"extra": "extra",
}
b, err := json.Marshal(acc)
if err != nil {
panic(err)
}
got := map[string]interface{}{}
if err := stdJSON.Unmarshal(b, &got); err != nil {
panic(err)
}
if diff := pretty.Compare(want, got); diff != "" {
t.Errorf("TestAccountMarshal: -want/+got:\n%s", diff)
}
}
|