forked from meshery/meshkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcue_test.go
72 lines (64 loc) · 1.25 KB
/
cue_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
package utils
import (
"fmt"
"reflect"
"testing"
// "cuelang.org/go/cue"
"cuelang.org/go/cue/cuecontext"
// "cuelang.org/go/cue/errors"
)
var testSchema1 = `
name: string
task: string
properties?: {
item: "array"
}
`
var testValue1 = `
name: 43
properties: item : "asf"
`
var testValue2 = `
name: string
google: int
prop: item: string
`
func TestValidate(t *testing.T) {
var tests = []struct {
schema string
value string
want bool
}{
{testSchema1, testValue1, false},
}
for _, tt := range tests {
t.Run("validate", func(t *testing.T) {
ctx := cuecontext.New()
schema := ctx.CompileString(tt.schema)
value := ctx.CompileString(tt.value)
ans, errs := Validate(schema, value)
fmt.Println("errs: ", errs)
if ans != tt.want {
t.Errorf("got %v, want %v", ans, tt.want)
}
})
}
}
func TestGetNonConcreteFields(t *testing.T) {
var tests = []struct {
value string
want []string
}{
{testValue2, []string{"name", "google", "prop.item"}},
}
for _, tt := range tests {
t.Run("validate", func(t *testing.T) {
ctx := cuecontext.New()
value := ctx.CompileString(tt.value)
ans := GetNonConcreteFields(value)
if !reflect.DeepEqual(ans, tt.want) {
t.Errorf("got %v, want %v", ans, tt.want)
}
})
}
}