forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptional_boolean_test.go
46 lines (41 loc) · 1.12 KB
/
optional_boolean_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
package types_test
import (
"code.cloudfoundry.org/cli/types"
"code.cloudfoundry.org/jsonry"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
)
var _ = Describe("optional boolean", func() {
It("has an unset zero value", func() {
var s types.OptionalBoolean
Expect(s.IsSet).To(BeFalse())
Expect(s.Value).To(BeFalse())
})
DescribeTable(
"marshaling and unmarshalling",
func(o types.OptionalBoolean, j string) {
By("marshalling", func() {
container := struct {
A types.OptionalBoolean `jsonry:"a"`
}{
A: o,
}
data, err := jsonry.Marshal(container)
Expect(err).NotTo(HaveOccurred())
Expect(data).To(MatchJSON(j))
})
By("unmarshalling", func() {
var receiver struct {
A types.OptionalBoolean `jsonry:"a"`
}
err := jsonry.Unmarshal([]byte(j), &receiver)
Expect(err).NotTo(HaveOccurred())
Expect(receiver.A).To(Equal(o))
})
},
Entry("true", types.NewOptionalBoolean(true), `{"a": true}`),
Entry("false", types.NewOptionalBoolean(false), `{"a": false}`),
Entry("unset", types.OptionalBoolean{}, `{}`),
)
})