-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathsfixed64_test_pairs.js
52 lines (49 loc) · 1.52 KB
/
sfixed64_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
47
48
49
50
51
52
/**
* @fileoverview Test data for sfixed32 encoding and decoding.
*/
goog.module('protobuf.binary.sfixed64TestPairs');
const BufferDecoder = goog.require('protobuf.binary.BufferDecoder');
const Int64 = goog.require('protobuf.Int64');
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, longValue: !Int64, bufferDecoder:
* !BufferDecoder}>}
*/
function getSfixed64Pairs() {
const sfixed64Pairs = [
{
name: 'zero',
longValue: Int64.fromInt(0),
bufferDecoder:
createBufferDecoder(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
},
{
name: 'one',
longValue: Int64.fromInt(1),
bufferDecoder:
createBufferDecoder(0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
},
{
name: 'minus one',
longValue: Int64.fromInt(-1),
bufferDecoder:
createBufferDecoder(0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF),
},
{
name: 'max int 2^63 -1',
longValue: Int64.getMaxValue(),
bufferDecoder:
createBufferDecoder(0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F)
},
{
name: 'min int -2^63',
longValue: Int64.getMinValue(),
bufferDecoder:
createBufferDecoder(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80)
},
];
return [...sfixed64Pairs];
}
exports = {getSfixed64Pairs};