-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathazure_cli_authorizer_test.go
137 lines (105 loc) · 3.08 KB
/
azure_cli_authorizer_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
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package auth_test
import (
"context"
"fmt"
"testing"
"github.com/hashicorp/go-azure-sdk/sdk/auth"
"github.com/hashicorp/go-azure-sdk/sdk/environments"
"github.com/hashicorp/go-azure-sdk/sdk/internal/test"
)
func TestAccAzureCliAuthorizer(t *testing.T) {
test.AccTest(t)
ctx := context.Background()
env, err := environments.FromName(test.Environment)
if err != nil {
t.Fatal(err)
}
opts := auth.AzureCliAuthorizerOptions{
Api: env.MicrosoftGraph,
}
authorizer, err := auth.NewAzureCliAuthorizer(ctx, opts)
if err != nil {
t.Fatalf("NewAzureCliAuthorizer(): %v", err)
}
cliAuth, err := testCheckAzureCliAuthorizer(authorizer)
if err != nil {
t.Fatal(err)
}
if cliAuth.TenantID == "" {
t.Fatal("cliAuth.TenantID has unexpected empty value (should have been auto-detected)")
}
if _, err = testObtainAccessToken(ctx, authorizer); err != nil {
t.Fatal(err)
}
}
func TestAccAzureCliAuthorizerWithSubscription(t *testing.T) {
test.AccTest(t)
ctx := context.Background()
env, err := environments.FromName(test.Environment)
if err != nil {
t.Fatal(err)
}
opts := auth.AzureCliAuthorizerOptions{
Api: env.ResourceManager,
SubscriptionIdHint: test.SubscriptionId,
}
authorizer, err := auth.NewAzureCliAuthorizer(ctx, opts)
if err != nil {
t.Fatalf("NewAzureCliAuthorizer(): %v", err)
}
cliAuth, err := testCheckAzureCliAuthorizer(authorizer)
if err != nil {
t.Fatal(err)
}
if cliAuth.SubscriptionIDHint != test.SubscriptionId {
t.Fatalf("cliAuth.SubscriptionIDHint has unexpected value %q", cliAuth.SubscriptionIDHint)
}
if _, err = testObtainAccessToken(ctx, authorizer); err != nil {
t.Fatal(err)
}
}
func TestAccAzureCliAuthorizerWithTenant(t *testing.T) {
test.AccTest(t)
ctx := context.Background()
env, err := environments.FromName(test.Environment)
if err != nil {
t.Fatal(err)
}
opts := auth.AzureCliAuthorizerOptions{
Api: env.MicrosoftGraph,
TenantId: test.TenantId,
}
authorizer, err := auth.NewAzureCliAuthorizer(ctx, opts)
if err != nil {
t.Fatalf("NewAzureCliAuthorizer(): %v", err)
}
cliAuth, err := testCheckAzureCliAuthorizer(authorizer)
if err != nil {
t.Fatal(err)
}
if cliAuth.TenantID != test.TenantId {
t.Fatalf("cliAuth.TenantID has unexpected value %q", cliAuth.TenantID)
}
if _, err = testObtainAccessToken(ctx, authorizer); err != nil {
t.Fatal(err)
}
}
func testCheckAzureCliAuthorizer(authorizer auth.Authorizer) (*auth.AzureCliAuthorizer, error) {
if authorizer == nil {
return nil, fmt.Errorf("authorizer is nil, expected Authorizer")
}
cachedAuth, ok := authorizer.(*auth.CachedAuthorizer)
if !ok {
return nil, fmt.Errorf("authorizer is not a *CachedAuthorizer")
}
cliAuth, ok := cachedAuth.Source.(*auth.AzureCliAuthorizer)
if !ok {
return nil, fmt.Errorf("cachedAuth.Source is not an *AzureCliAuthorizer")
}
if cliAuth.DefaultSubscriptionID == "" {
return cliAuth, fmt.Errorf("cliAuth.DefaultSubscriptionID has unexpected empty value (should have been auto-detected)")
}
return cliAuth, nil
}