This repository was archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
55 lines (41 loc) · 1.54 KB
/
index.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
53
54
55
const tape = require('tape')
const FixedBN = require('../dist')
tape('fix length tests', t => {
let bn = FixedBN.U256.fromNumber(9879879)
let array = bn.toArray()
t.equals(array.length, 32, 'toArray should produce the correct length')
let maxWidth = bn.maxWidth
t.equals(maxWidth, 256, 'should have correct lenght')
let minWidth = bn.minWidth
t.equals(minWidth, 0, 'should have correct lenght')
let buffer = bn.toBuffer()
t.equals(buffer.length, 32, 'toBuffer should produce the correct length')
let fromBN = FixedBN.U256.fromBuffer(buffer)
t.true(fromBN.eq(bn))
let arrayLike = bn.toArrayLike(Buffer)
t.equals(arrayLike.length, 32, 'toArrayLike should produce the correct length')
bn = FixedBN.U64.fromNumber(9879879)
array = bn.toArray()
t.equals(array.length, 8, 'toArray should produce the correct length')
buffer = bn.toBuffer()
t.equals(buffer.length, 8, 'toBuffer should produce the correct length')
arrayLike = bn.toArrayLike(Buffer)
t.equals(arrayLike.length, 8, 'toArrayLike should produce the correct length')
const fromHex = FixedBN.U64.fromString('0x5555555')
t.equals(fromHex.toString(), '89478485', 'should handle hex strings')
let threw = false
try {
threw = FixedBN.U64.fromString('0x55555555555555555')
} catch (e) {
threw = true
}
t.ok(threw, 'should throw error whith invalid length')
threw = false
try {
threw = FixedBN.Address.fromString('0x55555555555555555')
} catch (e) {
threw = true
}
t.ok(threw, 'should throw error whith invalid length')
t.end()
})