jsonpb_test.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  1. // Go support for Protocol Buffers - Google's data interchange format
  2. //
  3. // Copyright 2015 The Go Authors. All rights reserved.
  4. // https://github.com/golang/protobuf
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions are
  8. // met:
  9. //
  10. // * Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. // * Redistributions in binary form must reproduce the above
  13. // copyright notice, this list of conditions and the following disclaimer
  14. // in the documentation and/or other materials provided with the
  15. // distribution.
  16. // * Neither the name of Google Inc. nor the names of its
  17. // contributors may be used to endorse or promote products derived from
  18. // this software without specific prior written permission.
  19. //
  20. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. package jsonpb
  32. import (
  33. "bytes"
  34. "encoding/json"
  35. "io"
  36. "reflect"
  37. "strings"
  38. "testing"
  39. pb "github.com/gogo/protobuf/jsonpb/jsonpb_test_proto"
  40. "github.com/gogo/protobuf/proto"
  41. proto3pb "github.com/gogo/protobuf/proto/proto3_proto"
  42. "github.com/gogo/protobuf/types"
  43. )
  44. var (
  45. marshaler = Marshaler{}
  46. marshalerAllOptions = Marshaler{
  47. Indent: " ",
  48. }
  49. simpleObject = &pb.Simple{
  50. OInt32: proto.Int32(-32),
  51. OInt64: proto.Int64(-6400000000),
  52. OUint32: proto.Uint32(32),
  53. OUint64: proto.Uint64(6400000000),
  54. OSint32: proto.Int32(-13),
  55. OSint64: proto.Int64(-2600000000),
  56. OFloat: proto.Float32(3.14),
  57. ODouble: proto.Float64(6.02214179e23),
  58. OBool: proto.Bool(true),
  59. OString: proto.String("hello \"there\""),
  60. OBytes: []byte("beep boop"),
  61. OCastBytes: pb.Bytes("wow"),
  62. }
  63. simpleObjectJSON = `{` +
  64. `"oBool":true,` +
  65. `"oInt32":-32,` +
  66. `"oInt64":"-6400000000",` +
  67. `"oUint32":32,` +
  68. `"oUint64":"6400000000",` +
  69. `"oSint32":-13,` +
  70. `"oSint64":"-2600000000",` +
  71. `"oFloat":3.14,` +
  72. `"oDouble":6.02214179e+23,` +
  73. `"oString":"hello \"there\"",` +
  74. `"oBytes":"YmVlcCBib29w",` +
  75. `"oCastBytes":"d293"` +
  76. `}`
  77. simpleObjectPrettyJSON = `{
  78. "oBool": true,
  79. "oInt32": -32,
  80. "oInt64": "-6400000000",
  81. "oUint32": 32,
  82. "oUint64": "6400000000",
  83. "oSint32": -13,
  84. "oSint64": "-2600000000",
  85. "oFloat": 3.14,
  86. "oDouble": 6.02214179e+23,
  87. "oString": "hello \"there\"",
  88. "oBytes": "YmVlcCBib29w",
  89. "oCastBytes": "d293"
  90. }`
  91. repeatsObject = &pb.Repeats{
  92. RBool: []bool{true, false, true},
  93. RInt32: []int32{-3, -4, -5},
  94. RInt64: []int64{-123456789, -987654321},
  95. RUint32: []uint32{1, 2, 3},
  96. RUint64: []uint64{6789012345, 3456789012},
  97. RSint32: []int32{-1, -2, -3},
  98. RSint64: []int64{-6789012345, -3456789012},
  99. RFloat: []float32{3.14, 6.28},
  100. RDouble: []float64{299792458 * 1e20, 6.62606957e-34},
  101. RString: []string{"happy", "days"},
  102. RBytes: [][]byte{[]byte("skittles"), []byte("m&m's")},
  103. }
  104. repeatsObjectJSON = `{` +
  105. `"rBool":[true,false,true],` +
  106. `"rInt32":[-3,-4,-5],` +
  107. `"rInt64":["-123456789","-987654321"],` +
  108. `"rUint32":[1,2,3],` +
  109. `"rUint64":["6789012345","3456789012"],` +
  110. `"rSint32":[-1,-2,-3],` +
  111. `"rSint64":["-6789012345","-3456789012"],` +
  112. `"rFloat":[3.14,6.28],` +
  113. `"rDouble":[2.99792458e+28,6.62606957e-34],` +
  114. `"rString":["happy","days"],` +
  115. `"rBytes":["c2tpdHRsZXM=","bSZtJ3M="]` +
  116. `}`
  117. repeatsObjectPrettyJSON = `{
  118. "rBool": [
  119. true,
  120. false,
  121. true
  122. ],
  123. "rInt32": [
  124. -3,
  125. -4,
  126. -5
  127. ],
  128. "rInt64": [
  129. "-123456789",
  130. "-987654321"
  131. ],
  132. "rUint32": [
  133. 1,
  134. 2,
  135. 3
  136. ],
  137. "rUint64": [
  138. "6789012345",
  139. "3456789012"
  140. ],
  141. "rSint32": [
  142. -1,
  143. -2,
  144. -3
  145. ],
  146. "rSint64": [
  147. "-6789012345",
  148. "-3456789012"
  149. ],
  150. "rFloat": [
  151. 3.14,
  152. 6.28
  153. ],
  154. "rDouble": [
  155. 2.99792458e+28,
  156. 6.62606957e-34
  157. ],
  158. "rString": [
  159. "happy",
  160. "days"
  161. ],
  162. "rBytes": [
  163. "c2tpdHRsZXM=",
  164. "bSZtJ3M="
  165. ]
  166. }`
  167. innerSimple = &pb.Simple{OInt32: proto.Int32(-32)}
  168. innerSimple2 = &pb.Simple{OInt64: proto.Int64(25)}
  169. innerRepeats = &pb.Repeats{RString: []string{"roses", "red"}}
  170. innerRepeats2 = &pb.Repeats{RString: []string{"violets", "blue"}}
  171. complexObject = &pb.Widget{
  172. Color: pb.Widget_GREEN.Enum(),
  173. RColor: []pb.Widget_Color{pb.Widget_RED, pb.Widget_GREEN, pb.Widget_BLUE},
  174. Simple: innerSimple,
  175. RSimple: []*pb.Simple{innerSimple, innerSimple2},
  176. Repeats: innerRepeats,
  177. RRepeats: []*pb.Repeats{innerRepeats, innerRepeats2},
  178. }
  179. complexObjectJSON = `{"color":"GREEN",` +
  180. `"rColor":["RED","GREEN","BLUE"],` +
  181. `"simple":{"oInt32":-32},` +
  182. `"rSimple":[{"oInt32":-32},{"oInt64":"25"}],` +
  183. `"repeats":{"rString":["roses","red"]},` +
  184. `"rRepeats":[{"rString":["roses","red"]},{"rString":["violets","blue"]}]` +
  185. `}`
  186. complexObjectPrettyJSON = `{
  187. "color": "GREEN",
  188. "rColor": [
  189. "RED",
  190. "GREEN",
  191. "BLUE"
  192. ],
  193. "simple": {
  194. "oInt32": -32
  195. },
  196. "rSimple": [
  197. {
  198. "oInt32": -32
  199. },
  200. {
  201. "oInt64": "25"
  202. }
  203. ],
  204. "repeats": {
  205. "rString": [
  206. "roses",
  207. "red"
  208. ]
  209. },
  210. "rRepeats": [
  211. {
  212. "rString": [
  213. "roses",
  214. "red"
  215. ]
  216. },
  217. {
  218. "rString": [
  219. "violets",
  220. "blue"
  221. ]
  222. }
  223. ]
  224. }`
  225. colorPrettyJSON = `{
  226. "color": 2
  227. }`
  228. colorListPrettyJSON = `{
  229. "color": 1000,
  230. "rColor": [
  231. "RED"
  232. ]
  233. }`
  234. nummyPrettyJSON = `{
  235. "nummy": {
  236. "1": 2,
  237. "3": 4
  238. }
  239. }`
  240. objjyPrettyJSON = `{
  241. "objjy": {
  242. "1": {
  243. "dub": 1
  244. }
  245. }
  246. }`
  247. realNumber = &pb.Real{Value: proto.Float64(3.14159265359)}
  248. realNumberName = "Pi"
  249. complexNumber = &pb.Complex{Imaginary: proto.Float64(0.5772156649)}
  250. realNumberJSON = `{` +
  251. `"value":3.14159265359,` +
  252. `"[jsonpb.Complex.real_extension]":{"imaginary":0.5772156649},` +
  253. `"[jsonpb.name]":"Pi"` +
  254. `}`
  255. anySimple = &pb.KnownTypes{
  256. An: &types.Any{
  257. TypeUrl: "something.example.com/jsonpb.Simple",
  258. Value: []byte{
  259. // &pb.Simple{OBool:true}
  260. 1 << 3, 1,
  261. },
  262. },
  263. }
  264. anySimpleJSON = `{"an":{"@type":"something.example.com/jsonpb.Simple","oBool":true}}`
  265. anySimplePrettyJSON = `{
  266. "an": {
  267. "@type": "something.example.com/jsonpb.Simple",
  268. "oBool": true
  269. }
  270. }`
  271. anyWellKnown = &pb.KnownTypes{
  272. An: &types.Any{
  273. TypeUrl: "type.googleapis.com/google.protobuf.Duration",
  274. Value: []byte{
  275. // &durpb.Duration{Seconds: 1, Nanos: 212000000 }
  276. 1 << 3, 1, // seconds
  277. 2 << 3, 0x80, 0xba, 0x8b, 0x65, // nanos
  278. },
  279. },
  280. }
  281. anyWellKnownJSON = `{"an":{"@type":"type.googleapis.com/google.protobuf.Duration","value":"1.212s"}}`
  282. anyWellKnownPrettyJSON = `{
  283. "an": {
  284. "@type": "type.googleapis.com/google.protobuf.Duration",
  285. "value": "1.212s"
  286. }
  287. }`
  288. )
  289. func init() {
  290. if err := proto.SetExtension(realNumber, pb.E_Name, &realNumberName); err != nil {
  291. panic(err)
  292. }
  293. if err := proto.SetExtension(realNumber, pb.E_Complex_RealExtension, complexNumber); err != nil {
  294. panic(err)
  295. }
  296. }
  297. var marshalingTests = []struct {
  298. desc string
  299. marshaler Marshaler
  300. pb proto.Message
  301. json string
  302. }{
  303. {"simple flat object", marshaler, simpleObject, simpleObjectJSON},
  304. {"simple pretty object", marshalerAllOptions, simpleObject, simpleObjectPrettyJSON},
  305. {"repeated fields flat object", marshaler, repeatsObject, repeatsObjectJSON},
  306. {"repeated fields pretty object", marshalerAllOptions, repeatsObject, repeatsObjectPrettyJSON},
  307. {"nested message/enum flat object", marshaler, complexObject, complexObjectJSON},
  308. {"nested message/enum pretty object", marshalerAllOptions, complexObject, complexObjectPrettyJSON},
  309. {"enum-string flat object", Marshaler{},
  310. &pb.Widget{Color: pb.Widget_BLUE.Enum()}, `{"color":"BLUE"}`},
  311. {"enum-value pretty object", Marshaler{EnumsAsInts: true, Indent: " "},
  312. &pb.Widget{Color: pb.Widget_BLUE.Enum()}, colorPrettyJSON},
  313. {"unknown enum value object", marshalerAllOptions,
  314. &pb.Widget{Color: pb.Widget_Color(1000).Enum(), RColor: []pb.Widget_Color{pb.Widget_RED}}, colorListPrettyJSON},
  315. {"repeated proto3 enum", Marshaler{},
  316. &proto3pb.Message{RFunny: []proto3pb.Message_Humour{
  317. proto3pb.Message_PUNS,
  318. proto3pb.Message_SLAPSTICK,
  319. }},
  320. `{"rFunny":["PUNS","SLAPSTICK"]}`},
  321. {"repeated proto3 enum as int", Marshaler{EnumsAsInts: true},
  322. &proto3pb.Message{RFunny: []proto3pb.Message_Humour{
  323. proto3pb.Message_PUNS,
  324. proto3pb.Message_SLAPSTICK,
  325. }},
  326. `{"rFunny":[1,2]}`},
  327. {"empty value", marshaler, &pb.Simple3{}, `{}`},
  328. {"empty value emitted", Marshaler{EmitDefaults: true}, &pb.Simple3{}, `{"dub":0}`},
  329. {"map<int64, int32>", marshaler, &pb.Mappy{Nummy: map[int64]int32{1: 2, 3: 4}}, `{"nummy":{"1":2,"3":4}}`},
  330. {"map<int64, int32>", marshalerAllOptions, &pb.Mappy{Nummy: map[int64]int32{1: 2, 3: 4}}, nummyPrettyJSON},
  331. {"map<string, string>", marshaler,
  332. &pb.Mappy{Strry: map[string]string{`"one"`: "two", "three": "four"}},
  333. `{"strry":{"\"one\"":"two","three":"four"}}`},
  334. {"map<int32, Object>", marshaler,
  335. &pb.Mappy{Objjy: map[int32]*pb.Simple3{1: {Dub: 1}}}, `{"objjy":{"1":{"dub":1}}}`},
  336. {"map<int32, Object>", marshalerAllOptions,
  337. &pb.Mappy{Objjy: map[int32]*pb.Simple3{1: {Dub: 1}}}, objjyPrettyJSON},
  338. {"map<int64, string>", marshaler, &pb.Mappy{Buggy: map[int64]string{1234: "yup"}},
  339. `{"buggy":{"1234":"yup"}}`},
  340. {"map<bool, bool>", marshaler, &pb.Mappy{Booly: map[bool]bool{false: true}}, `{"booly":{"false":true}}`},
  341. // TODO: This is broken.
  342. //{"map<string, enum>", marshaler, &pb.Mappy{Enumy: map[string]pb.Numeral{"XIV": pb.Numeral_ROMAN}}, `{"enumy":{"XIV":"ROMAN"}`},
  343. {"map<string, enum as int>", Marshaler{EnumsAsInts: true}, &pb.Mappy{Enumy: map[string]pb.Numeral{"XIV": pb.Numeral_ROMAN}}, `{"enumy":{"XIV":2}}`},
  344. {"map<int32, bool>", marshaler, &pb.Mappy{S32Booly: map[int32]bool{1: true, 3: false, 10: true, 12: false}}, `{"s32booly":{"1":true,"3":false,"10":true,"12":false}}`},
  345. {"map<int64, bool>", marshaler, &pb.Mappy{S64Booly: map[int64]bool{1: true, 3: false, 10: true, 12: false}}, `{"s64booly":{"1":true,"3":false,"10":true,"12":false}}`},
  346. {"map<uint32, bool>", marshaler, &pb.Mappy{U32Booly: map[uint32]bool{1: true, 3: false, 10: true, 12: false}}, `{"u32booly":{"1":true,"3":false,"10":true,"12":false}}`},
  347. {"map<uint64, bool>", marshaler, &pb.Mappy{U64Booly: map[uint64]bool{1: true, 3: false, 10: true, 12: false}}, `{"u64booly":{"1":true,"3":false,"10":true,"12":false}}`},
  348. {"proto2 map<int64, string>", marshaler, &pb.Maps{MInt64Str: map[int64]string{213: "cat"}},
  349. `{"mInt64Str":{"213":"cat"}}`},
  350. {"proto2 map<bool, Object>", marshaler,
  351. &pb.Maps{MBoolSimple: map[bool]*pb.Simple{true: {OInt32: proto.Int32(1)}}},
  352. `{"mBoolSimple":{"true":{"oInt32":1}}}`},
  353. {"oneof, not set", marshaler, &pb.MsgWithOneof{}, `{}`},
  354. {"oneof, set", marshaler, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_Title{Title: "Grand Poobah"}}, `{"title":"Grand Poobah"}`},
  355. {"force orig_name", Marshaler{OrigName: true}, &pb.Simple{OInt32: proto.Int32(4)},
  356. `{"o_int32":4}`},
  357. {"proto2 extension", marshaler, realNumber, realNumberJSON},
  358. {"Any with message", marshaler, anySimple, anySimpleJSON},
  359. {"Any with message and indent", marshalerAllOptions, anySimple, anySimplePrettyJSON},
  360. {"Any with WKT", marshaler, anyWellKnown, anyWellKnownJSON},
  361. {"Any with WKT and indent", marshalerAllOptions, anyWellKnown, anyWellKnownPrettyJSON},
  362. {"Duration", marshaler, &pb.KnownTypes{Dur: &types.Duration{Seconds: 3}}, `{"dur":"3.000s"}`},
  363. {"Struct", marshaler, &pb.KnownTypes{St: &types.Struct{
  364. Fields: map[string]*types.Value{
  365. "one": {Kind: &types.Value_StringValue{StringValue: "loneliest number"}},
  366. "two": {Kind: &types.Value_NullValue{NullValue: types.NULL_VALUE}},
  367. },
  368. }}, `{"st":{"one":"loneliest number","two":null}}`},
  369. {"Timestamp", marshaler, &pb.KnownTypes{Ts: &types.Timestamp{Seconds: 14e8, Nanos: 21e6}}, `{"ts":"2014-05-13T16:53:20.021Z"}`},
  370. {"DoubleValue", marshaler, &pb.KnownTypes{Dbl: &types.DoubleValue{Value: 1.2}}, `{"dbl":1.2}`},
  371. {"FloatValue", marshaler, &pb.KnownTypes{Flt: &types.FloatValue{Value: 1.2}}, `{"flt":1.2}`},
  372. {"Int64Value", marshaler, &pb.KnownTypes{I64: &types.Int64Value{Value: -3}}, `{"i64":"-3"}`},
  373. {"UInt64Value", marshaler, &pb.KnownTypes{U64: &types.UInt64Value{Value: 3}}, `{"u64":"3"}`},
  374. {"Int32Value", marshaler, &pb.KnownTypes{I32: &types.Int32Value{Value: -4}}, `{"i32":-4}`},
  375. {"UInt32Value", marshaler, &pb.KnownTypes{U32: &types.UInt32Value{Value: 4}}, `{"u32":4}`},
  376. {"BoolValue", marshaler, &pb.KnownTypes{Bool: &types.BoolValue{Value: true}}, `{"bool":true}`},
  377. {"StringValue", marshaler, &pb.KnownTypes{Str: &types.StringValue{Value: "plush"}}, `{"str":"plush"}`},
  378. {"BytesValue", marshaler, &pb.KnownTypes{Bytes: &types.BytesValue{Value: []byte("wow")}}, `{"bytes":"d293"}`},
  379. }
  380. func TestMarshaling(t *testing.T) {
  381. for _, tt := range marshalingTests {
  382. json, err := tt.marshaler.MarshalToString(tt.pb)
  383. if err != nil {
  384. t.Errorf("%s: marshaling error: %v", tt.desc, err)
  385. } else if tt.json != json {
  386. t.Errorf("%s: got [%v] want [%v]", tt.desc, json, tt.json)
  387. }
  388. }
  389. }
  390. var unmarshalingTests = []struct {
  391. desc string
  392. unmarshaler Unmarshaler
  393. json string
  394. pb proto.Message
  395. }{
  396. {"simple flat object", Unmarshaler{}, simpleObjectJSON, simpleObject},
  397. {"simple pretty object", Unmarshaler{}, simpleObjectPrettyJSON, simpleObject},
  398. {"repeated fields flat object", Unmarshaler{}, repeatsObjectJSON, repeatsObject},
  399. {"repeated fields pretty object", Unmarshaler{}, repeatsObjectPrettyJSON, repeatsObject},
  400. {"nested message/enum flat object", Unmarshaler{}, complexObjectJSON, complexObject},
  401. {"nested message/enum pretty object", Unmarshaler{}, complexObjectPrettyJSON, complexObject},
  402. {"enum-string object", Unmarshaler{}, `{"color":"BLUE"}`, &pb.Widget{Color: pb.Widget_BLUE.Enum()}},
  403. {"enum-value object", Unmarshaler{}, "{\n \"color\": 2\n}", &pb.Widget{Color: pb.Widget_BLUE.Enum()}},
  404. {"unknown field with allowed option", Unmarshaler{AllowUnknownFields: true}, `{"unknown": "foo"}`, new(pb.Simple)},
  405. {"proto3 enum string", Unmarshaler{}, `{"hilarity":"PUNS"}`, &proto3pb.Message{Hilarity: proto3pb.Message_PUNS}},
  406. {"proto3 enum value", Unmarshaler{}, `{"hilarity":1}`, &proto3pb.Message{Hilarity: proto3pb.Message_PUNS}},
  407. {"unknown enum value object",
  408. Unmarshaler{},
  409. "{\n \"color\": 1000,\n \"r_color\": [\n \"RED\"\n ]\n}",
  410. &pb.Widget{Color: pb.Widget_Color(1000).Enum(), RColor: []pb.Widget_Color{pb.Widget_RED}}},
  411. {"repeated proto3 enum", Unmarshaler{}, `{"rFunny":["PUNS","SLAPSTICK"]}`,
  412. &proto3pb.Message{RFunny: []proto3pb.Message_Humour{
  413. proto3pb.Message_PUNS,
  414. proto3pb.Message_SLAPSTICK,
  415. }}},
  416. {"repeated proto3 enum as int", Unmarshaler{}, `{"rFunny":[1,2]}`,
  417. &proto3pb.Message{RFunny: []proto3pb.Message_Humour{
  418. proto3pb.Message_PUNS,
  419. proto3pb.Message_SLAPSTICK,
  420. }}},
  421. {"repeated proto3 enum as mix of strings and ints", Unmarshaler{}, `{"rFunny":["PUNS",2]}`,
  422. &proto3pb.Message{RFunny: []proto3pb.Message_Humour{
  423. proto3pb.Message_PUNS,
  424. proto3pb.Message_SLAPSTICK,
  425. }}},
  426. {"unquoted int64 object", Unmarshaler{}, `{"oInt64":-314}`, &pb.Simple{OInt64: proto.Int64(-314)}},
  427. {"unquoted uint64 object", Unmarshaler{}, `{"oUint64":123}`, &pb.Simple{OUint64: proto.Uint64(123)}},
  428. {"map<int64, int32>", Unmarshaler{}, `{"nummy":{"1":2,"3":4}}`, &pb.Mappy{Nummy: map[int64]int32{1: 2, 3: 4}}},
  429. {"map<string, string>", Unmarshaler{}, `{"strry":{"\"one\"":"two","three":"four"}}`, &pb.Mappy{Strry: map[string]string{`"one"`: "two", "three": "four"}}},
  430. {"map<int32, Object>", Unmarshaler{}, `{"objjy":{"1":{"dub":1}}}`, &pb.Mappy{Objjy: map[int32]*pb.Simple3{1: {Dub: 1}}}},
  431. // TODO: This is broken.
  432. //{"map<string, enum>", Unmarshaler{}, `{"enumy":{"XIV":"ROMAN"}`, &pb.Mappy{Enumy: map[string]pb.Numeral{"XIV": pb.Numeral_ROMAN}}},
  433. {"map<string, enum as int>", Unmarshaler{}, `{"enumy":{"XIV":2}}`, &pb.Mappy{Enumy: map[string]pb.Numeral{"XIV": pb.Numeral_ROMAN}}},
  434. {"oneof", Unmarshaler{}, `{"salary":31000}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_Salary{Salary: 31000}}},
  435. {"oneof spec name", Unmarshaler{}, `{"Country":"Australia"}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_Country{Country: "Australia"}}},
  436. {"oneof orig_name", Unmarshaler{}, `{"Country":"Australia"}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_Country{Country: "Australia"}}},
  437. {"oneof spec name2", Unmarshaler{}, `{"homeAddress":"Australia"}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_HomeAddress{HomeAddress: "Australia"}}},
  438. {"oneof orig_name2", Unmarshaler{}, `{"home_address":"Australia"}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_HomeAddress{HomeAddress: "Australia"}}},
  439. {"orig_name input", Unmarshaler{}, `{"o_bool":true}`, &pb.Simple{OBool: proto.Bool(true)}},
  440. {"camelName input", Unmarshaler{}, `{"oBool":true}`, &pb.Simple{OBool: proto.Bool(true)}},
  441. {"Duration", Unmarshaler{}, `{"dur":"3.000s"}`, &pb.KnownTypes{Dur: &types.Duration{Seconds: 3}}},
  442. {"null Duration", Unmarshaler{}, `{"dur":null}`, &pb.KnownTypes{Dur: &types.Duration{Seconds: 0}}},
  443. {"Timestamp", Unmarshaler{}, `{"ts":"2014-05-13T16:53:20.021Z"}`, &pb.KnownTypes{Ts: &types.Timestamp{Seconds: 14e8, Nanos: 21e6}}},
  444. {"PreEpochTimestamp", Unmarshaler{}, `{"ts":"1969-12-31T23:59:58.999999995Z"}`, &pb.KnownTypes{Ts: &types.Timestamp{Seconds: -2, Nanos: 999999995}}},
  445. {"ZeroTimeTimestamp", Unmarshaler{}, `{"ts":"0001-01-01T00:00:00Z"}`, &pb.KnownTypes{Ts: &types.Timestamp{Seconds: -62135596800, Nanos: 0}}},
  446. {"null Timestamp", Unmarshaler{}, `{"ts":null}`, &pb.KnownTypes{Ts: &types.Timestamp{Seconds: 0, Nanos: 0}}},
  447. {"DoubleValue", Unmarshaler{}, `{"dbl":1.2}`, &pb.KnownTypes{Dbl: &types.DoubleValue{Value: 1.2}}},
  448. {"FloatValue", Unmarshaler{}, `{"flt":1.2}`, &pb.KnownTypes{Flt: &types.FloatValue{Value: 1.2}}},
  449. {"Int64Value", Unmarshaler{}, `{"i64":"-3"}`, &pb.KnownTypes{I64: &types.Int64Value{Value: -3}}},
  450. {"UInt64Value", Unmarshaler{}, `{"u64":"3"}`, &pb.KnownTypes{U64: &types.UInt64Value{Value: 3}}},
  451. {"Int32Value", Unmarshaler{}, `{"i32":-4}`, &pb.KnownTypes{I32: &types.Int32Value{Value: -4}}},
  452. {"UInt32Value", Unmarshaler{}, `{"u32":4}`, &pb.KnownTypes{U32: &types.UInt32Value{Value: 4}}},
  453. {"BoolValue", Unmarshaler{}, `{"bool":true}`, &pb.KnownTypes{Bool: &types.BoolValue{Value: true}}},
  454. {"StringValue", Unmarshaler{}, `{"str":"plush"}`, &pb.KnownTypes{Str: &types.StringValue{Value: "plush"}}},
  455. {"BytesValue", Unmarshaler{}, `{"bytes":"d293"}`, &pb.KnownTypes{Bytes: &types.BytesValue{Value: []byte("wow")}}},
  456. // `null` is also a permissible value. Let's just test one.
  457. {"null DoubleValue", Unmarshaler{}, `{"dbl":null}`, &pb.KnownTypes{Dbl: &types.DoubleValue{}}},
  458. }
  459. func TestUnmarshaling(t *testing.T) {
  460. for _, tt := range unmarshalingTests {
  461. // Make a new instance of the type of our expected object.
  462. p := reflect.New(reflect.TypeOf(tt.pb).Elem()).Interface().(proto.Message)
  463. err := tt.unmarshaler.Unmarshal(strings.NewReader(tt.json), p)
  464. if err != nil {
  465. t.Errorf("%s: %v", tt.desc, err)
  466. continue
  467. }
  468. // For easier diffs, compare text strings of the protos.
  469. exp := proto.MarshalTextString(tt.pb)
  470. act := proto.MarshalTextString(p)
  471. if string(exp) != string(act) {
  472. t.Errorf("%s: got [%s] want [%s]", tt.desc, act, exp)
  473. }
  474. }
  475. }
  476. func TestUnmarshalNext(t *testing.T) {
  477. // We only need to check against a few, not all of them.
  478. tests := unmarshalingTests[:5]
  479. // Create a buffer with many concatenated JSON objects.
  480. var b bytes.Buffer
  481. for _, tt := range tests {
  482. b.WriteString(tt.json)
  483. }
  484. dec := json.NewDecoder(&b)
  485. for _, tt := range tests {
  486. // Make a new instance of the type of our expected object.
  487. p := reflect.New(reflect.TypeOf(tt.pb).Elem()).Interface().(proto.Message)
  488. err := tt.unmarshaler.UnmarshalNext(dec, p)
  489. if err != nil {
  490. t.Errorf("%s: %v", tt.desc, err)
  491. continue
  492. }
  493. // For easier diffs, compare text strings of the protos.
  494. exp := proto.MarshalTextString(tt.pb)
  495. act := proto.MarshalTextString(p)
  496. if string(exp) != string(act) {
  497. t.Errorf("%s: got [%s] want [%s]", tt.desc, act, exp)
  498. }
  499. }
  500. p := &pb.Simple{}
  501. err := new(Unmarshaler).UnmarshalNext(dec, p)
  502. if err != io.EOF {
  503. t.Errorf("eof: got %v, expected io.EOF", err)
  504. }
  505. }
  506. var unmarshalingShouldError = []struct {
  507. desc string
  508. in string
  509. pb proto.Message
  510. }{
  511. {"a value", "666", new(pb.Simple)},
  512. {"gibberish", "{adskja123;l23=-=", new(pb.Simple)},
  513. {"unknown field", `{"unknown": "foo"}`, new(pb.Simple)},
  514. {"unknown enum name", `{"hilarity":"DAVE"}`, new(proto3pb.Message)},
  515. }
  516. func TestUnmarshalingBadInput(t *testing.T) {
  517. for _, tt := range unmarshalingShouldError {
  518. err := UnmarshalString(tt.in, tt.pb)
  519. if err == nil {
  520. t.Errorf("an error was expected when parsing %q instead of an object", tt.desc)
  521. }
  522. }
  523. }