-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext_test.go
111 lines (96 loc) · 2.84 KB
/
text_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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package goption_test
import (
"github.com/manicar2093/goption"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
var _ = Describe("Text", func() {
Describe("UnmarshalText", func() {
It("int type", func() {
var (
expectedNameData = 100
expectedNameDataString = "100"
jsonData = []byte(expectedNameDataString)
holder = goption.Empty[int]()
)
err := holder.UnmarshalText(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.Get()).To(Equal(expectedNameData))
})
It("float type", func() {
var (
expectedNameData = 100.00
expectedNameDataString = "100.00"
jsonData = []byte(expectedNameDataString)
holder = goption.Empty[float64]()
)
err := holder.UnmarshalText(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.Get()).To(Equal(expectedNameData))
})
It("string type", func() {
var (
expectedNameData = "hello"
expectedNameDataString = "hello"
jsonData = []byte(expectedNameDataString)
holder = goption.Empty[string]()
)
err := holder.UnmarshalText(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.Get()).To(Equal(expectedNameData))
})
It("uuid type", func() {
var (
expectedNameData = "1e2dd2c6-364b-4171-a906-554754eda276"
expectedNameDataString = "1e2dd2c6-364b-4171-a906-554754eda276"
jsonData = []byte(expectedNameDataString)
holder = goption.Empty[string]()
)
err := holder.UnmarshalText(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.Get()).To(Equal(expectedNameData))
})
It("slice type", func() {
var (
expectedNameData = `["hello", "world"]`
jsonData = []byte(expectedNameData)
holder = goption.Empty[[]string]()
)
err := holder.UnmarshalText(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.Get()).To(Equal([]string{"hello", "world"}))
})
It("slices objects type", func() {
type test struct {
Name string `json:"name"`
Age int `json:"age"`
}
var (
expectedNameData = `[{"name":"hello","age":20},{"name":"hello2","age":30}]`
jsonData = []byte(expectedNameData)
holder = goption.Empty[[]test]()
)
err := holder.UnmarshalText(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.Get()).To(Equal([]test{
{
Name: "hello",
Age: 20,
}, {
Name: "hello2",
Age: 30,
},
}))
})
It("empty string type", func() {
var (
expectedNameDataString = ""
jsonData = []byte(expectedNameDataString)
holder = goption.Empty[string]()
)
err := holder.UnmarshalText(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.IsPresent()).To(BeFalse())
})
})
})