forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptional_string_test.go
69 lines (61 loc) · 1.66 KB
/
optional_string_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
package types_test
import (
"code.cloudfoundry.org/cli/types"
"code.cloudfoundry.org/jsonry"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("optional string", func() {
It("has an unset zero value", func() {
var s types.OptionalString
Expect(s.IsSet).To(BeFalse())
Expect(s.Value).To(BeEmpty())
})
It("can be converted to a string", func() {
Expect(types.OptionalString{}.String()).To(Equal(""))
Expect(types.NewOptionalString("").String()).To(Equal(""))
Expect(types.NewOptionalString("foo").String()).To(Equal("foo"))
})
When("marshaling", func() {
It("can marshal to a string", func() {
s := struct {
S types.OptionalString
}{
S: types.NewOptionalString("foo"),
}
Expect(jsonry.Marshal(s)).To(MatchJSON(`{"S":"foo"}`))
})
It("can marshal to an empty string", func() {
s := struct {
S types.OptionalString
}{
S: types.NewOptionalString(""),
}
Expect(jsonry.Marshal(s)).To(MatchJSON(`{"S":""}`))
})
It("can be omitted during marshaling", func() {
var s struct {
S types.OptionalString
}
Expect(jsonry.Marshal(s)).To(MatchJSON(`{}`))
})
})
When("unmarshaling", func() {
It("can be unmarshaled from an empty string", func() {
var s struct {
S types.OptionalString
}
Expect(jsonry.Unmarshal([]byte(`{"S":""}`), &s)).NotTo(HaveOccurred())
Expect(s.S.IsSet).To(BeTrue())
Expect(s.S.Value).To(BeEmpty())
})
It("can be unmarshaled from null", func() {
var s struct {
S types.OptionalString
}
Expect(jsonry.Unmarshal([]byte(`{"S":null}`), &s)).NotTo(HaveOccurred())
Expect(s.S.IsSet).To(BeTrue())
Expect(s.S.Value).To(BeEmpty())
})
})
})