forked from dugancathal/dynago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes_test.go
195 lines (160 loc) · 5.81 KB
/
types_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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
package dynago_test
import (
"fmt"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/bemobi/dynago"
)
func ExampleList() {
l := dynago.List{
1234,
"Foo",
dynago.Document{"Foo": "Bar"},
}
fmt.Printf("%s", l[1]) //Output: Foo
}
func TestNumberIntValReturnsTheValueAsAnInt(t *testing.T) {
num := dynago.Number("18")
intVal, err := num.IntVal()
assert.Equal(t, 18, intVal)
assert.Nil(t, err)
}
func TestNumberIntValReturnsAnErrorIfItCannotParseTheValue(t *testing.T) {
num := dynago.Number("nope")
intVal, err := num.IntVal()
assert.Equal(t, 0, intVal)
assert.Error(t, err)
}
func TestNumberInt64ValReturnsTheValueAsAnInt(t *testing.T) {
num := dynago.Number("18")
intVal, err := num.Int64Val()
assert.Equal(t, int64(18), intVal)
assert.Nil(t, err)
}
func TestNumberUint64ValReturnsTheValueAsAnInt(t *testing.T) {
num := dynago.Number("123456789012")
intVal, err := num.Uint64Val()
assert.Equal(t, uint64(123456789012), intVal)
assert.Nil(t, err)
}
func TestNumberInt64ValReturnsAnErrorIfItCannotParseTheValue(t *testing.T) {
num := dynago.Number("nope")
intVal, err := num.Int64Val()
assert.Equal(t, int64(0), intVal)
assert.Error(t, err)
}
func TestNumberFloatValReturnsTheValueAsAnfloat(t *testing.T) {
num := dynago.Number("18.12")
floatVal, err := num.FloatVal()
assert.Equal(t, float64(18.12), floatVal)
assert.Nil(t, err)
}
func TestNumberFloatValReturnsAnErrorIfItCannotParseTheValue(t *testing.T) {
num := dynago.Number("nope")
floatVal, err := num.FloatVal()
assert.Equal(t, float64(0), floatVal)
assert.Error(t, err)
}
func TestListAsDocumentListReturnsAListOfDocuments(t *testing.T) {
list := dynago.List{dynago.Document{"id": 1}}
docList, _ := list.AsDocumentList()
assert.Equal(t, dynago.Document{"id": 1}, docList[0])
}
func TestListAsDocumentListReturnsAnErrorIfThereAreNonDocuments(t *testing.T) {
list := dynago.List{dynago.Document{"real": "item"}, "imnotadocument"}
_, err := list.AsDocumentList()
assert.Equal(t, err.Error(), "item at index 1 was not a Document")
}
func TestListAsDocumentListReturnsTheDocumentsUpToTheFirstNonDocument(t *testing.T) {
list := dynago.List{dynago.Document{"real": "item"}, "imnotadocument", dynago.Document{"i won't": "show up"}}
docList, _ := list.AsDocumentList()
assert.Equal(t, []dynago.Document{{"real": "item"}}, docList)
}
func TestDocumentGetStringReturnsTheUnderlyingValueAsAString(t *testing.T) {
doc := dynago.Document{"name": "Timmy Testerson"}
assert.Equal(t, "Timmy Testerson", doc.GetString("name"))
}
func TestDocumentGetStringReturnsAnEmptyStringWhenTheKeyIsNotPresent(t *testing.T) {
doc := dynago.Document{}
assert.Equal(t, "", doc.GetString("name"))
}
func TestDocumentGetNumberReturnsTheDynagoNumberWrappingTheValue(t *testing.T) {
doc := dynago.Document{"id": dynago.Number("12")}
assert.Equal(t, dynago.Number("12"), doc.GetNumber("id"))
}
func TestDocumentGetNumberReturnsAnEmptyNumberWhenTheKeyIsNotPresent(t *testing.T) {
doc := dynago.Document{}
assert.Equal(t, dynago.Number(""), doc.GetNumber("id"))
}
func TestDocumentGetNumberPanicsIfTheUnderlyingTypeIsNotANumber(t *testing.T) {
doc := dynago.Document{"id": "not-a-dynago-number"}
assert.Panics(t, func() {
doc.GetNumber("id")
})
}
func TestDocumentGetStringSetReturnsTheStringSetValue(t *testing.T) {
doc := dynago.Document{"vals": dynago.StringSet{"val1", "val2"}}
assert.Equal(t, dynago.StringSet{"val1", "val2"}, doc.GetStringSet("vals"))
}
func TestDocumentGetStringSetReturnsAnEmptyStringSetWhenTheKeyDoesNotExist(t *testing.T) {
doc := dynago.Document{}
assert.Equal(t, dynago.StringSet{}, doc.GetStringSet("vals"))
}
func TestDocumentGetStringSetPanic(t *testing.T) {
doc := dynago.Document{"vals": "not-a-string-slice"}
assert.Panics(t, func() {
doc.GetStringSet("vals")
})
}
func TestDocumentGetTimeReturnsTheTimeValueFromISO8601(t *testing.T) {
doc := dynago.Document{"time": "1990-04-16T00:00:00Z"}
val, _ := time.Parse("2006-01-02T15:04:05Z", "1990-04-16T00:00:00Z")
assert.Equal(t, &val, doc.GetTime("time"))
}
func TestDocumentGetTimeReturnsNilWhenTheKeyDoesNotExist(t *testing.T) {
doc := dynago.Document{}
assert.Nil(t, doc.GetTime("time"))
}
func TestDocumentGetTimePanicsWhenFormatIsNotIso8601(t *testing.T) {
doc := dynago.Document{"time": "Foo"}
assert.Panics(t, func() { doc.GetTime("time") })
}
func TestDocumentMarshalJSONDoesNotIncludeEmptyValues(t *testing.T) {
doc := dynago.Document{"key1": "shows up", "key2": 9, "fields": dynago.StringSet([]string{"is", "present"}), "id": "", "name": nil, "tags": []string{}}
jsonDoc, _ := doc.MarshalJSON()
assert.Contains(t, string(jsonDoc), `"fields":{"SS":["is","present"]}`)
assert.Contains(t, string(jsonDoc), `"key1":{"S":"shows up"}`)
assert.Contains(t, string(jsonDoc), `"key2":{"N":"9"}`)
}
func TestDocumentGetBool(t *testing.T) {
var doc dynago.Document
for _, n := range []string{"1", "-1", "5", "100"} {
doc = dynago.Document{"val": dynago.Number(n)}
assert.Equal(t, true, doc.GetBool("val"))
}
doc = dynago.Document{"val": dynago.Number("0")}
assert.Equal(t, false, doc.GetBool("val"))
doc = dynago.Document{}
assert.Equal(t, false, doc.GetBool("val"))
doc = dynago.Document{"val": nil}
assert.Equal(t, false, doc.GetBool("val"))
doc = dynago.Document{"val": dynago.Number("b")}
assert.Panics(t, func() {
doc.GetBool("val")
})
doc = dynago.Document{"val": "hello"}
assert.Panics(t, func() {
doc.GetBool("val")
})
doc = dynago.Document{"val": true}
assert.Equal(t, true, doc.GetBool("val"))
doc = dynago.Document{"val": false}
assert.Equal(t, false, doc.GetBool("val"))
}
func TestDocumentGetList(t *testing.T) {
doc := dynago.Document{"vals": dynago.List{"val1", "val2"}, "wrongtype": 4}
assert.Equal(t, dynago.List{"val1", "val2"}, doc.GetList("vals"))
assert.Equal(t, dynago.List(nil), doc.GetList("notarealkey"))
assert.Panics(t, func() { doc.GetList("wrongtype") })
}