-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathsfixed32_test_pairs.js
46 lines (43 loc) · 1.26 KB
/
sfixed32_test_pairs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* @fileoverview Test data for sfixed32 encoding and decoding.
*/
goog.module('protobuf.binary.sfixed32TestPairs');
const BufferDecoder = goog.require('protobuf.binary.BufferDecoder');
const {createBufferDecoder} = goog.require('protobuf.binary.bufferDecoderHelper');
/**
* An array of Pairs of int values and their bit representation.
* This is used to test encoding and decoding from/to the protobuf wire format.
* @return {!Array<{name: string, intValue: number, bufferDecoder:
* !BufferDecoder}>}
*/
function getSfixed32Pairs() {
const sfixed32Pairs = [
{
name: 'zero',
intValue: 0,
bufferDecoder: createBufferDecoder(0x00, 0x00, 0x00, 0x00),
},
{
name: 'one',
intValue: 1,
bufferDecoder: createBufferDecoder(0x01, 0x00, 0x00, 0x00)
},
{
name: 'minus one',
intValue: -1,
bufferDecoder: createBufferDecoder(0xFF, 0xFF, 0xFF, 0xFF),
},
{
name: 'max int 2^31 -1',
intValue: Math.pow(2, 31) - 1,
bufferDecoder: createBufferDecoder(0xFF, 0xFF, 0xFF, 0x7F)
},
{
name: 'min int -2^31',
intValue: -Math.pow(2, 31),
bufferDecoder: createBufferDecoder(0x00, 0x00, 0x00, 0x80)
},
];
return [...sfixed32Pairs];
}
exports = {getSfixed32Pairs};