-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcommand_test.go
165 lines (145 loc) · 3.81 KB
/
command_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
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
164
165
// 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 (
"flag"
"fmt"
"os"
"testing"
)
var (
updateFlag *bool = flag.Bool("update", false, "Whether to update the goldens.")
stdoutFlag *bool = flag.Bool("stdout", false, "Show stdout instead of diffing it.")
yamlfmtBin string
)
func TestMain(m *testing.M) {
yamlfmtBinVar := os.Getenv("YAMLFMT_BIN")
if yamlfmtBinVar == "" {
fmt.Println("Must provide a YAMLFMT_BIN environment variable.")
os.Exit(1)
}
yamlfmtBin = yamlfmtBinVar
m.Run()
}
func yamlfmtWithArgs(args string) string {
return fmt.Sprintf("%s -no_global_conf %s", yamlfmtBin, args)
}
func TestPathArg(t *testing.T) {
TestCase{
Dir: "path_arg",
Command: yamlfmtWithArgs("x.yaml"),
Update: *updateFlag,
}.Run(t)
}
func TestIncludeDocumentStart(t *testing.T) {
TestCase{
Dir: "include_document_start",
Command: yamlfmtWithArgs("-formatter include_document_start=true x.yaml"),
Update: *updateFlag,
}.Run(t)
}
func TestGitignore(t *testing.T) {
TestCase{
Dir: "gitignore",
Command: yamlfmtWithArgs("-gitignore_excludes -gitignore_path .test_gitignore ."),
Update: *updateFlag,
}.Run(t)
}
func TestLint(t *testing.T) {
TestCase{
Dir: "lint",
Command: yamlfmtWithArgs("-lint ."),
Update: *updateFlag,
IsError: true,
}.Run(t)
}
func TestLineOutput(t *testing.T) {
TestCase{
Dir: "line_output",
Command: yamlfmtWithArgs("-lint -output_format line ."),
Update: *updateFlag,
IsError: true,
}.Run(t)
}
func TestDry(t *testing.T) {
TestCase{
Dir: "dry",
Command: yamlfmtWithArgs("-dry ."),
Update: *updateFlag,
}.Run(t)
}
func TestDryQuiet(t *testing.T) {
TestCase{
Dir: "dry_quiet",
Command: yamlfmtWithArgs("-dry -quiet ."),
Update: *updateFlag,
}.Run(t)
}
func TestPrintConfFlags(t *testing.T) {
TestCase{
Dir: "print_conf_flags",
Command: yamlfmtWithArgs("-print_conf -continue_on_error=true -formatter retain_line_breaks=true"),
Update: *updateFlag,
}.Run(t)
}
func TestPrintConfFile(t *testing.T) {
TestCase{
Dir: "print_conf_file",
Command: yamlfmtWithArgs("-print_conf"),
Update: *updateFlag,
}.Run(t)
}
func TestPrintConfFlagsAndFile(t *testing.T) {
TestCase{
Dir: "print_conf_flags_and_file",
Command: yamlfmtWithArgs("-print_conf -continue_on_error=true -formatter retain_line_breaks=true"),
Update: *updateFlag,
}.Run(t)
}
func TestMultilineStringBug(t *testing.T) {
TestCase{
Dir: "multiline_string_bug",
Command: yamlfmtWithArgs("-formatter trim_trailing_whitespace=true ."),
Update: *updateFlag,
}.Run(t)
}
func TestEOFNewline(t *testing.T) {
TestCase{
Dir: "eof_newline",
Command: yamlfmtWithArgs("-formatter eof_newline=true ."),
Update: *updateFlag,
}.Run(t)
}
func TestStripDirectives(t *testing.T) {
TestCase{
Dir: "strip_directives",
Command: yamlfmtWithArgs("-formatter strip_directives=true ."),
Update: *updateFlag,
}.Run(t)
}
func TestGitLabOutput(t *testing.T) {
TestCase{
Dir: "gitlab_output",
Command: yamlfmtWithArgs("-dry -output_format gitlab ."),
Update: *updateFlag,
}.Run(t)
}
func TestPatternFile(t *testing.T) {
TestCase{
Dir: "pattern_file",
Command: yamlfmtWithArgs("-match_type gitignore yamlfmt.patterns"),
Update: *updateFlag,
}.Run(t)
}