2020-01-28 23:43:09 +01:00
|
|
|
import hash.wyhash
|
|
|
|
|
|
|
|
struct WyHashTest {
|
|
|
|
s string
|
|
|
|
seed u64
|
|
|
|
expected u64
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_wyhash() {
|
|
|
|
tests := [WyHashTest{
|
|
|
|
'',0,0x0},
|
|
|
|
WyHashTest{
|
|
|
|
'v',1,0xc72a8f8bdfdd82},
|
|
|
|
WyHashTest{
|
|
|
|
'is',2,0xa1099c1c58fc13e},
|
|
|
|
WyHashTest{
|
|
|
|
'the best',3,0x1b1215ef0b0b94c},
|
|
|
|
WyHashTest{
|
|
|
|
'abcdefghijklmnopqrstuvwxyz',4,0x6db0e773d1503fac},
|
|
|
|
WyHashTest{
|
|
|
|
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',5,0xe062dfda99413626},
|
|
|
|
]
|
|
|
|
for test in tests {
|
|
|
|
got := wyhash.sum64(test.s.bytes(), test.seed)
|
|
|
|
// println(' # GOT: $got | $got.hex()')
|
|
|
|
// println(' # EXPECTED: $test.expected | $test.expected.hex()')
|
|
|
|
assert got == test.expected
|
|
|
|
}
|
|
|
|
}
|
2020-02-03 06:02:28 +01:00
|
|
|
|
2020-04-26 16:25:54 +02:00
|
|
|
fn test_rand_u64() {
|
2020-02-03 06:02:28 +01:00
|
|
|
seed := u64(111)
|
2020-04-26 16:25:54 +02:00
|
|
|
mut rand_nos := []u64{}
|
2020-02-03 06:02:28 +01:00
|
|
|
for _ in 0..40 {
|
|
|
|
rand_no := wyhash.rand_u64(&seed)
|
|
|
|
for r in rand_nos {
|
|
|
|
assert rand_no != r
|
|
|
|
}
|
|
|
|
rand_nos << rand_no
|
2020-04-26 16:25:54 +02:00
|
|
|
}
|
2020-03-05 23:27:21 +01:00
|
|
|
assert true
|
|
|
|
}
|