proto_test.js 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  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.Message');
  34. // CommonJS-LoadFromFile: ../testbinary_pb proto.jspb.test
  35. goog.require('proto.jspb.test.ExtendsWithMessage');
  36. goog.require('proto.jspb.test.ForeignEnum');
  37. goog.require('proto.jspb.test.ForeignMessage');
  38. goog.require('proto.jspb.test.TestAllTypes');
  39. goog.require('proto.jspb.test.TestExtendable');
  40. goog.require('proto.jspb.test.extendOptionalBool');
  41. goog.require('proto.jspb.test.extendOptionalBytes');
  42. goog.require('proto.jspb.test.extendOptionalDouble');
  43. goog.require('proto.jspb.test.extendOptionalFixed32');
  44. goog.require('proto.jspb.test.extendOptionalFixed64');
  45. goog.require('proto.jspb.test.extendOptionalFloat');
  46. goog.require('proto.jspb.test.extendOptionalForeignEnum');
  47. goog.require('proto.jspb.test.extendOptionalInt32');
  48. goog.require('proto.jspb.test.extendOptionalInt64');
  49. goog.require('proto.jspb.test.extendOptionalSfixed32');
  50. goog.require('proto.jspb.test.extendOptionalSfixed64');
  51. goog.require('proto.jspb.test.extendOptionalSint32');
  52. goog.require('proto.jspb.test.extendOptionalSint64');
  53. goog.require('proto.jspb.test.extendOptionalString');
  54. goog.require('proto.jspb.test.extendOptionalUint32');
  55. goog.require('proto.jspb.test.extendOptionalUint64');
  56. goog.require('proto.jspb.test.extendPackedRepeatedBoolList');
  57. goog.require('proto.jspb.test.extendPackedRepeatedDoubleList');
  58. goog.require('proto.jspb.test.extendPackedRepeatedFixed32List');
  59. goog.require('proto.jspb.test.extendPackedRepeatedFixed64List');
  60. goog.require('proto.jspb.test.extendPackedRepeatedFloatList');
  61. goog.require('proto.jspb.test.extendPackedRepeatedForeignEnumList');
  62. goog.require('proto.jspb.test.extendPackedRepeatedInt32List');
  63. goog.require('proto.jspb.test.extendPackedRepeatedInt64List');
  64. goog.require('proto.jspb.test.extendPackedRepeatedSfixed32List');
  65. goog.require('proto.jspb.test.extendPackedRepeatedSfixed64List');
  66. goog.require('proto.jspb.test.extendPackedRepeatedSint32List');
  67. goog.require('proto.jspb.test.extendPackedRepeatedSint64List');
  68. goog.require('proto.jspb.test.extendPackedRepeatedUint32List');
  69. goog.require('proto.jspb.test.extendPackedRepeatedUint64List');
  70. goog.require('proto.jspb.test.extendRepeatedBoolList');
  71. goog.require('proto.jspb.test.extendRepeatedBytesList');
  72. goog.require('proto.jspb.test.extendRepeatedDoubleList');
  73. goog.require('proto.jspb.test.extendRepeatedFixed32List');
  74. goog.require('proto.jspb.test.extendRepeatedFixed64List');
  75. goog.require('proto.jspb.test.extendRepeatedFloatList');
  76. goog.require('proto.jspb.test.extendRepeatedForeignEnumList');
  77. goog.require('proto.jspb.test.extendRepeatedInt32List');
  78. goog.require('proto.jspb.test.extendRepeatedInt64List');
  79. goog.require('proto.jspb.test.extendRepeatedSfixed32List');
  80. goog.require('proto.jspb.test.extendRepeatedSfixed64List');
  81. goog.require('proto.jspb.test.extendRepeatedSint32List');
  82. goog.require('proto.jspb.test.extendRepeatedSint64List');
  83. goog.require('proto.jspb.test.extendRepeatedStringList');
  84. goog.require('proto.jspb.test.extendRepeatedUint32List');
  85. goog.require('proto.jspb.test.extendRepeatedUint64List');
  86. var suite = {};
  87. var BYTES = new Uint8Array([1, 2, 8, 9]);
  88. var BYTES_B64 = goog.crypt.base64.encodeByteArray(BYTES);
  89. /**
  90. * Helper: fill all fields on a TestAllTypes message.
  91. * @param {proto.jspb.test.TestAllTypes} msg
  92. */
  93. function fillAllFields(msg) {
  94. msg.setOptionalInt32(-42);
  95. // can be exactly represented by JS number (64-bit double, i.e., 52-bit
  96. // mantissa).
  97. msg.setOptionalInt64(-0x7fffffff00000000);
  98. msg.setOptionalUint32(0x80000000);
  99. msg.setOptionalUint64(0xf000000000000000);
  100. msg.setOptionalSint32(-100);
  101. msg.setOptionalSint64(-0x8000000000000000);
  102. msg.setOptionalFixed32(1234);
  103. msg.setOptionalFixed64(0x1234567800000000);
  104. msg.setOptionalSfixed32(-1234);
  105. msg.setOptionalSfixed64(-0x1234567800000000);
  106. msg.setOptionalFloat(1.5);
  107. msg.setOptionalDouble(-1.5);
  108. msg.setOptionalBool(true);
  109. msg.setOptionalString('hello world');
  110. msg.setOptionalBytes(BYTES);
  111. msg.setOptionalGroup(new proto.jspb.test.TestAllTypes.OptionalGroup());
  112. msg.getOptionalGroup().setA(100);
  113. var submsg = new proto.jspb.test.ForeignMessage();
  114. submsg.setC(16);
  115. msg.setOptionalForeignMessage(submsg);
  116. msg.setOptionalForeignEnum(proto.jspb.test.ForeignEnum.FOREIGN_FOO);
  117. msg.setOneofString('oneof');
  118. msg.setRepeatedInt32List([-42]);
  119. msg.setRepeatedInt64List([-0x7fffffff00000000]);
  120. msg.setRepeatedUint32List([0x80000000]);
  121. msg.setRepeatedUint64List([0xf000000000000000]);
  122. msg.setRepeatedSint32List([-100]);
  123. msg.setRepeatedSint64List([-0x8000000000000000]);
  124. msg.setRepeatedFixed32List([1234]);
  125. msg.setRepeatedFixed64List([0x1234567800000000]);
  126. msg.setRepeatedSfixed32List([-1234]);
  127. msg.setRepeatedSfixed64List([-0x1234567800000000]);
  128. msg.setRepeatedFloatList([1.5]);
  129. msg.setRepeatedDoubleList([-1.5]);
  130. msg.setRepeatedBoolList([true]);
  131. msg.setRepeatedStringList(['hello world']);
  132. msg.setRepeatedBytesList([BYTES, BYTES]);
  133. msg.setRepeatedGroupList([new proto.jspb.test.TestAllTypes.RepeatedGroup()]);
  134. msg.getRepeatedGroupList()[0].setA(100);
  135. submsg = new proto.jspb.test.ForeignMessage();
  136. submsg.setC(1000);
  137. msg.setRepeatedForeignMessageList([submsg]);
  138. msg.setRepeatedForeignEnumList([proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  139. msg.setPackedRepeatedInt32List([-42]);
  140. msg.setPackedRepeatedInt64List([-0x7fffffff00000000]);
  141. msg.setPackedRepeatedUint32List([0x80000000]);
  142. msg.setPackedRepeatedUint64List([0xf000000000000000]);
  143. msg.setPackedRepeatedSint32List([-100]);
  144. msg.setPackedRepeatedSint64List([-0x8000000000000000]);
  145. msg.setPackedRepeatedFixed32List([1234]);
  146. msg.setPackedRepeatedFixed64List([0x1234567800000000]);
  147. msg.setPackedRepeatedSfixed32List([-1234]);
  148. msg.setPackedRepeatedSfixed64List([-0x1234567800000000]);
  149. msg.setPackedRepeatedFloatList([1.5]);
  150. msg.setPackedRepeatedDoubleList([-1.5]);
  151. msg.setPackedRepeatedBoolList([true]);
  152. }
  153. /**
  154. * Helper: compare a bytes field to an expected value
  155. * @param {Uint8Array|string} arr
  156. * @param {Uint8Array} expected
  157. * @return {boolean}
  158. */
  159. function bytesCompare(arr, expected) {
  160. if (typeof arr === 'string') {
  161. arr = goog.crypt.base64.decodeStringToUint8Array(arr);
  162. }
  163. if (arr.length != expected.length) {
  164. return false;
  165. }
  166. for (var i = 0; i < arr.length; i++) {
  167. if (arr[i] != expected[i]) {
  168. return false;
  169. }
  170. }
  171. return true;
  172. }
  173. /**
  174. * Helper: verify contents of given TestAllTypes message as set by
  175. * fillAllFields().
  176. * @param {proto.jspb.test.TestAllTypes} original
  177. * @param {proto.jspb.test.TestAllTypes} copy
  178. */
  179. function checkAllFields(original, copy) {
  180. assertTrue(jspb.Message.equals(original, copy));
  181. assertEquals(copy.getOptionalInt32(), -42);
  182. assertEquals(copy.getOptionalInt64(), -0x7fffffff00000000);
  183. assertEquals(copy.getOptionalUint32(), 0x80000000);
  184. assertEquals(copy.getOptionalUint64(), 0xf000000000000000);
  185. assertEquals(copy.getOptionalSint32(), -100);
  186. assertEquals(copy.getOptionalSint64(), -0x8000000000000000);
  187. assertEquals(copy.getOptionalFixed32(), 1234);
  188. assertEquals(copy.getOptionalFixed64(), 0x1234567800000000);
  189. assertEquals(copy.getOptionalSfixed32(), -1234);
  190. assertEquals(copy.getOptionalSfixed64(), -0x1234567800000000);
  191. assertEquals(copy.getOptionalFloat(), 1.5);
  192. assertEquals(copy.getOptionalDouble(), -1.5);
  193. assertEquals(copy.getOptionalBool(), true);
  194. assertEquals(copy.getOptionalString(), 'hello world');
  195. assertEquals(true, bytesCompare(copy.getOptionalBytes(), BYTES));
  196. assertEquals(true, bytesCompare(copy.getOptionalBytes_asU8(), BYTES));
  197. assertEquals(
  198. copy.getOptionalBytes_asB64(), goog.crypt.base64.encodeByteArray(BYTES));
  199. assertEquals(copy.getOptionalGroup().getA(), 100);
  200. assertEquals(copy.getOptionalForeignMessage().getC(), 16);
  201. assertEquals(copy.getOptionalForeignEnum(),
  202. proto.jspb.test.ForeignEnum.FOREIGN_FOO);
  203. assertEquals(copy.getOneofString(), 'oneof');
  204. assertEquals(copy.getOneofFieldCase(),
  205. proto.jspb.test.TestAllTypes.OneofFieldCase.ONEOF_STRING);
  206. assertElementsEquals(copy.getRepeatedInt32List(), [-42]);
  207. assertElementsEquals(copy.getRepeatedInt64List(), [-0x7fffffff00000000]);
  208. assertElementsEquals(copy.getRepeatedUint32List(), [0x80000000]);
  209. assertElementsEquals(copy.getRepeatedUint64List(), [0xf000000000000000]);
  210. assertElementsEquals(copy.getRepeatedSint32List(), [-100]);
  211. assertElementsEquals(copy.getRepeatedSint64List(), [-0x8000000000000000]);
  212. assertElementsEquals(copy.getRepeatedFixed32List(), [1234]);
  213. assertElementsEquals(copy.getRepeatedFixed64List(), [0x1234567800000000]);
  214. assertElementsEquals(copy.getRepeatedSfixed32List(), [-1234]);
  215. assertElementsEquals(copy.getRepeatedSfixed64List(), [-0x1234567800000000]);
  216. assertElementsEquals(copy.getRepeatedFloatList(), [1.5]);
  217. assertElementsEquals(copy.getRepeatedDoubleList(), [-1.5]);
  218. assertElementsEquals(copy.getRepeatedBoolList(), [true]);
  219. assertElementsEquals(copy.getRepeatedStringList(), ['hello world']);
  220. assertEquals(copy.getRepeatedBytesList().length, 2);
  221. assertEquals(true, bytesCompare(copy.getRepeatedBytesList_asU8()[0], BYTES));
  222. assertEquals(true, bytesCompare(copy.getRepeatedBytesList()[0], BYTES));
  223. assertEquals(true, bytesCompare(copy.getRepeatedBytesList_asU8()[1], BYTES));
  224. assertEquals(copy.getRepeatedBytesList_asB64()[0], BYTES_B64);
  225. assertEquals(copy.getRepeatedBytesList_asB64()[1], BYTES_B64);
  226. assertEquals(copy.getRepeatedGroupList().length, 1);
  227. assertEquals(copy.getRepeatedGroupList()[0].getA(), 100);
  228. assertEquals(copy.getRepeatedForeignMessageList().length, 1);
  229. assertEquals(copy.getRepeatedForeignMessageList()[0].getC(), 1000);
  230. assertElementsEquals(copy.getRepeatedForeignEnumList(),
  231. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  232. assertElementsEquals(copy.getPackedRepeatedInt32List(), [-42]);
  233. assertElementsEquals(copy.getPackedRepeatedInt64List(),
  234. [-0x7fffffff00000000]);
  235. assertElementsEquals(copy.getPackedRepeatedUint32List(), [0x80000000]);
  236. assertElementsEquals(copy.getPackedRepeatedUint64List(),
  237. [0xf000000000000000]);
  238. assertElementsEquals(copy.getPackedRepeatedSint32List(), [-100]);
  239. assertElementsEquals(copy.getPackedRepeatedSint64List(),
  240. [-0x8000000000000000]);
  241. assertElementsEquals(copy.getPackedRepeatedFixed32List(), [1234]);
  242. assertElementsEquals(copy.getPackedRepeatedFixed64List(),
  243. [0x1234567800000000]);
  244. assertElementsEquals(copy.getPackedRepeatedSfixed32List(), [-1234]);
  245. assertElementsEquals(copy.getPackedRepeatedSfixed64List(),
  246. [-0x1234567800000000]);
  247. assertElementsEquals(copy.getPackedRepeatedFloatList(), [1.5]);
  248. assertElementsEquals(copy.getPackedRepeatedDoubleList(), [-1.5]);
  249. }
  250. /**
  251. * Helper: verify that all expected extensions are present.
  252. * @param {!proto.jspb.test.TestExtendable} msg
  253. */
  254. function checkExtensions(msg) {
  255. assertEquals(-42,
  256. msg.getExtension(proto.jspb.test.extendOptionalInt32));
  257. assertEquals(-0x7fffffff00000000,
  258. msg.getExtension(proto.jspb.test.extendOptionalInt64));
  259. assertEquals(0x80000000,
  260. msg.getExtension(proto.jspb.test.extendOptionalUint32));
  261. assertEquals(0xf000000000000000,
  262. msg.getExtension(proto.jspb.test.extendOptionalUint64));
  263. assertEquals(-100,
  264. msg.getExtension(proto.jspb.test.extendOptionalSint32));
  265. assertEquals(-0x8000000000000000,
  266. msg.getExtension(proto.jspb.test.extendOptionalSint64));
  267. assertEquals(1234,
  268. msg.getExtension(proto.jspb.test.extendOptionalFixed32));
  269. assertEquals(0x1234567800000000,
  270. msg.getExtension(proto.jspb.test.extendOptionalFixed64));
  271. assertEquals(-1234,
  272. msg.getExtension(proto.jspb.test.extendOptionalSfixed32));
  273. assertEquals(-0x1234567800000000,
  274. msg.getExtension(proto.jspb.test.extendOptionalSfixed64));
  275. assertEquals(1.5,
  276. msg.getExtension(proto.jspb.test.extendOptionalFloat));
  277. assertEquals(-1.5,
  278. msg.getExtension(proto.jspb.test.extendOptionalDouble));
  279. assertEquals(true,
  280. msg.getExtension(proto.jspb.test.extendOptionalBool));
  281. assertEquals('hello world',
  282. msg.getExtension(proto.jspb.test.extendOptionalString));
  283. assertEquals(
  284. true, bytesCompare(
  285. msg.getExtension(proto.jspb.test.extendOptionalBytes), BYTES));
  286. assertEquals(16,
  287. msg.getExtension(
  288. proto.jspb.test.ExtendsWithMessage.optionalExtension).getFoo());
  289. assertElementsEquals(
  290. msg.getExtension(proto.jspb.test.extendRepeatedInt32List),
  291. [-42]);
  292. assertElementsEquals(
  293. msg.getExtension(proto.jspb.test.extendRepeatedInt64List),
  294. [-0x7fffffff00000000]);
  295. assertElementsEquals(
  296. msg.getExtension(proto.jspb.test.extendRepeatedUint32List),
  297. [0x80000000]);
  298. assertElementsEquals(
  299. msg.getExtension(proto.jspb.test.extendRepeatedUint64List),
  300. [0xf000000000000000]);
  301. assertElementsEquals(
  302. msg.getExtension(proto.jspb.test.extendRepeatedSint32List),
  303. [-100]);
  304. assertElementsEquals(
  305. msg.getExtension(proto.jspb.test.extendRepeatedSint64List),
  306. [-0x8000000000000000]);
  307. assertElementsEquals(
  308. msg.getExtension(proto.jspb.test.extendRepeatedFixed32List),
  309. [1234]);
  310. assertElementsEquals(
  311. msg.getExtension(proto.jspb.test.extendRepeatedFixed64List),
  312. [0x1234567800000000]);
  313. assertElementsEquals(
  314. msg.getExtension(proto.jspb.test.extendRepeatedSfixed32List),
  315. [-1234]);
  316. assertElementsEquals(
  317. msg.getExtension(proto.jspb.test.extendRepeatedSfixed64List),
  318. [-0x1234567800000000]);
  319. assertElementsEquals(
  320. msg.getExtension(proto.jspb.test.extendRepeatedFloatList),
  321. [1.5]);
  322. assertElementsEquals(
  323. msg.getExtension(proto.jspb.test.extendRepeatedDoubleList),
  324. [-1.5]);
  325. assertElementsEquals(
  326. msg.getExtension(proto.jspb.test.extendRepeatedBoolList),
  327. [true]);
  328. assertElementsEquals(
  329. msg.getExtension(proto.jspb.test.extendRepeatedStringList),
  330. ['hello world']);
  331. assertEquals(
  332. true,
  333. bytesCompare(
  334. msg.getExtension(proto.jspb.test.extendRepeatedBytesList)[0], BYTES));
  335. assertEquals(1000,
  336. msg.getExtension(
  337. proto.jspb.test.ExtendsWithMessage.repeatedExtensionList)[0]
  338. .getFoo());
  339. assertElementsEquals(
  340. msg.getExtension(proto.jspb.test.extendRepeatedForeignEnumList),
  341. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  342. assertElementsEquals(
  343. msg.getExtension(proto.jspb.test.extendPackedRepeatedInt32List),
  344. [-42]);
  345. assertElementsEquals(
  346. msg.getExtension(proto.jspb.test.extendPackedRepeatedInt64List),
  347. [-0x7fffffff00000000]);
  348. assertElementsEquals(
  349. msg.getExtension(proto.jspb.test.extendPackedRepeatedUint32List),
  350. [0x80000000]);
  351. assertElementsEquals(
  352. msg.getExtension(proto.jspb.test.extendPackedRepeatedUint64List),
  353. [0xf000000000000000]);
  354. assertElementsEquals(
  355. msg.getExtension(proto.jspb.test.extendPackedRepeatedSint32List),
  356. [-100]);
  357. assertElementsEquals(
  358. msg.getExtension(proto.jspb.test.extendPackedRepeatedSint64List),
  359. [-0x8000000000000000]);
  360. assertElementsEquals(
  361. msg.getExtension(proto.jspb.test.extendPackedRepeatedFixed32List),
  362. [1234]);
  363. assertElementsEquals(
  364. msg.getExtension(proto.jspb.test.extendPackedRepeatedFixed64List),
  365. [0x1234567800000000]);
  366. assertElementsEquals(
  367. msg.getExtension(proto.jspb.test.extendPackedRepeatedSfixed32List),
  368. [-1234]);
  369. assertElementsEquals(
  370. msg.getExtension(proto.jspb.test.extendPackedRepeatedSfixed64List),
  371. [-0x1234567800000000]);
  372. assertElementsEquals(
  373. msg.getExtension(proto.jspb.test.extendPackedRepeatedFloatList),
  374. [1.5]);
  375. assertElementsEquals(
  376. msg.getExtension(proto.jspb.test.extendPackedRepeatedDoubleList),
  377. [-1.5]);
  378. assertElementsEquals(
  379. msg.getExtension(proto.jspb.test.extendPackedRepeatedBoolList),
  380. [true]);
  381. assertElementsEquals(
  382. msg.getExtension(proto.jspb.test.extendPackedRepeatedForeignEnumList),
  383. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  384. }
  385. describe('protoBinaryTest', function() {
  386. /**
  387. * Tests a basic serialization-deserializaton round-trip with all supported
  388. * field types (on the TestAllTypes message type).
  389. */
  390. it('testRoundTrip', function() {
  391. var msg = new proto.jspb.test.TestAllTypes();
  392. fillAllFields(msg);
  393. var encoded = msg.serializeBinary();
  394. var decoded = proto.jspb.test.TestAllTypes.deserializeBinary(encoded);
  395. checkAllFields(msg, decoded);
  396. });
  397. /**
  398. * Test that base64 string and Uint8Array are interchangeable in bytes fields.
  399. */
  400. it('testBytesFieldsGettersInterop', function() {
  401. var msg = new proto.jspb.test.TestAllTypes();
  402. // Set from a base64 string and check all the getters work.
  403. msg.setOptionalBytes(BYTES_B64);
  404. assertTrue(bytesCompare(msg.getOptionalBytes_asU8(), BYTES));
  405. assertTrue(bytesCompare(msg.getOptionalBytes_asB64(), BYTES));
  406. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  407. // Test binary serialize round trip doesn't break it.
  408. msg = proto.jspb.test.TestAllTypes.deserializeBinary(msg.serializeBinary());
  409. assertTrue(bytesCompare(msg.getOptionalBytes_asU8(), BYTES));
  410. assertTrue(bytesCompare(msg.getOptionalBytes_asB64(), BYTES));
  411. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  412. msg = new proto.jspb.test.TestAllTypes();
  413. // Set from a Uint8Array and check all the getters work.
  414. msg.setOptionalBytes(BYTES);
  415. assertTrue(bytesCompare(msg.getOptionalBytes_asU8(), BYTES));
  416. assertTrue(bytesCompare(msg.getOptionalBytes_asB64(), BYTES));
  417. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  418. });
  419. /**
  420. * Test that bytes setters will receive result of any of the getters.
  421. */
  422. it('testBytesFieldsSettersInterop', function() {
  423. var msg = new proto.jspb.test.TestAllTypes();
  424. msg.setOptionalBytes(BYTES);
  425. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  426. msg.setOptionalBytes(msg.getOptionalBytes());
  427. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  428. msg.setOptionalBytes(msg.getOptionalBytes_asB64());
  429. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  430. msg.setOptionalBytes(msg.getOptionalBytes_asU8());
  431. assertTrue(bytesCompare(msg.getOptionalBytes(), BYTES));
  432. });
  433. /**
  434. * Test that bytes setters will receive result of any of the getters.
  435. */
  436. it('testRepeatedBytesGetters', function() {
  437. var msg = new proto.jspb.test.TestAllTypes();
  438. function assertGetters() {
  439. assertTrue(typeof msg.getRepeatedBytesList_asB64()[0] === 'string');
  440. assertTrue(typeof msg.getRepeatedBytesList_asB64()[1] === 'string');
  441. assertTrue(msg.getRepeatedBytesList_asU8()[0] instanceof Uint8Array);
  442. assertTrue(msg.getRepeatedBytesList_asU8()[1] instanceof Uint8Array);
  443. assertTrue(bytesCompare(msg.getRepeatedBytesList()[0], BYTES));
  444. assertTrue(bytesCompare(msg.getRepeatedBytesList()[1], BYTES));
  445. assertTrue(bytesCompare(msg.getRepeatedBytesList_asB64()[0], BYTES));
  446. assertTrue(bytesCompare(msg.getRepeatedBytesList_asB64()[1], BYTES));
  447. assertTrue(bytesCompare(msg.getRepeatedBytesList_asU8()[0], BYTES));
  448. assertTrue(bytesCompare(msg.getRepeatedBytesList_asU8()[1], BYTES));
  449. }
  450. msg.setRepeatedBytesList([BYTES, BYTES]);
  451. assertGetters();
  452. msg.setRepeatedBytesList([BYTES_B64, BYTES_B64]);
  453. assertGetters();
  454. msg.setRepeatedBytesList(null);
  455. assertEquals(0, msg.getRepeatedBytesList().length);
  456. assertEquals(0, msg.getRepeatedBytesList_asB64().length);
  457. assertEquals(0, msg.getRepeatedBytesList_asU8().length);
  458. });
  459. /**
  460. * Helper: fill all extension values.
  461. * @param {proto.jspb.test.TestExtendable} msg
  462. */
  463. function fillExtensions(msg) {
  464. msg.setExtension(
  465. proto.jspb.test.extendOptionalInt32, -42);
  466. msg.setExtension(
  467. proto.jspb.test.extendOptionalInt64, -0x7fffffff00000000);
  468. msg.setExtension(
  469. proto.jspb.test.extendOptionalUint32, 0x80000000);
  470. msg.setExtension(
  471. proto.jspb.test.extendOptionalUint64, 0xf000000000000000);
  472. msg.setExtension(
  473. proto.jspb.test.extendOptionalSint32, -100);
  474. msg.setExtension(
  475. proto.jspb.test.extendOptionalSint64, -0x8000000000000000);
  476. msg.setExtension(
  477. proto.jspb.test.extendOptionalFixed32, 1234);
  478. msg.setExtension(
  479. proto.jspb.test.extendOptionalFixed64, 0x1234567800000000);
  480. msg.setExtension(
  481. proto.jspb.test.extendOptionalSfixed32, -1234);
  482. msg.setExtension(
  483. proto.jspb.test.extendOptionalSfixed64, -0x1234567800000000);
  484. msg.setExtension(
  485. proto.jspb.test.extendOptionalFloat, 1.5);
  486. msg.setExtension(
  487. proto.jspb.test.extendOptionalDouble, -1.5);
  488. msg.setExtension(
  489. proto.jspb.test.extendOptionalBool, true);
  490. msg.setExtension(
  491. proto.jspb.test.extendOptionalString, 'hello world');
  492. msg.setExtension(proto.jspb.test.extendOptionalBytes, BYTES);
  493. var submsg = new proto.jspb.test.ExtendsWithMessage();
  494. submsg.setFoo(16);
  495. msg.setExtension(
  496. proto.jspb.test.ExtendsWithMessage.optionalExtension, submsg);
  497. msg.setExtension(
  498. proto.jspb.test.extendOptionalForeignEnum,
  499. proto.jspb.test.ForeignEnum.FOREIGN_FOO);
  500. msg.setExtension(
  501. proto.jspb.test.extendRepeatedInt32List, [-42]);
  502. msg.setExtension(
  503. proto.jspb.test.extendRepeatedInt64List, [-0x7fffffff00000000]);
  504. msg.setExtension(
  505. proto.jspb.test.extendRepeatedUint32List, [0x80000000]);
  506. msg.setExtension(
  507. proto.jspb.test.extendRepeatedUint64List, [0xf000000000000000]);
  508. msg.setExtension(
  509. proto.jspb.test.extendRepeatedSint32List, [-100]);
  510. msg.setExtension(
  511. proto.jspb.test.extendRepeatedSint64List, [-0x8000000000000000]);
  512. msg.setExtension(
  513. proto.jspb.test.extendRepeatedFixed32List, [1234]);
  514. msg.setExtension(
  515. proto.jspb.test.extendRepeatedFixed64List, [0x1234567800000000]);
  516. msg.setExtension(
  517. proto.jspb.test.extendRepeatedSfixed32List, [-1234]);
  518. msg.setExtension(
  519. proto.jspb.test.extendRepeatedSfixed64List, [-0x1234567800000000]);
  520. msg.setExtension(
  521. proto.jspb.test.extendRepeatedFloatList, [1.5]);
  522. msg.setExtension(
  523. proto.jspb.test.extendRepeatedDoubleList, [-1.5]);
  524. msg.setExtension(
  525. proto.jspb.test.extendRepeatedBoolList, [true]);
  526. msg.setExtension(
  527. proto.jspb.test.extendRepeatedStringList, ['hello world']);
  528. msg.setExtension(proto.jspb.test.extendRepeatedBytesList, [BYTES]);
  529. submsg = new proto.jspb.test.ExtendsWithMessage();
  530. submsg.setFoo(1000);
  531. msg.setExtension(
  532. proto.jspb.test.ExtendsWithMessage.repeatedExtensionList, [submsg]);
  533. msg.setExtension(proto.jspb.test.extendRepeatedForeignEnumList,
  534. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  535. msg.setExtension(
  536. proto.jspb.test.extendPackedRepeatedInt32List, [-42]);
  537. msg.setExtension(
  538. proto.jspb.test.extendPackedRepeatedInt64List, [-0x7fffffff00000000]);
  539. msg.setExtension(
  540. proto.jspb.test.extendPackedRepeatedUint32List, [0x80000000]);
  541. msg.setExtension(
  542. proto.jspb.test.extendPackedRepeatedUint64List, [0xf000000000000000]);
  543. msg.setExtension(
  544. proto.jspb.test.extendPackedRepeatedSint32List, [-100]);
  545. msg.setExtension(
  546. proto.jspb.test.extendPackedRepeatedSint64List, [-0x8000000000000000]);
  547. msg.setExtension(
  548. proto.jspb.test.extendPackedRepeatedFixed32List, [1234]);
  549. msg.setExtension(
  550. proto.jspb.test.extendPackedRepeatedFixed64List, [0x1234567800000000]);
  551. msg.setExtension(
  552. proto.jspb.test.extendPackedRepeatedSfixed32List, [-1234]);
  553. msg.setExtension(
  554. proto.jspb.test.extendPackedRepeatedSfixed64List,
  555. [-0x1234567800000000]);
  556. msg.setExtension(
  557. proto.jspb.test.extendPackedRepeatedFloatList, [1.5]);
  558. msg.setExtension(
  559. proto.jspb.test.extendPackedRepeatedDoubleList, [-1.5]);
  560. msg.setExtension(
  561. proto.jspb.test.extendPackedRepeatedBoolList, [true]);
  562. msg.setExtension(proto.jspb.test.extendPackedRepeatedForeignEnumList,
  563. [proto.jspb.test.ForeignEnum.FOREIGN_FOO]);
  564. }
  565. /**
  566. * Tests extension serialization and deserialization.
  567. */
  568. it('testExtensions', function() {
  569. var msg = new proto.jspb.test.TestExtendable();
  570. fillExtensions(msg);
  571. var encoded = msg.serializeBinary();
  572. var decoded = proto.jspb.test.TestExtendable.deserializeBinary(encoded);
  573. checkExtensions(decoded);
  574. });
  575. });