Skip to content

Commit 1d2f0ae

Browse files
committed
Update TestCommandOutputPrefix and TestRunShellCommandWithOutputInterrupt tests
1 parent 2106309 commit 1d2f0ae

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

shell/run_shell_cmd_output_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var (
5656
func testCommandOutputOrder(t *testing.T, withPtty bool, fullOutput []string, stdout []string, stderr []string) {
5757
t.Helper()
5858

59-
testCommandOutput(t, noop[*options.TerragruntOptions], assertOutputs(t, fullOutput, stdout, stderr), withPtty)
59+
testCommandOutput(t, noop[*options.TerragruntOptions], assertOutputs(t, fullOutput, stdout, stderr), withPtty, withPtty)
6060
}
6161

6262
func TestCommandOutputPrefix(t *testing.T) {
@@ -78,10 +78,10 @@ func TestCommandOutputPrefix(t *testing.T) {
7878
prefixedOutput,
7979
Stdout,
8080
Stderr,
81-
), true)
81+
), true, true)
8282
}
8383

84-
func testCommandOutput(t *testing.T, withOptions func(*options.TerragruntOptions), assertResults func(string, *util.CmdOutput), allocateStdout bool) {
84+
func testCommandOutput(t *testing.T, withOptions func(*options.TerragruntOptions), assertResults func(string, *util.CmdOutput), allocateStdout bool, allocateStderr bool) {
8585
t.Helper()
8686

8787
terragruntOptions, err := options.NewTerragruntOptionsForTest("")
@@ -97,7 +97,7 @@ func testCommandOutput(t *testing.T, withOptions func(*options.TerragruntOptions
9797

9898
withOptions(terragruntOptions)
9999

100-
out, err := shell.RunShellCommandWithOutput(context.Background(), terragruntOptions, "", !allocateStdout, false, "testdata/test_outputs.sh", "same")
100+
out, err := shell.RunShellCommandWithOutput(context.Background(), terragruntOptions, "", !allocateStdout, !allocateStderr, false, "testdata/test_outputs.sh", "same")
101101

102102
assert.NotNil(t, out, "Should get output")
103103
require.NoError(t, err, "Should have no error")

shell/run_shell_cmd_unix_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func TestRunShellCommandWithOutputInterrupt(t *testing.T) {
3333
cmdPath := "testdata/test_sigint_wait.sh"
3434

3535
go func() {
36-
_, err := shell.RunShellCommandWithOutput(ctx, terragruntOptions, "", false, false, cmdPath, strconv.Itoa(expectedWait))
36+
_, err := shell.RunShellCommandWithOutput(ctx, terragruntOptions, "", false, false, false, cmdPath, strconv.Itoa(expectedWait))
3737
errCh <- err
3838
}()
3939

0 commit comments

Comments
 (0)