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
|
package json
import (
"fmt"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestNewKeyword(t *testing.T) {
Convey("When unmarshalling JSON using the new keyword", t, func() {
Convey("can be used with BinData constructor", func() {
var jsonMap map[string]interface{}
key := "key"
value := `new BinData(1, "xyz")`
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldBeNil)
jsonValue, ok := jsonMap[key].(BinData)
So(ok, ShouldBeTrue)
So(jsonValue, ShouldResemble, BinData{1, "xyz"})
})
Convey("can be used with Date constructor", func() {
var jsonMap map[string]interface{}
key := "key"
value := "new Date(123)"
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldBeNil)
jsonValue, ok := jsonMap[key].(Date)
So(ok, ShouldBeTrue)
So(jsonValue, ShouldEqual, Date(123))
})
Convey("can be used with DBRef constructor", func() {
var jsonMap map[string]interface{}
key := "key"
value := `new BinData(1, "xyz")`
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldBeNil)
jsonValue, ok := jsonMap[key].(BinData)
So(ok, ShouldBeTrue)
So(jsonValue, ShouldResemble, BinData{1, "xyz"})
})
Convey("can be used with NumberInt constructor", func() {
var jsonMap map[string]interface{}
key := "key"
value := "new NumberInt(123)"
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldBeNil)
jsonValue, ok := jsonMap[key].(NumberInt)
So(ok, ShouldBeTrue)
So(jsonValue, ShouldEqual, NumberInt(123))
})
Convey("can be used with NumberLong constructor", func() {
var jsonMap map[string]interface{}
key := "key"
value := "new NumberLong(123)"
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldBeNil)
jsonValue, ok := jsonMap[key].(NumberLong)
So(ok, ShouldBeTrue)
So(jsonValue, ShouldEqual, NumberLong(123))
})
Convey("can be used with ObjectId constructor", func() {
var jsonMap map[string]interface{}
key := "key"
value := `new ObjectId("123")`
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldBeNil)
jsonValue, ok := jsonMap[key].(ObjectId)
So(ok, ShouldBeTrue)
So(jsonValue, ShouldEqual, ObjectId("123"))
})
Convey("can be used with RegExp constructor", func() {
var jsonMap map[string]interface{}
key := "key"
value := `new RegExp("foo", "i")`
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldBeNil)
jsonValue, ok := jsonMap[key].(RegExp)
So(ok, ShouldBeTrue)
So(jsonValue, ShouldResemble, RegExp{"foo", "i"})
})
Convey("can be used with Timestamp constructor", func() {
var jsonMap map[string]interface{}
key := "key"
value := "new Timestamp(123, 321)"
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldBeNil)
jsonValue, ok := jsonMap[key].(Timestamp)
So(ok, ShouldBeTrue)
So(jsonValue, ShouldResemble, Timestamp{123, 321})
})
Convey("cannot be used with literals", func() {
var jsonMap map[string]interface{}
key := "key"
literals := []string{"null", "true", "false", "undefined",
"NaN", "Infinity", "MinKey", "MaxKey"}
for _, value := range literals {
data := fmt.Sprintf(`{"%v":new %v}`, key, value)
Convey(value, func() {
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldNotBeNil)
})
}
})
Convey("must be followed by a space", func() {
var jsonMap map[string]interface{}
key := "key"
value := "newDate(123)"
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldNotBeNil)
})
Convey("cannot be chained togther (`new new ...`)", func() {
var jsonMap map[string]interface{}
key := "key"
value := "new new Date(123)"
data := fmt.Sprintf(`{"%v":%v}`, key, value)
err := Unmarshal([]byte(data), &jsonMap)
So(err, ShouldNotBeNil)
})
})
}
|