-
Notifications
You must be signed in to change notification settings - Fork 463
/
gcloud.go
163 lines (147 loc) · 5.06 KB
/
gcloud.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
163
/**
* Copyright 2021-2024 Google LLC
*
* 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 gcloud provides a set of helpers to interact with gcloud(Cloud SDK) binary
package gcloud
import (
"fmt"
"strings"
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/utils"
"github.com/gruntwork-io/terratest/modules/logger"
"github.com/gruntwork-io/terratest/modules/shell"
"github.com/mattn/go-shellwords"
"github.com/mitchellh/go-testing-interface"
"github.com/tidwall/gjson"
)
type CmdCfg struct {
gcloudBinary string // path to gcloud binary
commonArgs []string // common arguments to pass to gcloud calls
logger *logger.Logger // custom logger
}
type cmdOption func(*CmdCfg)
func WithBinary(gcloudBinary string) cmdOption {
return func(f *CmdCfg) {
f.gcloudBinary = gcloudBinary
}
}
func WithCommonArgs(commonArgs []string) cmdOption {
return func(f *CmdCfg) {
f.commonArgs = commonArgs
}
}
func WithLogger(logger *logger.Logger) cmdOption {
return func(f *CmdCfg) {
f.logger = logger
}
}
// newCmdConfig sets defaults and validates values for gcloud Options.
func newCmdConfig(opts ...cmdOption) (*CmdCfg, error) {
gOpts := &CmdCfg{}
// apply options
for _, opt := range opts {
opt(gOpts)
}
if gOpts.gcloudBinary == "" {
err := utils.BinaryInPath("gcloud")
if err != nil {
return nil, err
}
gOpts.gcloudBinary = "gcloud"
}
if gOpts.commonArgs == nil {
gOpts.commonArgs = []string{"--format", "json"}
}
if gOpts.logger == nil {
gOpts.logger = utils.GetLoggerFromT()
}
return gOpts, nil
}
// RunCmd executes a gcloud command and fails test if there are any errors.
func RunCmd(t testing.TB, cmd string, opts ...cmdOption) string {
op, err := RunCmdE(t, cmd, opts...)
if err != nil {
t.Fatal(err)
}
return op
}
// RunCmdE executes a gcloud command and return output.
func RunCmdE(t testing.TB, cmd string, opts ...cmdOption) (string, error) {
gOpts, err := newCmdConfig(opts...)
if err != nil {
t.Fatal(err)
}
// split command into args
args, err := shellwords.Parse(cmd)
if err != nil {
t.Fatal(err)
}
gcloudCmd := shell.Command{
Command: "gcloud",
Args: append(args, gOpts.commonArgs...),
Logger: gOpts.logger,
}
return shell.RunCommandAndGetStdOutE(t, gcloudCmd)
}
// Run executes a gcloud command and returns value as gjson.Result.
// It fails the test if there are any errors executing the gcloud command or parsing the output value.
func Run(t testing.TB, cmd string, opts ...cmdOption) gjson.Result {
op := RunCmd(t, cmd, opts...)
if !gjson.Valid(op) {
t.Fatalf("Error parsing output, invalid json: %s", op)
}
return gjson.Parse(op)
}
// TFVet executes gcloud beta terraform vet
func TFVet(t testing.TB, planFilePath string, policyLibraryPath, terraformVetProject string) gjson.Result {
op, err := RunCmdE(t, fmt.Sprintf("beta terraform vet %s --policy-library=%s --project=%s", planFilePath, policyLibraryPath, terraformVetProject))
if err != nil && !(strings.Contains(err.Error(), "Validating resources") && strings.Contains(err.Error(), "done")) {
t.Fatal(err)
}
if !gjson.Valid(op) {
t.Fatalf("Error parsing output, invalid json: %s", op)
}
return gjson.Parse(op)
}
// RunWithCmdOptsf executes a gcloud command and returns value as gjson.Result.
//
// RunWithCmdOptsf(t, ops.., "projects list --filter=%s", "projectId")
//
// It fails the test if there are any errors executing the gcloud command or parsing the output value.
func RunWithCmdOptsf(t testing.TB, opts []cmdOption, cmd string, args ...interface{}) gjson.Result {
return Run(t, utils.StringFromTextAndArgs(append([]interface{}{cmd}, args...)...), opts...)
}
// Runf executes a gcloud command and returns value as gjson.Result.
//
// Runf(t, "projects list --filter=%s", "projectId")
//
// It fails the test if there are any errors executing the gcloud command or parsing the output value.
func Runf(t testing.TB, cmd string, args ...interface{}) gjson.Result {
return Run(t, utils.StringFromTextAndArgs(append([]interface{}{cmd}, args...)...))
}
// ActivateCredsAndEnvVars activates credentials and exports auth related envvars.
func ActivateCredsAndEnvVars(t testing.TB, creds string) {
credsPath, err := utils.WriteTmpFile(creds)
if err != nil {
t.Fatal(err)
}
RunCmd(t, "auth activate-service-account", WithCommonArgs([]string{"--key-file", credsPath}))
// set auth related env vars
// TF provider auth
utils.SetEnv(t, "GOOGLE_CREDENTIALS", creds)
// gcloud SDK override
utils.SetEnv(t, "CLOUDSDK_AUTH_CREDENTIAL_FILE_OVERRIDE", credsPath)
// ADC
utils.SetEnv(t, "GOOGLE_APPLICATION_CREDENTIALS", credsPath)
}