Skip to content

Commit bfa3f82

Browse files
committed
send test parallelism attribute to HCP terraform
1 parent 7431a98 commit bfa3f82

File tree

6 files changed

+134
-21
lines changed

6 files changed

+134
-21
lines changed

go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ require (
2828
github.com/hashicorp/go-plugin v1.6.0
2929
github.com/hashicorp/go-retryablehttp v0.7.7
3030
github.com/hashicorp/go-slug v0.16.3
31-
github.com/hashicorp/go-tfe v1.70.0
31+
github.com/hashicorp/go-tfe v1.74.1
3232
github.com/hashicorp/go-uuid v1.0.3
3333
github.com/hashicorp/go-version v1.7.0
3434
github.com/hashicorp/hcl v1.0.0
3535
github.com/hashicorp/hcl/v2 v2.23.0
36-
github.com/hashicorp/jsonapi v1.3.1
36+
github.com/hashicorp/jsonapi v1.3.2
3737
github.com/hashicorp/terraform-registry-address v0.2.3
3838
github.com/hashicorp/terraform-svchost v0.1.1
3939
github.com/hashicorp/terraform/internal/backend/remote-state/azure v0.0.0-00010101000000-000000000000
@@ -254,7 +254,7 @@ require (
254254
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
255255
golang.org/x/exp/typeparams v0.0.0-20231108232855-2478ac86f678 // indirect
256256
golang.org/x/sync v0.10.0 // indirect
257-
golang.org/x/time v0.7.0 // indirect
257+
golang.org/x/time v0.9.0 // indirect
258258
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
259259
google.golang.org/api v0.126.0 // indirect
260260
google.golang.org/appengine v1.6.8 // indirect

go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -1147,6 +1147,8 @@ github.com/hashicorp/go-sockaddr v1.0.2/go.mod h1:rB4wwRAUzs07qva3c5SdrY/NEtAUjG
11471147
github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4=
11481148
github.com/hashicorp/go-tfe v1.70.0 h1:R5a9Z+jdVz6eRWtSLsl1nw+5Qe/swunZcJgeKK5NQtQ=
11491149
github.com/hashicorp/go-tfe v1.70.0/go.mod h1:2rOcdTxXwbWm0W7dCKjC3Ec8KQ+HhW165GiurXNshc4=
1150+
github.com/hashicorp/go-tfe v1.74.1 h1:I/8fOwSYox17IZV7SULIQH0ZRPNL2g/biW6hHWnOTVY=
1151+
github.com/hashicorp/go-tfe v1.74.1/go.mod h1:kGHWMZ3HHjitgqON8nBZ4kPVJ3cLbzM4JMgmNVMs9aQ=
11501152
github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
11511153
github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
11521154
github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
@@ -1167,6 +1169,8 @@ github.com/hashicorp/hcl/v2 v2.23.0 h1:Fphj1/gCylPxHutVSEOf2fBOh1VE4AuLV7+kbJf3q
11671169
github.com/hashicorp/hcl/v2 v2.23.0/go.mod h1:62ZYHrXgPoX8xBnzl8QzbWq4dyDsDtfCRgIq1rbJEvA=
11681170
github.com/hashicorp/jsonapi v1.3.1 h1:GtPvnmcWgYwCuDGvYT5VZBHcUyFdq9lSyCzDjn1DdPo=
11691171
github.com/hashicorp/jsonapi v1.3.1/go.mod h1:kWfdn49yCjQvbpnvY1dxxAuAFzISwrrMDQOcu6NsFoM=
1172+
github.com/hashicorp/jsonapi v1.3.2 h1:gP3fX2ZT7qXi+PbwieptzkspIohO2kCSiBUvUTBAbMs=
1173+
github.com/hashicorp/jsonapi v1.3.2/go.mod h1:kWfdn49yCjQvbpnvY1dxxAuAFzISwrrMDQOcu6NsFoM=
11701174
github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=
11711175
github.com/hashicorp/mdns v1.0.4/go.mod h1:mtBihi+LeNXGtG8L9dX59gAEa12BDtBQSp4v/YAJqrc=
11721176
github.com/hashicorp/memberlist v0.3.0 h1:8+567mCcFDnS5ADl7lrpxPMWiFCElyUEeW0gtj34fMA=

internal/cloud/test.go

+5
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ type TestSuiteRunner struct {
8282
// Verbose tells the runner to print out plan files during each test run.
8383
Verbose bool
8484

85+
// OperationParallelism is the limit Terraform places on total parallel operations
86+
// during the plan or apply command within a single test run.
87+
OperationParallelism int
88+
8589
// Filters restricts which test files will be executed.
8690
Filters []string
8791

@@ -204,6 +208,7 @@ func (runner *TestSuiteRunner) Test() (moduletest.Status, tfdiags.Diagnostics) {
204208
Filters: runner.Filters,
205209
TestDirectory: tfe.String(runner.TestingDirectory),
206210
Verbose: tfe.Bool(runner.Verbose),
211+
Parallelism: tfe.Int(runner.OperationParallelism),
207212
Variables: func() []*tfe.RunVariable {
208213
runVariables := make([]*tfe.RunVariable, 0, len(variables))
209214
for name, value := range variables {

internal/cloud/test_test.go

+75
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,81 @@ Success! 2 passed, 0 failed.
103103
}
104104
}
105105

106+
func TestTest_Parallelism(t *testing.T) {
107+
108+
streams, _ := terminal.StreamsForTesting(t)
109+
view := views.NewTest(arguments.ViewHuman, views.NewView(streams))
110+
111+
colorize := mockColorize()
112+
colorize.Disable = true
113+
114+
mock := NewMockClient()
115+
client := &tfe.Client{
116+
ConfigurationVersions: mock.ConfigurationVersions,
117+
Organizations: mock.Organizations,
118+
RegistryModules: mock.RegistryModules,
119+
TestRuns: mock.TestRuns,
120+
}
121+
122+
if _, err := client.Organizations.Create(context.Background(), tfe.OrganizationCreateOptions{
123+
Name: tfe.String("organisation"),
124+
}); err != nil {
125+
t.Fatalf("failed to create organisation: %v", err)
126+
}
127+
128+
if _, err := client.RegistryModules.Create(context.Background(), "organisation", tfe.RegistryModuleCreateOptions{
129+
Name: tfe.String("name"),
130+
Provider: tfe.String("provider"),
131+
RegistryName: "app.terraform.io",
132+
Namespace: "organisation",
133+
}); err != nil {
134+
t.Fatalf("failed to create registry module: %v", err)
135+
}
136+
137+
runner := TestSuiteRunner{
138+
// Configuration data.
139+
ConfigDirectory: "testdata/test",
140+
TestingDirectory: "tests",
141+
Config: nil, // We don't need this for this test.
142+
Source: "app.terraform.io/organisation/name/provider",
143+
144+
// Cancellation controls, we won't be doing any cancellations in this
145+
// test.
146+
Stopped: false,
147+
Cancelled: false,
148+
StoppedCtx: context.Background(),
149+
CancelledCtx: context.Background(),
150+
151+
// Test Options, empty for this test.
152+
GlobalVariables: nil,
153+
Verbose: false,
154+
OperationParallelism: 4,
155+
Filters: nil,
156+
157+
// Outputs
158+
Renderer: &jsonformat.Renderer{
159+
Streams: streams,
160+
Colorize: colorize,
161+
RunningInAutomation: false,
162+
},
163+
View: view,
164+
Streams: streams,
165+
166+
// Networking
167+
Services: nil, // Don't need this when the client is overridden.
168+
clientOverride: client,
169+
}
170+
171+
_, diags := runner.Test()
172+
if len(diags) > 0 {
173+
t.Errorf("found diags and expected none: %s", diags.ErrWithWarnings())
174+
}
175+
176+
if mock.TestRuns.parallelism != 4 {
177+
t.Errorf("expected parallelism to be 4 but was %d", mock.TestRuns.parallelism)
178+
}
179+
}
180+
106181
func TestTest_JSON(t *testing.T) {
107182

108183
streams, done := terminal.StreamsForTesting(t)

internal/cloud/tfe_client_mock.go

+31-3
Original file line numberDiff line numberDiff line change
@@ -1673,9 +1673,10 @@ type MockTestRuns struct {
16731673
client *MockClient
16741674

16751675
// TestRuns and modules keep track of our tfe.TestRun objects.
1676-
TestRuns map[string]*tfe.TestRun
1677-
modules map[string][]*tfe.TestRun
1678-
logs map[string]string
1676+
TestRuns map[string]*tfe.TestRun
1677+
modules map[string][]*tfe.TestRun
1678+
logs map[string]string
1679+
parallelism int
16791680

16801681
// delayedCancel allows a mock test run to cancel an operation instead of
16811682
// completing an operation. It's used
@@ -1767,6 +1768,9 @@ func (m *MockTestRuns) Create(ctx context.Context, options tfe.TestRunCreateOpti
17671768
"test.log",
17681769
)
17691770
m.modules[tr.RegistryModule.ID] = append(m.modules[tr.RegistryModule.ID], tr)
1771+
if options.Parallelism != nil {
1772+
m.parallelism = *options.Parallelism
1773+
}
17701774

17711775
return tr, nil
17721776
}
@@ -2170,6 +2174,30 @@ func (m *MockWorkspaces) UpdateByID(ctx context.Context, workspaceID string, opt
21702174
return w, nil
21712175
}
21722176

2177+
func (m *MockWorkspaces) ListEffectiveTagBindings(ctx context.Context, workspaceID string) ([]*tfe.EffectiveTagBinding, error) {
2178+
w, ok := m.workspaceIDs[workspaceID]
2179+
if !ok {
2180+
return nil, tfe.ErrResourceNotFound
2181+
}
2182+
var effectiveTagBindings []*tfe.EffectiveTagBinding
2183+
for _, tb := range w.TagBindings {
2184+
effectiveTagBindings = append(effectiveTagBindings, &tfe.EffectiveTagBinding{
2185+
Key: tb.Key,
2186+
Value: tb.Value,
2187+
})
2188+
}
2189+
return effectiveTagBindings, nil
2190+
}
2191+
2192+
func (m *MockWorkspaces) DeleteAllTagBindings(ctx context.Context, workspaceID string) error {
2193+
w, ok := m.workspaceIDs[workspaceID]
2194+
if !ok {
2195+
return tfe.ErrResourceNotFound
2196+
}
2197+
w.TagBindings = nil
2198+
return nil
2199+
}
2200+
21732201
func updateMockWorkspaceAttributes(w *tfe.Workspace, options tfe.WorkspaceUpdateOptions) error {
21742202
// for TestCloud_setUnavailableTerraformVersion
21752203
if w.Name == "unavailable-terraform-version" && options.TerraformVersion != nil {

internal/command/test.go

+16-15
Original file line numberDiff line numberDiff line change
@@ -187,21 +187,22 @@ func (c *TestCommand) Run(rawArgs []string) int {
187187
}
188188

189189
runner = &cloud.TestSuiteRunner{
190-
ConfigDirectory: ".", // Always loading from the current directory.
191-
TestingDirectory: args.TestDirectory,
192-
Config: config,
193-
Services: c.Services,
194-
Source: args.CloudRunSource,
195-
GlobalVariables: variables,
196-
Stopped: false,
197-
Cancelled: false,
198-
StoppedCtx: stopCtx,
199-
CancelledCtx: cancelCtx,
200-
Verbose: args.Verbose,
201-
Filters: args.Filter,
202-
Renderer: renderer,
203-
View: view,
204-
Streams: c.Streams,
190+
ConfigDirectory: ".", // Always loading from the current directory.
191+
TestingDirectory: args.TestDirectory,
192+
Config: config,
193+
Services: c.Services,
194+
Source: args.CloudRunSource,
195+
GlobalVariables: variables,
196+
Stopped: false,
197+
Cancelled: false,
198+
StoppedCtx: stopCtx,
199+
CancelledCtx: cancelCtx,
200+
Verbose: args.Verbose,
201+
OperationParallelism: args.OperationParallelism,
202+
Filters: args.Filter,
203+
Renderer: renderer,
204+
View: view,
205+
Streams: c.Streams,
205206
}
206207
} else {
207208
localRunner := &local.TestSuiteRunner{

0 commit comments

Comments
 (0)