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
|
package gstruct_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/gstruct"
)
var _ = Describe("Struct", func() {
allFields := struct{ A, B string }{"a", "b"}
missingFields := struct{ A string }{"a"}
extraFields := struct{ A, B, C string }{"a", "b", "c"}
emptyFields := struct{ A, B string }{}
It("should strictly match all fields", func() {
m := MatchAllFields(Fields{
"B": Equal("b"),
"A": Equal("a"),
})
Expect(allFields).Should(m, "should match all fields")
Expect(missingFields).ShouldNot(m, "should fail with missing fields")
Expect(extraFields).ShouldNot(m, "should fail with extra fields")
Expect(emptyFields).ShouldNot(m, "should fail with empty fields")
m = MatchAllFields(Fields{
"A": Equal("a"),
"B": Equal("fail"),
})
Expect(allFields).ShouldNot(m, "should run nested matchers")
})
It("should handle empty structs", func() {
m := MatchAllFields(Fields{})
Expect(struct{}{}).Should(m, "should handle empty structs")
Expect(allFields).ShouldNot(m, "should fail with extra fields")
})
It("should ignore missing fields", func() {
m := MatchFields(IgnoreMissing, Fields{
"B": Equal("b"),
"A": Equal("a"),
})
Expect(allFields).Should(m, "should match all fields")
Expect(missingFields).Should(m, "should ignore missing fields")
Expect(extraFields).ShouldNot(m, "should fail with extra fields")
Expect(emptyFields).ShouldNot(m, "should fail with empty fields")
})
It("should ignore extra fields", func() {
m := MatchFields(IgnoreExtras, Fields{
"B": Equal("b"),
"A": Equal("a"),
})
Expect(allFields).Should(m, "should match all fields")
Expect(missingFields).ShouldNot(m, "should fail with missing fields")
Expect(extraFields).Should(m, "should ignore extra fields")
Expect(emptyFields).ShouldNot(m, "should fail with empty fields")
})
It("should ignore missing and extra fields", func() {
m := MatchFields(IgnoreMissing|IgnoreExtras, Fields{
"B": Equal("b"),
"A": Equal("a"),
})
Expect(allFields).Should(m, "should match all fields")
Expect(missingFields).Should(m, "should ignore missing fields")
Expect(extraFields).Should(m, "should ignore extra fields")
Expect(emptyFields).ShouldNot(m, "should fail with empty fields")
m = MatchFields(IgnoreMissing|IgnoreExtras, Fields{
"A": Equal("a"),
"B": Equal("fail"),
})
Expect(allFields).ShouldNot(m, "should run nested matchers")
})
})
|