-
Notifications
You must be signed in to change notification settings - Fork 2
/
bool_test.go
88 lines (83 loc) · 2.83 KB
/
bool_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
package route4me
import (
"encoding/json"
"testing"
)
func TestBoolUnmarshalling(t *testing.T) {
str := &struct {
FromStringInteger Bool `json:"fsi"`
FromInteger Bool `json:"fi"`
FromBoolean Bool `json:"fb"`
FromStringBoolean Bool `json:"fsb"`
}{}
err := json.Unmarshal([]byte(`{"fsi":"1","fi":1,"fb": true,"fsb":"true"}`), str)
if err != nil {
t.Error("Could not unmarshall integer to boolean: ", err)
}
if str.FromBoolean != true || str.FromInteger != true || str.FromStringBoolean != true || str.FromStringInteger != true {
t.Error("Error occured while unmarshalling bool")
}
err = json.Unmarshal([]byte(`{"fsi":"0","fi":0,"fb": false,"fsb":"false"}`), str)
if err != nil {
t.Error("Could not unmarshall integer to boolean: ", err)
}
if str.FromBoolean != false || str.FromInteger != false || str.FromStringBoolean != false || str.FromStringInteger != false {
t.Error("Error occured while unmarshalling bool")
}
err = json.Unmarshal([]byte(`{"fsi":"10"}`), str)
if err == nil {
t.Error("Marshalling undefined string should have errored")
}
}
func TestBoolMarshalling(t *testing.T) {
str := &struct {
True Bool `json:"true"`
False Bool `json:"false"`
}{True: true, False: false}
byt, err := json.Marshal(str)
if err != nil {
t.Error("Error occured while marshalling bool: ", err)
}
if string(byt) != `{"true":true,"false":false}` {
t.Error("Error occured while marshalling bool.")
}
}
func TestStringBoolUnmarshalling(t *testing.T) {
str := &struct {
FromStringInteger StringBool `json:"fsi"`
FromInteger StringBool `json:"fi"`
FromBoolean StringBool `json:"fb"`
FromStringBoolean StringBool `json:"fsb"`
}{}
err := json.Unmarshal([]byte(`{"fsi":"1","fi":1,"fb": true,"fsb":"true"}`), str)
if err != nil {
t.Error("Could not unmarshall integer to boolean: ", err)
}
if str.FromBoolean != true || str.FromInteger != true || str.FromStringBoolean != true || str.FromStringInteger != true {
t.Error("Error occured while unmarshalling bool")
}
err = json.Unmarshal([]byte(`{"fsi":"0","fi":0,"fb": false,"fsb":"false"}`), str)
if err != nil {
t.Error("Could not unmarshall integer to boolean: ", err)
}
if str.FromBoolean != false || str.FromInteger != false || str.FromStringBoolean != false || str.FromStringInteger != false {
t.Error("Error occured while unmarshalling bool")
}
err = json.Unmarshal([]byte(`{"fsi":"10"}`), str)
if err == nil {
t.Error("Marshalling undefined string should have errored")
}
}
func TestStringBoolMarshalling(t *testing.T) {
str := &struct {
True StringBool `json:"true"`
False StringBool `json:"false"`
}{True: true, False: false}
byt, err := json.Marshal(str)
if err != nil {
t.Error("Error occured while marshalling bool: ", err)
}
if string(byt) != `{"true":"TRUE","false":"FALSE"}` {
t.Error("Error occured while marshalling bool.")
}
}