-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathjsonvalidate_test.go
73 lines (70 loc) · 1.86 KB
/
jsonvalidate_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
package validation
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSchemaValidate(t *testing.T) {
for _, test := range []struct {
name string
jsonSchema string
schemaContent string
expectedErr string
}{
{
name: "success",
jsonSchema: JSONSchemaParserSettings,
schemaContent: `{
"parser_settings": {
"version": "test-version",
"file_format_type": "test-format",
"encoding": "utf-8"
}
}`,
expectedErr: "",
},
{
name: "invalid json",
jsonSchema: ">>",
schemaContent: `{
"parser_settings": {
"version": "test-version",
"file_format_type": "test-format"
}
}`,
expectedErr: `unable to perform schema validation: invalid character '>' looking for beginning of value`,
},
{
name: "invalid encoding",
jsonSchema: JSONSchemaParserSettings,
schemaContent: `{
"parser_settings": {
"version": "test-version",
"file_format_type": "test-format",
"encoding": "invalid"
}
}`,
expectedErr: `schema 'test-schema' validation failed: parser_settings.encoding: parser_settings.encoding must be one of the following: "utf-8", "iso-8859-1", "windows-1252"`,
},
{
name: "multiple errors",
jsonSchema: JSONSchemaParserSettings,
schemaContent: `{
"parser_settings": {
"version": "test-version",
"unknown": "blah"
}
}`,
expectedErr: "schema 'test-schema' validation failed:\nparser_settings: Additional property unknown is not allowed\nparser_settings: file_format_type is required",
},
} {
t.Run(test.name, func(t *testing.T) {
err := SchemaValidate("test-schema", []byte(test.schemaContent), test.jsonSchema)
if test.expectedErr != "" {
assert.Error(t, err)
assert.Equal(t, test.expectedErr, err.Error())
} else {
assert.NoError(t, err)
}
})
}
}