• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
31/**
32 * @fileoverview Test cases for jspb's binary protocol buffer writer. In
33 * practice BinaryWriter is used to drive the Decoder and Reader test cases,
34 * so only writer-specific tests are here.
35 *
36 * Test suite is written using Jasmine -- see http://jasmine.github.io/
37 *
38 * @author aappleby@google.com (Austin Appleby)
39 */
40
41goog.require('goog.crypt');
42goog.require('goog.testing.asserts');
43goog.require('jspb.BinaryWriter');
44goog.requireType('jspb.BinaryMessage');
45
46/**
47 * @param {function()} func This function should throw an error when run.
48 */
49function assertFails(func) {
50  var e = assertThrows(func);
51  // assertNotNull(e.toString().match(/Error/));
52}
53
54
55describe('binaryWriterTest', function() {
56  /**
57   * Verifies that misuse of the writer class triggers assertions.
58   */
59  it('testWriteErrors', function() {
60    // Submessages with invalid field indices should assert.
61    var writer = new jspb.BinaryWriter();
62    var dummyMessage = /** @type {!jspb.BinaryMessage} */ ({});
63
64    assertFails(function() {
65      writer.writeMessage(-1, dummyMessage, goog.nullFunction);
66    });
67
68    // Writing invalid field indices should assert.
69    writer = new jspb.BinaryWriter();
70    assertFails(function() {
71      writer.writeUint64(-1, 1);
72    });
73
74    // Writing out-of-range field values should assert.
75    writer = new jspb.BinaryWriter();
76
77    assertFails(function() {
78      writer.writeInt32(1, -Infinity);
79    });
80    assertFails(function() {
81      writer.writeInt32(1, Infinity);
82    });
83
84    assertFails(function() {
85      writer.writeInt64(1, -Infinity);
86    });
87    assertFails(function() {
88      writer.writeInt64(1, Infinity);
89    });
90
91    assertFails(function() {
92      writer.writeUint32(1, -1);
93    });
94    assertFails(function() {
95      writer.writeUint32(1, Infinity);
96    });
97
98    assertFails(function() {
99      writer.writeUint64(1, -1);
100    });
101    assertFails(function() {
102      writer.writeUint64(1, Infinity);
103    });
104
105    assertFails(function() {
106      writer.writeSint32(1, -Infinity);
107    });
108    assertFails(function() {
109      writer.writeSint32(1, Infinity);
110    });
111
112    assertFails(function() {
113      writer.writeSint64(1, -Infinity);
114    });
115    assertFails(function() {
116      writer.writeSint64(1, Infinity);
117    });
118
119    assertFails(function() {
120      writer.writeFixed32(1, -1);
121    });
122    assertFails(function() {
123      writer.writeFixed32(1, Infinity);
124    });
125
126    assertFails(function() {
127      writer.writeFixed64(1, -1);
128    });
129    assertFails(function() {
130      writer.writeFixed64(1, Infinity);
131    });
132
133    assertFails(function() {
134      writer.writeSfixed32(1, -Infinity);
135    });
136    assertFails(function() {
137      writer.writeSfixed32(1, Infinity);
138    });
139
140    assertFails(function() {
141      writer.writeSfixed64(1, -Infinity);
142    });
143    assertFails(function() {
144      writer.writeSfixed64(1, Infinity);
145    });
146  });
147
148
149  /**
150   * Basic test of retrieving the result as a Uint8Array buffer
151   */
152  it('testGetResultBuffer', function() {
153    var expected = '0864120b48656c6c6f20776f726c641a0301020320c801';
154
155    var writer = new jspb.BinaryWriter();
156    writer.writeUint32(1, 100);
157    writer.writeString(2, 'Hello world');
158    writer.writeBytes(3, new Uint8Array([1, 2, 3]));
159    writer.writeUint32(4, 200);
160
161    var buffer = writer.getResultBuffer();
162    assertEquals(expected, goog.crypt.byteArrayToHex(buffer));
163  });
164});
165