proto_test.js 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. // https://developers.google.com/protocol-buffers/
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are
  7. // met:
  8. //
  9. // * Redistributions of source code must retain the above copyright
  10. // notice, this list of conditions and the following disclaimer.
  11. // * Redistributions in binary form must reproduce the above
  12. // copyright notice, this list of conditions and the following disclaimer
  13. // in the documentation and/or other materials provided with the
  14. // distribution.
  15. // * Neither the name of Google Inc. nor the names of its
  16. // contributors may be used to endorse or promote products derived from
  17. // this software without specific prior written permission.
  18. //
  19. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. // Test suite is written using Jasmine -- see http://jasmine.github.io/
  31. goog.require('goog.crypt.base64');
  32. goog.require('goog.testing.asserts');
  33. goog.require('jspb.BinaryWriter');
  34. goog.require('jspb.Message');
  35. // CommonJS-LoadFromFile: ../testbinary_pb proto.jspb.test
  36. goog.require('proto.jspb.test.ExtendsWithMessage');
  37. goog.require('proto.jspb.test.ForeignEnum');
  38. goog.require('proto.jspb.test.ForeignMessage');
  39. goog.require('proto.jspb.test.TestAllTypes');
  40. goog.require('proto.jspb.test.TestExtendable');
  41. goog.require('proto.jspb.test.extendOptionalBool');
  42. goog.require('proto.jspb.test.extendOptionalBytes');
  43. goog.require('proto.jspb.test.extendOptionalDouble');
  44. goog.require('proto.jspb.test.extendOptionalFixed32');
  45. goog.require('proto.jspb.test.extendOptionalFixed64');
  46. goog.require('proto.jspb.test.extendOptionalFloat');
  47. goog.require('proto.jspb.test.extendOptionalForeignEnum');
  48. goog.require('proto.jspb.test.extendOptionalInt32');
  49. goog.require('proto.jspb.test.extendOptionalInt64');
  50. goog.require('proto.jspb.test.extendOptionalSfixed32');
  51. goog.require('proto.jspb.test.extendOptionalSfixed64');
  52. goog.require('proto.jspb.test.extendOptionalSint32');
  53. goog.require('proto.jspb.test.extendOptionalSint64');
  54. goog.require('proto.jspb.test.extendOptionalString');
  55. goog.require('proto.jspb.test.extendOptionalUint32');
  56. goog.require('proto.jspb.test.extendOptionalUint64');
  57. goog.require('proto.jspb.test.extendPackedRepeatedBoolList');
  58. goog.require('proto.jspb.test.extendPackedRepeatedDoubleList');
  59. goog.require('proto.jspb.test.extendPackedRepeatedFixed32List');
  60. goog.require('proto.jspb.test.extendPackedRepeatedFixed64List');
  61. goog.require('proto.jspb.test.extendPackedRepeatedFloatList');
  62. goog.require('proto.jspb.test.extendPackedRepeatedForeignEnumList');
  63. goog.require('proto.jspb.test.extendPackedRepeatedInt32List');
  64. goog.require('proto.jspb.test.extendPackedRepeatedInt64List');
  65. goog.require('proto.jspb.test.extendPackedRepeatedSfixed32List');
  66. goog.require('proto.jspb.test.extendPackedRepeatedSfixed64List');
  67. goog.require('proto.jspb.test.extendPackedRepeatedSint32List');
  68. goog.require('proto.jspb.test.extendPackedRepeatedSint64List');
  69. goog.require('proto.jspb.test.extendPackedRepeatedUint32List');
  70. goog.require('proto.jspb.test.extendPackedRepeatedUint64List');
  71. goog.require('proto.jspb.test.extendRepeatedBoolList');
  72. goog.require('proto.jspb.test.extendRepeatedBytesList');
  73. goog.require('proto.jspb.test.extendRepeatedDoubleList');
  74. goog.require('proto.jspb.test.extendRepeatedFixed32List');
  75. goog.require('proto.jspb.test.extendRepeatedFixed64List');
  76. goog.require('proto.jspb.test.extendRepeatedFloatList');
  77. goog.require('proto.jspb.test.extendRepeatedForeignEnumList');
  78. goog.require('proto.jspb.test.extendRepeatedInt32List');
  79. goog.require('proto.jspb.test.extendRepeatedInt64List');
  80. goog.require('proto.jspb.test.extendRepeatedSfixed32List');
  81. goog.require('proto.jspb.test.extendRepeatedSfixed64List');
  82. goog.require('proto.jspb.test.extendRepeatedSint32List');
  83. goog.require('proto.jspb.test.extendRepeatedSint64List');
  84. goog.require('proto.jspb.test.extendRepeatedStringList');
  85. goog.require('proto.jspb.test.extendRepeatedUint32List');
  86. goog.require('proto.jspb.test.extendRepeatedUint64List');
  87. // CommonJS-LoadFromFile: google/protobuf/any_pb proto.google.protobuf
  88. goog.require('proto.google.protobuf.Any');
  89. var suite = {};
  90. var BYTES = new Uint8Array([1, 2, 8, 9]);
  91. var BYTES_B64 = goog.crypt.base64.encodeByteArray(BYTES);
  92. /**
  93. * Helper: fill all fields on a TestAllTypes message.
  94. * @param {proto.jspb.test.TestAllTypes} msg
  95. */
  96. function fillAllFields(msg) {
  97. msg.setOptionalInt32(-42);
  98. // can be exactly represented by JS number (64-bit double, i.e., 52-bit
  99. // mantissa).
  100. msg.setOptionalInt64(-0x7fffffff00000000);
  101. msg.setOptionalUint32(0x80000000);
  102. msg.setOptionalUint64(0xf000000000000000);
  103. msg.setOptionalSint32(-100);
  104. msg.setOptionalSint64(-0x8000000000000000);
  105. msg.setOptionalFixed32(1234);
  106. msg.setOptionalFixed64(0x1234567800000000);
  107. msg.setOptionalSfixed32(-1234);
  108. msg.setOptionalSfixed64(-0x1234567800000000);
  109. msg.setOptionalFloat(1.5);
  110. msg.setOptionalDouble(-1.5);
  111. msg.setOptionalBool(true);
  112. msg.setOptionalString('hello world');
  113. msg.setOptionalBytes(BYTES);
  114. msg.setOptionalGroup(new proto.jspb.test.TestAllTypes.OptionalGroup());
  115. msg.getOptionalGroup().setA(100);
  116. var submsg = new proto.jspb.test.ForeignMessage();
  117. submsg.setC(16);
  118. msg.setOptionalForeignMessage(submsg);
  119. msg.setOptionalForeignEnum(proto.jspb.test.ForeignEnum.FOREIGN_FOO);
  120. msg.setOneofString('oneof');
  121. msg.setRepeatedInt32List([-42]);
  122. msg.setRepeatedInt64List([-0x7fffffff00000000]);
  123. msg.setRepeatedUint32List([0x80000000]);
  124. msg.setRepeatedUint64List([0xf000000000000000]);
  125. msg.setRepeatedSint32List([-100]);
  126. msg.setRepeatedSint64List([-0x8000000000000000]);
  127. msg.setRepeatedFixed32List([1234]);
  128. msg.setRepeatedFixed64List([0x1234567800000000]);
  129. msg.setRepeatedSfixed32List([-1234]);
  130. msg.setRepeatedSfixed64List([-0x1234567800000000]);
  131. msg.setRepeatedFloatList([1.5]);
  132. msg.setRepeatedDoubleList([-1.5]);
  133. msg.setRepeatedBoolList([true]);
  134. msg.setRepeatedStringList(['hello world']);
  135. msg.setRepeatedBytesList([BYTES, BYTES]);
  136. msg.setRepeatedGroupList([new proto.jspb.test.TestAllTypes.RepeatedGroup()]);
  137. msg.getRepeatedGroupList()[0].setA(100);
  138. submsg = new proto.jspb.test.ForeignMessage();
  139. submsg.setC(1000);
  140. msg.setRepeatedForeignMessageList([submsg]);
  141. msg.setRepeatedForeignEnumList([proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  142. msg.setPackedRepeatedInt32List([-42]);
  143. msg.setPackedRepeatedInt64List([-0x7fffffff00000000]);
  144. msg.setPackedRepeatedUint32List([0x80000000]);
  145. msg.setPackedRepeatedUint64List([0xf000000000000000]);
  146. msg.setPackedRepeatedSint32List([-100]);
  147. msg.setPackedRepeatedSint64List([-0x8000000000000000]);
  148. msg.setPackedRepeatedFixed32List([1234]);
  149. msg.setPackedRepeatedFixed64List([0x1234567800000000]);
  150. msg.setPackedRepeatedSfixed32List([-1234]);
  151. msg.setPackedRepeatedSfixed64List([-0x1234567800000000]);
  152. msg.setPackedRepeatedFloatList([1.5]);
  153. msg.setPackedRepeatedDoubleList([-1.5]);
  154. msg.setPackedRepeatedBoolList([true]);
  155. }
  156. /**
  157. * Helper: compare a bytes field to an expected value
  158. * @param {Uint8Array|string} arr
  159. * @param {Uint8Array} expected
  160. * @return {boolean}
  161. */
  162. function bytesCompare(arr, expected) {
  163. if (goog.isString(arr)) {
  164. arr = goog.crypt.base64.decodeStringToUint8Array(arr);
  165. }
  166. if (arr.length != expected.length) {
  167. return false;
  168. }
  169. for (var i = 0; i < arr.length; i++) {
  170. if (arr[i] != expected[i]) {
  171. return false;
  172. }
  173. }
  174. return true;
  175. }
  176. /**
  177. * Helper: verify contents of given TestAllTypes message as set by
  178. * fillAllFields().
  179. * @param {proto.jspb.test.TestAllTypes} original
  180. * @param {proto.jspb.test.TestAllTypes} copy
  181. */
  182. function checkAllFields(original, copy) {
  183. assertEquals(copy.getOptionalInt32(), -42);
  184. assertEquals(copy.getOptionalInt64(), -0x7fffffff00000000);
  185. assertEquals(copy.getOptionalUint32(), 0x80000000);
  186. assertEquals(copy.getOptionalUint64(), 0xf000000000000000);
  187. assertEquals(copy.getOptionalSint32(), -100);
  188. assertEquals(copy.getOptionalSint64(), -0x8000000000000000);
  189. assertEquals(copy.getOptionalFixed32(), 1234);
  190. assertEquals(copy.getOptionalFixed64(), 0x1234567800000000);
  191. assertEquals(copy.getOptionalSfixed32(), -1234);
  192. assertEquals(copy.getOptionalSfixed64(), -0x1234567800000000);
  193. assertEquals(copy.getOptionalFloat(), 1.5);
  194. assertEquals(copy.getOptionalDouble(), -1.5);
  195. assertEquals(copy.getOptionalBool(), true);
  196. assertEquals(copy.getOptionalString(), 'hello world');
  197. assertEquals(true, bytesCompare(copy.getOptionalBytes(), BYTES));
  198. assertEquals(true, bytesCompare(copy.getOptionalBytes_asU8(), BYTES));
  199. assertEquals(
  200. copy.getOptionalBytes_asB64(), goog.crypt.base64.encodeByteArray(BYTES));
  201. assertEquals(copy.getOptionalGroup().getA(), 100);
  202. assertEquals(copy.getOptionalForeignMessage().getC(), 16);
  203. assertEquals(copy.getOptionalForeignEnum(),
  204. proto.jspb.test.ForeignEnum.FOREIGN_FOO);
  205. assertEquals(copy.getOneofString(), 'oneof');
  206. assertEquals(copy.getOneofFieldCase(),
  207. proto.jspb.test.TestAllTypes.OneofFieldCase.ONEOF_STRING);
  208. assertElementsEquals(copy.getRepeatedInt32List(), [-42]);
  209. assertElementsEquals(copy.getRepeatedInt64List(), [-0x7fffffff00000000]);
  210. assertElementsEquals(copy.getRepeatedUint32List(), [0x80000000]);
  211. assertElementsEquals(copy.getRepeatedUint64List(), [0xf000000000000000]);
  212. assertElementsEquals(copy.getRepeatedSint32List(), [-100]);
  213. assertElementsEquals(copy.getRepeatedSint64List(), [-0x8000000000000000]);
  214. assertElementsEquals(copy.getRepeatedFixed32List(), [1234]);
  215. assertElementsEquals(copy.getRepeatedFixed64List(), [0x1234567800000000]);
  216. assertElementsEquals(copy.getRepeatedSfixed32List(), [-1234]);
  217. assertElementsEquals(copy.getRepeatedSfixed64List(), [-0x1234567800000000]);
  218. assertElementsEquals(copy.getRepeatedFloatList(), [1.5]);
  219. assertElementsEquals(copy.getRepeatedDoubleList(), [-1.5]);
  220. assertElementsEquals(copy.getRepeatedBoolList(), [true]);
  221. assertElementsEquals(copy.getRepeatedStringList(), ['hello world']);
  222. assertEquals(copy.getRepeatedBytesList().length, 2);
  223. assertEquals(true, bytesCompare(copy.getRepeatedBytesList_asU8()[0], BYTES));
  224. assertEquals(true, bytesCompare(copy.getRepeatedBytesList()[0], BYTES));
  225. assertEquals(true, bytesCompare(copy.getRepeatedBytesList_asU8()[1], BYTES));
  226. assertEquals(copy.getRepeatedBytesList_asB64()[0], BYTES_B64);
  227. assertEquals(copy.getRepeatedBytesList_asB64()[1], BYTES_B64);
  228. assertEquals(copy.getRepeatedGroupList().length, 1);
  229. assertEquals(copy.getRepeatedGroupList()[0].getA(), 100);
  230. assertEquals(copy.getRepeatedForeignMessageList().length, 1);
  231. assertEquals(copy.getRepeatedForeignMessageList()[0].getC(), 1000);
  232. assertElementsEquals(copy.getRepeatedForeignEnumList(),
  233. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  234. assertElementsEquals(copy.getPackedRepeatedInt32List(), [-42]);
  235. assertElementsEquals(copy.getPackedRepeatedInt64List(),
  236. [-0x7fffffff00000000]);
  237. assertElementsEquals(copy.getPackedRepeatedUint32List(), [0x80000000]);
  238. assertElementsEquals(copy.getPackedRepeatedUint64List(),
  239. [0xf000000000000000]);
  240. assertElementsEquals(copy.getPackedRepeatedSint32List(), [-100]);
  241. assertElementsEquals(copy.getPackedRepeatedSint64List(),
  242. [-0x8000000000000000]);
  243. assertElementsEquals(copy.getPackedRepeatedFixed32List(), [1234]);
  244. assertElementsEquals(copy.getPackedRepeatedFixed64List(),
  245. [0x1234567800000000]);
  246. assertElementsEquals(copy.getPackedRepeatedSfixed32List(), [-1234]);
  247. assertElementsEquals(copy.getPackedRepeatedSfixed64List(),
  248. [-0x1234567800000000]);
  249. assertElementsEquals(copy.getPackedRepeatedFloatList(), [1.5]);
  250. assertElementsEquals(copy.getPackedRepeatedDoubleList(), [-1.5]);
  251. // Check last so we get more granular errors first.
  252. assertTrue(jspb.Message.equals(original, copy));
  253. }
  254. /**
  255. * Helper: verify that all expected extensions are present.
  256. * @param {!proto.jspb.test.TestExtendable} msg
  257. */
  258. function checkExtensions(msg) {
  259. assertEquals(-42,
  260. msg.getExtension(proto.jspb.test.extendOptionalInt32));
  261. assertEquals(-0x7fffffff00000000,
  262. msg.getExtension(proto.jspb.test.extendOptionalInt64));
  263. assertEquals(0x80000000,
  264. msg.getExtension(proto.jspb.test.extendOptionalUint32));
  265. assertEquals(0xf000000000000000,
  266. msg.getExtension(proto.jspb.test.extendOptionalUint64));
  267. assertEquals(-100,
  268. msg.getExtension(proto.jspb.test.extendOptionalSint32));
  269. assertEquals(-0x8000000000000000,
  270. msg.getExtension(proto.jspb.test.extendOptionalSint64));
  271. assertEquals(1234,
  272. msg.getExtension(proto.jspb.test.extendOptionalFixed32));
  273. assertEquals(0x1234567800000000,
  274. msg.getExtension(proto.jspb.test.extendOptionalFixed64));
  275. assertEquals(-1234,
  276. msg.getExtension(proto.jspb.test.extendOptionalSfixed32));
  277. assertEquals(-0x1234567800000000,
  278. msg.getExtension(proto.jspb.test.extendOptionalSfixed64));
  279. assertEquals(1.5,
  280. msg.getExtension(proto.jspb.test.extendOptionalFloat));
  281. assertEquals(-1.5,
  282. msg.getExtension(proto.jspb.test.extendOptionalDouble));
  283. assertEquals(true,
  284. msg.getExtension(proto.jspb.test.extendOptionalBool));
  285. assertEquals('hello world',
  286. msg.getExtension(proto.jspb.test.extendOptionalString));
  287. assertEquals(
  288. true, bytesCompare(
  289. msg.getExtension(proto.jspb.test.extendOptionalBytes), BYTES));
  290. assertEquals(16,
  291. msg.getExtension(
  292. proto.jspb.test.ExtendsWithMessage.optionalExtension).getFoo());
  293. assertElementsEquals(
  294. msg.getExtension(proto.jspb.test.extendRepeatedInt32List),
  295. [-42]);
  296. assertElementsEquals(
  297. msg.getExtension(proto.jspb.test.extendRepeatedInt64List),
  298. [-0x7fffffff00000000]);
  299. assertElementsEquals(
  300. msg.getExtension(proto.jspb.test.extendRepeatedUint32List),
  301. [0x80000000]);
  302. assertElementsEquals(
  303. msg.getExtension(proto.jspb.test.extendRepeatedUint64List),
  304. [0xf000000000000000]);
  305. assertElementsEquals(
  306. msg.getExtension(proto.jspb.test.extendRepeatedSint32List),
  307. [-100]);
  308. assertElementsEquals(
  309. msg.getExtension(proto.jspb.test.extendRepeatedSint64List),
  310. [-0x8000000000000000]);
  311. assertElementsEquals(
  312. msg.getExtension(proto.jspb.test.extendRepeatedFixed32List),
  313. [1234]);
  314. assertElementsEquals(
  315. msg.getExtension(proto.jspb.test.extendRepeatedFixed64List),
  316. [0x1234567800000000]);
  317. assertElementsEquals(
  318. msg.getExtension(proto.jspb.test.extendRepeatedSfixed32List),
  319. [-1234]);
  320. assertElementsEquals(
  321. msg.getExtension(proto.jspb.test.extendRepeatedSfixed64List),
  322. [-0x1234567800000000]);
  323. assertElementsEquals(
  324. msg.getExtension(proto.jspb.test.extendRepeatedFloatList),
  325. [1.5]);
  326. assertElementsEquals(
  327. msg.getExtension(proto.jspb.test.extendRepeatedDoubleList),
  328. [-1.5]);
  329. assertElementsEquals(
  330. msg.getExtension(proto.jspb.test.extendRepeatedBoolList),
  331. [true]);
  332. assertElementsEquals(
  333. msg.getExtension(proto.jspb.test.extendRepeatedStringList),
  334. ['hello world']);
  335. assertEquals(
  336. true,
  337. bytesCompare(
  338. msg.getExtension(proto.jspb.test.extendRepeatedBytesList)[0], BYTES));
  339. assertEquals(1000,
  340. msg.getExtension(
  341. proto.jspb.test.ExtendsWithMessage.repeatedExtensionList)[0]
  342. .getFoo());
  343. assertElementsEquals(
  344. msg.getExtension(proto.jspb.test.extendRepeatedForeignEnumList),
  345. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  346. assertElementsEquals(
  347. msg.getExtension(proto.jspb.test.extendPackedRepeatedInt32List),
  348. [-42]);
  349. assertElementsEquals(
  350. msg.getExtension(proto.jspb.test.extendPackedRepeatedInt64List),
  351. [-0x7fffffff00000000]);
  352. assertElementsEquals(
  353. msg.getExtension(proto.jspb.test.extendPackedRepeatedUint32List),
  354. [0x80000000]);
  355. assertElementsEquals(
  356. msg.getExtension(proto.jspb.test.extendPackedRepeatedUint64List),
  357. [0xf000000000000000]);
  358. assertElementsEquals(
  359. msg.getExtension(proto.jspb.test.extendPackedRepeatedSint32List),
  360. [-100]);
  361. assertElementsEquals(
  362. msg.getExtension(proto.jspb.test.extendPackedRepeatedSint64List),
  363. [-0x8000000000000000]);
  364. assertElementsEquals(
  365. msg.getExtension(proto.jspb.test.extendPackedRepeatedFixed32List),
  366. [1234]);
  367. assertElementsEquals(
  368. msg.getExtension(proto.jspb.test.extendPackedRepeatedFixed64List),
  369. [0x1234567800000000]);
  370. assertElementsEquals(
  371. msg.getExtension(proto.jspb.test.extendPackedRepeatedSfixed32List),
  372. [-1234]);
  373. assertElementsEquals(
  374. msg.getExtension(proto.jspb.test.extendPackedRepeatedSfixed64List),
  375. [-0x1234567800000000]);
  376. assertElementsEquals(
  377. msg.getExtension(proto.jspb.test.extendPackedRepeatedFloatList),
  378. [1.5]);
  379. assertElementsEquals(
  380. msg.getExtension(proto.jspb.test.extendPackedRepeatedDoubleList),
  381. [-1.5]);
  382. assertElementsEquals(
  383. msg.getExtension(proto.jspb.test.extendPackedRepeatedBoolList),
  384. [true]);
  385. assertElementsEquals(
  386. msg.getExtension(proto.jspb.test.extendPackedRepeatedForeignEnumList),
  387. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  388. }
  389. describe('protoBinaryTest', function() {
  390. /**
  391. * Tests a basic serialization-deserializaton round-trip with all supported
  392. * field types (on the TestAllTypes message type).
  393. */
  394. it('testRoundTrip', function() {
  395. var msg = new proto.jspb.test.TestAllTypes();
  396. fillAllFields(msg);
  397. var encoded = msg.serializeBinary();
  398. var decoded = proto.jspb.test.TestAllTypes.deserializeBinary(encoded);
  399. checkAllFields(msg, decoded);
  400. });
  401. /**
  402. * Test that base64 string and Uint8Array are interchangeable in bytes fields.
  403. */
  404. it('testBytesFieldsGettersInterop', function() {
  405. var msg = new proto.jspb.test.TestAllTypes();
  406. // Set from a base64 string and check all the getters work.
  407. msg.setOptionalBytes(BYTES_B64);
  408. assertTrue(bytesCompare(msg.getOptionalBytes_asU8(), BYTES));
  409. assertTrue(bytesCompare(msg.getOptionalBytes_asB64(), BYTES));
  410. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  411. // Test binary serialize round trip doesn't break it.
  412. msg = proto.jspb.test.TestAllTypes.deserializeBinary(msg.serializeBinary());
  413. assertTrue(bytesCompare(msg.getOptionalBytes_asU8(), BYTES));
  414. assertTrue(bytesCompare(msg.getOptionalBytes_asB64(), BYTES));
  415. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  416. msg = new proto.jspb.test.TestAllTypes();
  417. // Set from a Uint8Array and check all the getters work.
  418. msg.setOptionalBytes(BYTES);
  419. assertTrue(bytesCompare(msg.getOptionalBytes_asU8(), BYTES));
  420. assertTrue(bytesCompare(msg.getOptionalBytes_asB64(), BYTES));
  421. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  422. });
  423. /**
  424. * Test that bytes setters will receive result of any of the getters.
  425. */
  426. it('testBytesFieldsSettersInterop', function() {
  427. var msg = new proto.jspb.test.TestAllTypes();
  428. msg.setOptionalBytes(BYTES);
  429. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  430. msg.setOptionalBytes(msg.getOptionalBytes());
  431. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  432. msg.setOptionalBytes(msg.getOptionalBytes_asB64());
  433. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  434. msg.setOptionalBytes(msg.getOptionalBytes_asU8());
  435. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  436. });
  437. /**
  438. * Test that bytes setters will receive result of any of the getters.
  439. */
  440. it('testRepeatedBytesGetters', function() {
  441. var msg = new proto.jspb.test.TestAllTypes();
  442. function assertGetters() {
  443. assertTrue(goog.isString(msg.getRepeatedBytesList_asB64()[0]));
  444. assertTrue(goog.isString(msg.getRepeatedBytesList_asB64()[1]));
  445. assertTrue(msg.getRepeatedBytesList_asU8()[0] instanceof Uint8Array);
  446. assertTrue(msg.getRepeatedBytesList_asU8()[1] instanceof Uint8Array);
  447. assertTrue(bytesCompare(msg.getRepeatedBytesList()[0], BYTES));
  448. assertTrue(bytesCompare(msg.getRepeatedBytesList()[1], BYTES));
  449. assertTrue(bytesCompare(msg.getRepeatedBytesList_asB64()[0], BYTES));
  450. assertTrue(bytesCompare(msg.getRepeatedBytesList_asB64()[1], BYTES));
  451. assertTrue(bytesCompare(msg.getRepeatedBytesList_asU8()[0], BYTES));
  452. assertTrue(bytesCompare(msg.getRepeatedBytesList_asU8()[1], BYTES));
  453. }
  454. msg.setRepeatedBytesList([BYTES, BYTES]);
  455. assertGetters();
  456. msg.setRepeatedBytesList([BYTES_B64, BYTES_B64]);
  457. assertGetters();
  458. msg.setRepeatedBytesList([]);
  459. assertEquals(0, msg.getRepeatedBytesList().length);
  460. assertEquals(0, msg.getRepeatedBytesList_asB64().length);
  461. assertEquals(0, msg.getRepeatedBytesList_asU8().length);
  462. });
  463. /**
  464. * Helper: fill all extension values.
  465. * @param {proto.jspb.test.TestExtendable} msg
  466. */
  467. function fillExtensions(msg) {
  468. msg.setExtension(
  469. proto.jspb.test.extendOptionalInt32, -42);
  470. msg.setExtension(
  471. proto.jspb.test.extendOptionalInt64, -0x7fffffff00000000);
  472. msg.setExtension(
  473. proto.jspb.test.extendOptionalUint32, 0x80000000);
  474. msg.setExtension(
  475. proto.jspb.test.extendOptionalUint64, 0xf000000000000000);
  476. msg.setExtension(
  477. proto.jspb.test.extendOptionalSint32, -100);
  478. msg.setExtension(
  479. proto.jspb.test.extendOptionalSint64, -0x8000000000000000);
  480. msg.setExtension(
  481. proto.jspb.test.extendOptionalFixed32, 1234);
  482. msg.setExtension(
  483. proto.jspb.test.extendOptionalFixed64, 0x1234567800000000);
  484. msg.setExtension(
  485. proto.jspb.test.extendOptionalSfixed32, -1234);
  486. msg.setExtension(
  487. proto.jspb.test.extendOptionalSfixed64, -0x1234567800000000);
  488. msg.setExtension(
  489. proto.jspb.test.extendOptionalFloat, 1.5);
  490. msg.setExtension(
  491. proto.jspb.test.extendOptionalDouble, -1.5);
  492. msg.setExtension(
  493. proto.jspb.test.extendOptionalBool, true);
  494. msg.setExtension(
  495. proto.jspb.test.extendOptionalString, 'hello world');
  496. msg.setExtension(proto.jspb.test.extendOptionalBytes, BYTES);
  497. var submsg = new proto.jspb.test.ExtendsWithMessage();
  498. submsg.setFoo(16);
  499. msg.setExtension(
  500. proto.jspb.test.ExtendsWithMessage.optionalExtension, submsg);
  501. msg.setExtension(
  502. proto.jspb.test.extendOptionalForeignEnum,
  503. proto.jspb.test.ForeignEnum.FOREIGN_FOO);
  504. msg.setExtension(
  505. proto.jspb.test.extendRepeatedInt32List, [-42]);
  506. msg.setExtension(
  507. proto.jspb.test.extendRepeatedInt64List, [-0x7fffffff00000000]);
  508. msg.setExtension(
  509. proto.jspb.test.extendRepeatedUint32List, [0x80000000]);
  510. msg.setExtension(
  511. proto.jspb.test.extendRepeatedUint64List, [0xf000000000000000]);
  512. msg.setExtension(
  513. proto.jspb.test.extendRepeatedSint32List, [-100]);
  514. msg.setExtension(
  515. proto.jspb.test.extendRepeatedSint64List, [-0x8000000000000000]);
  516. msg.setExtension(
  517. proto.jspb.test.extendRepeatedFixed32List, [1234]);
  518. msg.setExtension(
  519. proto.jspb.test.extendRepeatedFixed64List, [0x1234567800000000]);
  520. msg.setExtension(
  521. proto.jspb.test.extendRepeatedSfixed32List, [-1234]);
  522. msg.setExtension(
  523. proto.jspb.test.extendRepeatedSfixed64List, [-0x1234567800000000]);
  524. msg.setExtension(
  525. proto.jspb.test.extendRepeatedFloatList, [1.5]);
  526. msg.setExtension(
  527. proto.jspb.test.extendRepeatedDoubleList, [-1.5]);
  528. msg.setExtension(
  529. proto.jspb.test.extendRepeatedBoolList, [true]);
  530. msg.setExtension(
  531. proto.jspb.test.extendRepeatedStringList, ['hello world']);
  532. msg.setExtension(proto.jspb.test.extendRepeatedBytesList, [BYTES]);
  533. submsg = new proto.jspb.test.ExtendsWithMessage();
  534. submsg.setFoo(1000);
  535. msg.setExtension(
  536. proto.jspb.test.ExtendsWithMessage.repeatedExtensionList, [submsg]);
  537. msg.setExtension(proto.jspb.test.extendRepeatedForeignEnumList,
  538. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  539. msg.setExtension(
  540. proto.jspb.test.extendPackedRepeatedInt32List, [-42]);
  541. msg.setExtension(
  542. proto.jspb.test.extendPackedRepeatedInt64List, [-0x7fffffff00000000]);
  543. msg.setExtension(
  544. proto.jspb.test.extendPackedRepeatedUint32List, [0x80000000]);
  545. msg.setExtension(
  546. proto.jspb.test.extendPackedRepeatedUint64List, [0xf000000000000000]);
  547. msg.setExtension(
  548. proto.jspb.test.extendPackedRepeatedSint32List, [-100]);
  549. msg.setExtension(
  550. proto.jspb.test.extendPackedRepeatedSint64List, [-0x8000000000000000]);
  551. msg.setExtension(
  552. proto.jspb.test.extendPackedRepeatedFixed32List, [1234]);
  553. msg.setExtension(
  554. proto.jspb.test.extendPackedRepeatedFixed64List, [0x1234567800000000]);
  555. msg.setExtension(
  556. proto.jspb.test.extendPackedRepeatedSfixed32List, [-1234]);
  557. msg.setExtension(
  558. proto.jspb.test.extendPackedRepeatedSfixed64List,
  559. [-0x1234567800000000]);
  560. msg.setExtension(
  561. proto.jspb.test.extendPackedRepeatedFloatList, [1.5]);
  562. msg.setExtension(
  563. proto.jspb.test.extendPackedRepeatedDoubleList, [-1.5]);
  564. msg.setExtension(
  565. proto.jspb.test.extendPackedRepeatedBoolList, [true]);
  566. msg.setExtension(proto.jspb.test.extendPackedRepeatedForeignEnumList,
  567. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  568. }
  569. /**
  570. * Tests extension serialization and deserialization.
  571. */
  572. it('testExtensions', function() {
  573. var msg = new proto.jspb.test.TestExtendable();
  574. fillExtensions(msg);
  575. var encoded = msg.serializeBinary();
  576. var decoded = proto.jspb.test.TestExtendable.deserializeBinary(encoded);
  577. checkExtensions(decoded);
  578. });
  579. /**
  580. * Tests that unknown extensions don't cause deserialization failure.
  581. */
  582. it('testUnknownExtension', function() {
  583. var msg = new proto.jspb.test.TestExtendable();
  584. fillExtensions(msg);
  585. var writer = new jspb.BinaryWriter();
  586. writer.writeBool((1 << 29) - 1, true);
  587. proto.jspb.test.TestExtendable.serializeBinaryToWriter(msg, writer);
  588. var encoded = writer.getResultBuffer();
  589. var decoded = proto.jspb.test.TestExtendable.deserializeBinary(encoded);
  590. checkExtensions(decoded);
  591. });
  592. it('testAnyWellKnownType', function() {
  593. var any = new proto.google.protobuf.Any();
  594. var msg = new proto.jspb.test.TestAllTypes();
  595. fillAllFields(msg);
  596. any.pack(msg.serializeBinary(), 'jspb.test.TestAllTypes');
  597. assertEquals('type.googleapis.com/jspb.test.TestAllTypes',
  598. any.getTypeUrl());
  599. var msg2 = any.unpack(
  600. proto.jspb.test.TestAllTypes.deserializeBinary,
  601. 'jspb.test.TestAllTypes');
  602. checkAllFields(msg, msg2);
  603. });
  604. });