-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathtestcase.go
141 lines (123 loc) · 3.62 KB
/
testcase.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
// Copyright 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.
//go:build integration_test
package command
import (
"bytes"
"fmt"
"os/exec"
"path/filepath"
"strings"
"testing"
"github.com/google/yamlfmt/internal/assert"
"github.com/google/yamlfmt/internal/tempfile"
)
const (
stdoutGoldenFile = "stdout.txt"
stderrGoldenFile = "stderr.txt"
)
type TestCase struct {
Dir string
Command string
IsError bool
Update bool
ShowStdout bool
}
func (tc TestCase) Run(t *testing.T) {
// I wanna write on the first indent level lol
t.Run(tc.Dir, tc.run)
}
func (tc TestCase) run(t *testing.T) {
// Replicate the "before" directory in the test temp directory.
tempDir := t.TempDir()
paths, err := tempfile.ReplicateDirectory(tc.testFolderBeforePath(), tempDir)
assert.NilErr(t, err)
err = paths.CreateAll()
assert.NilErr(t, err)
// Run the command for the test in the temp directory.
var stdoutBuf bytes.Buffer
var stderrBuf bytes.Buffer
cmd := tc.command(tempDir, &stdoutBuf, &stderrBuf)
err = cmd.Run()
if tc.IsError {
assert.NotNilErr(t, err)
} else {
assert.NilErr(t, err)
}
fmt.Printf("stdout: %s\n", stdoutBuf.String())
fmt.Printf("stderr: %s\n", stderrBuf.String())
err = tc.goldenStdout(stdoutBuf.Bytes())
assert.NilErr(t, err)
err = tc.goldenStderr(stderrBuf.Bytes())
assert.NilErr(t, err)
err = tc.goldenAfter(tempDir)
assert.NilErr(t, err)
}
func (tc TestCase) testFolderBeforePath() string {
return tc.testdataDirPath() + "/before"
}
func (tc TestCase) command(wd string, stdoutBuf *bytes.Buffer, stderrBuf *bytes.Buffer) *exec.Cmd {
cmdArgs := []string{}
for _, arg := range strings.Split(tc.Command, " ") {
// This is to handle potential typos in args with extra spaces.
if arg != "" {
cmdArgs = append(cmdArgs, arg)
}
}
return &exec.Cmd{
Path: cmdArgs[0], // This is just the path to the command
Args: cmdArgs, // Args needs to be an array of everything including the command
Stdout: stdoutBuf,
Stderr: stderrBuf,
Dir: wd,
}
}
func (tc TestCase) goldenStdout(stdoutResult []byte) error {
if tc.ShowStdout {
fmt.Printf("Output for test %s:\n%s", tc.Dir, stdoutResult)
return nil
}
goldenCtx := tempfile.GoldenCtx{
Dir: tc.testFolderStdoutPath(),
Update: tc.Update,
}
return goldenCtx.CompareGoldenFile(stdoutGoldenFile, stdoutResult)
}
func (tc TestCase) goldenStderr(stderrResult []byte) error {
if tc.ShowStdout {
fmt.Printf("Stderr output for test %s:\n%s", tc.Dir, stderrResult)
return nil
}
goldenCtx := tempfile.GoldenCtx{
Dir: tc.testFolderStdoutPath(),
Update: tc.Update,
}
return goldenCtx.CompareGoldenFile(stderrGoldenFile, stderrResult)
}
func (tc TestCase) goldenAfter(wd string) error {
goldenCtx := tempfile.GoldenCtx{
Dir: tc.testFolderAfterPath(),
Update: tc.Update,
}
return goldenCtx.CompareDirectory(wd)
}
func (tc TestCase) testFolderAfterPath() string {
return filepath.Join(tc.testdataDirPath(), "after")
}
func (tc TestCase) testFolderStdoutPath() string {
return filepath.Join(tc.testdataDirPath(), "stdout")
}
func (tc TestCase) testdataDirPath() string {
return filepath.Join("testdata/", tc.Dir)
}