This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
forked from datacontract/datacontract-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quality_test.go
294 lines (269 loc) · 8.54 KB
/
quality_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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
package datacontract
import (
"bytes"
"errors"
"fmt"
"os"
"os/exec"
"path"
"strings"
"testing"
)
func TestPrintQuality(t *testing.T) {
type args struct {
dataContractLocation string
pathToQuality []string
}
tests := []LogOutputTest[args]{
{
name: "print",
args: args{
dataContractLocation: "test_resources/quality/datacontract-soda-embedded.yaml",
pathToQuality: []string{"quality", "specification"},
},
wantErr: false,
wantOutput: `checks for my_table:
- duplicate_count(order_id) = 0
`,
},
}
for _, tt := range tests {
RunLogOutputTest(t, tt, "PrintQuality", func(buffer *bytes.Buffer) error {
return PrintQuality(tt.args.dataContractLocation, tt.args.pathToQuality, buffer)
})
}
}
func TestInsertQuality(t *testing.T) {
type args struct {
dataContractLocation string
qualitySpecification []byte
qualityType string
pathToQuality []string
pathToType []string
}
tests := []FileWriteTest[args]{
{
name: "insert",
args: args{
dataContractLocation: "test_resources/quality/InsertQuality/datacontract.yaml",
qualitySpecification: []byte(`checks for my_table:
- duplicate_count(order_id) = 0
`),
qualityType: "SodaCL",
pathToQuality: []string{"quality", "specification"},
pathToType: []string{"quality", "type"},
},
wantErr: false,
expectedFileLocation: "test_resources/quality/InsertQuality/datacontract_inserted.yaml",
},
}
for _, tt := range tests {
RunFileWriteTest(t, tt, "InsertQuality", tt.args.dataContractLocation, func(tempFileName string) error {
return InsertQuality(tempFileName, tt.args.qualitySpecification, tt.args.qualityType, tt.args.pathToQuality, tt.args.pathToType)
})
}
}
func TestQualityCheck_Soda_Output(t *testing.T) {
type args struct {
dataContractFileName string
pathToType []string
pathToSpecification []string
options QualityCheckOptions
}
tests := []LogOutputTest[args]{
{
name: "success",
args: args{
dataContractFileName: "test_resources/quality/datacontract-soda-embedded.yaml",
pathToType: []string{"quality", "type"},
pathToSpecification: []string{"quality", "specification"},
options: QualityCheckOptions{},
},
wantOutput: `output from soda
🟢 quality checks on data contract passed!
`,
},
{
name: "error",
args: args{
dataContractFileName: "test_resources/quality/datacontract-soda-embedded.yaml",
pathToType: []string{"quality", "type"},
pathToSpecification: []string{"quality", "specification"},
options: QualityCheckOptions{},
},
wantErr: true,
wantOutput: `output from soda
🔴 quality checks on data contract failed!
`,
},
}
defer func() { cmdCombinedOutput = (*exec.Cmd).CombinedOutput }()
for _, tt := range tests {
cmdCombinedOutput = func(cmd *exec.Cmd) ([]byte, error) {
if tt.name == "success" {
return []byte("output from soda"), nil
} else {
return []byte("output from soda"), errors.New("checks failed")
}
}
RunLogOutputTest(t, tt, "Diff", func(buffer *bytes.Buffer) error {
return QualityCheck(tt.args.dataContractFileName, tt.args.pathToType, tt.args.pathToSpecification, tt.args.options, buffer)
})
}
}
func TestQualityCheck_Soda_ChecksFileContent(t *testing.T) {
type args struct {
dataContractFileName string
pathToType []string
pathToSpecification []string
options QualityCheckOptions
}
tests := []struct {
name string
args args
wantSodaArgs []string
wantErr bool
wantFileContent string
}{
{
name: "embedded",
args: args{
dataContractFileName: "test_resources/quality/datacontract-soda-embedded.yaml",
pathToType: []string{"quality", "type"},
pathToSpecification: []string{"quality", "specification"},
options: QualityCheckOptions{},
},
wantFileContent: `checks for my_table:
- duplicate_count(order_id) = 0
`,
},
{
name: "referenced",
args: args{
dataContractFileName: "test_resources/quality/datacontract-soda-referenced.yaml",
pathToType: []string{"quality", "type"},
pathToSpecification: []string{"quality", "specification"},
options: QualityCheckOptions{},
},
wantFileContent: `checks for my_table:
- duplicate_count(order_id) = 0
`,
},
}
defer func() { cmdCombinedOutput = (*exec.Cmd).CombinedOutput }()
for _, tt := range tests {
cmdCombinedOutput = func(cmd *exec.Cmd) ([]byte, error) {
bytes, _ := os.ReadFile(cmd.Args[len(cmd.Args)-1])
if tt.wantFileContent != string(bytes) {
return nil, fmt.Errorf("unwanted file content: \n%v", string(bytes))
}
return nil, nil
}
t.Run(tt.name, func(t *testing.T) {
if err := QualityCheck(tt.args.dataContractFileName, tt.args.pathToType, tt.args.pathToSpecification, tt.args.options, os.Stdout); (err != nil) != tt.wantErr {
t.Errorf("QualityCheck() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestQualityCheck_Soda_Arguments(t *testing.T) {
otherDatasource := "duckdb_local"
otherConfigurationFileName := "./my-soda-conf.yaml"
type args struct {
dataContractFileName string
pathToType []string
pathToSpecification []string
options QualityCheckOptions
}
tests := []struct {
name string
args args
wantSodaArgs []string
wantErr bool
}{
{
name: "with defaults",
args: args{
dataContractFileName: "test_resources/quality/datacontract-soda-embedded.yaml",
pathToType: []string{"quality", "type"},
pathToSpecification: []string{"quality", "specification"},
options: QualityCheckOptions{},
},
wantSodaArgs: []string{"soda", "scan", "-d", "default"},
},
{
name: "with data source option",
args: args{
dataContractFileName: "test_resources/quality/datacontract-soda-embedded.yaml",
pathToType: []string{"quality", "type"},
pathToSpecification: []string{"quality", "specification"},
options: QualityCheckOptions{SodaDataSource: &otherDatasource},
},
wantSodaArgs: []string{"soda", "scan", "-d", otherDatasource},
},
{
name: "with configuration file name option",
args: args{
dataContractFileName: "test_resources/quality/datacontract-soda-embedded.yaml",
pathToType: []string{"quality", "type"},
pathToSpecification: []string{"quality", "specification"},
options: QualityCheckOptions{SodaConfigurationFileName: &otherConfigurationFileName},
},
wantSodaArgs: []string{"soda", "scan", "-d", "default", "-c", otherConfigurationFileName},
},
{
name: "with all soda options",
args: args{
dataContractFileName: "test_resources/quality/datacontract-soda-embedded.yaml",
pathToType: []string{"quality", "type"},
pathToSpecification: []string{"quality", "specification"},
options: QualityCheckOptions{
SodaDataSource: &otherDatasource,
SodaConfigurationFileName: &otherConfigurationFileName,
},
},
wantSodaArgs: []string{"soda", "scan", "-d", otherDatasource, "-c", otherConfigurationFileName},
},
}
defer func() { cmdCombinedOutput = (*exec.Cmd).CombinedOutput }()
for _, tt := range tests {
cmdCombinedOutput = mockSodaCLI(tt.wantSodaArgs)
t.Run(tt.name, func(t *testing.T) {
if err := QualityCheck(tt.args.dataContractFileName, tt.args.pathToType, tt.args.pathToSpecification, tt.args.options, os.Stdout); (err != nil) != tt.wantErr {
t.Errorf("QualityCheck() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func mockSodaCLI(wantedArguments []string) func(cmd *exec.Cmd) (res []byte, err error) {
return func(cmd *exec.Cmd) (res []byte, err error) {
if len(wantedArguments) != len(cmd.Args)-1 {
return nil, errors.New("unwanted soda argument length")
}
for i, actualArg := range wantedArguments[0:] {
err = checkArgument(cmd, i, actualArg)
if err != nil {
return nil, err
}
}
err = checkFileNameArgument(cmd)
if err != nil {
return nil, err
}
return []byte{}, nil
}
}
func checkFileNameArgument(cmd *exec.Cmd) error {
fileName := cmd.Args[len(cmd.Args)-1]
expectedPrefix := path.Join(os.TempDir(), "quality-checks-")
if !strings.HasPrefix(fileName, expectedPrefix) {
return fmt.Errorf("unwanted quality checks filename argument: %v", fileName)
}
return nil
}
func checkArgument(cmd *exec.Cmd, position int, argument string) error {
if cmd.Args[position] != argument {
return fmt.Errorf("invalid argument %v on position %v", argument, position)
}
return nil
}