2018-12-02 19:57:32 +00:00
|
|
|
# constantine
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at http://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2018-12-03 18:56:14 +00:00
|
|
|
import unittest, random,
|
2018-12-02 19:57:32 +00:00
|
|
|
../constantine/[io, bigints]
|
|
|
|
|
2018-12-03 18:56:14 +00:00
|
|
|
randomize(0xDEADBEEF) # Random seed for reproducibility
|
|
|
|
type T = BaseType
|
2018-12-02 19:57:32 +00:00
|
|
|
|
|
|
|
suite "IO":
|
|
|
|
test "Parsing raw integers":
|
|
|
|
block: # Sanity check
|
|
|
|
let x = 0'u64
|
|
|
|
let x_bytes = cast[array[8, byte]](x)
|
|
|
|
let big = parseRawUint(x_bytes, 64, cpuEndian)
|
|
|
|
|
|
|
|
check:
|
|
|
|
T(big[0]) == 0
|
|
|
|
T(big[1]) == 0
|
|
|
|
|
|
|
|
block: # 2^63 is properly represented on 2 limbs
|
|
|
|
let x = 1'u64 shl 63
|
|
|
|
let x_bytes = cast[array[8, byte]](x)
|
|
|
|
let big = parseRawUint(x_bytes, 64, cpuEndian)
|
|
|
|
|
|
|
|
check:
|
|
|
|
T(big[0]) == 0
|
|
|
|
T(big[1]) == 1
|
2018-12-03 18:56:14 +00:00
|
|
|
|
2018-12-03 20:01:29 +00:00
|
|
|
test "Parsing and dumping round-trip on uint64":
|
|
|
|
block:
|
|
|
|
# "Little-endian" - 2^63
|
2018-12-03 18:56:14 +00:00
|
|
|
let x = 1'u64 shl 63
|
|
|
|
let x_bytes = cast[array[8, byte]](x)
|
|
|
|
let big = parseRawUint(x_bytes, 64, littleEndian) # It's fine even on big-endian platform. We only want the byte-pattern
|
|
|
|
|
|
|
|
var r_bytes: array[8, byte]
|
|
|
|
dumpRawUint(r_bytes, big, littleEndian)
|
|
|
|
check: x_bytes == r_bytes
|
|
|
|
|
2018-12-03 20:01:29 +00:00
|
|
|
block: # "Little-endian" - single random
|
|
|
|
let x = uint64 rand(0..high(int))
|
|
|
|
let x_bytes = cast[array[8, byte]](x)
|
|
|
|
let big = parseRawUint(x_bytes, 64, littleEndian) # It's fine even on big-endian platform. We only want the byte-pattern
|
|
|
|
|
|
|
|
var r_bytes: array[8, byte]
|
|
|
|
dumpRawUint(r_bytes, big, littleEndian)
|
|
|
|
check: x_bytes == r_bytes
|
|
|
|
|
|
|
|
block: # "Little-endian" - 10 random cases
|
|
|
|
for _ in 0 ..< 10:
|
|
|
|
let x = uint64 rand(0..high(int))
|
|
|
|
let x_bytes = cast[array[8, byte]](x)
|
|
|
|
let big = parseRawUint(x_bytes, 64, littleEndian) # It's fine even on big-endian platform. We only want the byte-pattern
|
2018-12-03 18:56:14 +00:00
|
|
|
|
2018-12-03 20:01:29 +00:00
|
|
|
var r_bytes: array[8, byte]
|
|
|
|
dumpRawUint(r_bytes, big, littleEndian)
|
|
|
|
check: x_bytes == r_bytes
|