use super::*;
#[test]
fn hash4_matches_expected_value_on_known_input() {
let table = FastHashTable::new(12, 4);
let data = [0x01u8, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08];
let h = unsafe { table.hash_ptr::<4>(data.as_ptr()) };
let expected = 0x04030201u32.wrapping_mul(0x9E3779B1) >> 20;
assert_eq!(
h, expected,
"hash4 must match upstream zstd multiply-shift formula"
);
}
#[test]
fn hash5_matches_expected_value_on_known_input() {
let table = FastHashTable::new(13, 5);
let data = [0x01u8, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08];
let h = unsafe { table.hash_ptr::<5>(data.as_ptr()) };
let u = u64::from_le_bytes(data);
let expected = (((u << (64 - 40)).wrapping_mul(889_523_592_379u64)) >> (64 - 13)) as u32;
assert_eq!(h, expected);
}
#[test]
fn get_put_round_trip_under_known_hash() {
let mut table = FastHashTable::new(8, 4);
let data = [0xAAu8, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF, 0x00, 0x11];
let h = unsafe { table.hash_ptr::<4>(data.as_ptr()) };
unsafe {
assert_eq!(table.get(h), 0, "fresh table reads sentinel");
table.put(h, 0xCAFE_BABE);
assert_eq!(table.get(h), 0xCAFE_BABE);
}
}
#[test]
fn clear_resets_all_entries_to_sentinel() {
let mut table = FastHashTable::new(6, 4);
let data = [1u8, 2, 3, 4, 5, 6, 7, 8];
let h = unsafe { table.hash_ptr::<4>(data.as_ptr()) };
unsafe {
table.put(h, 42);
}
table.clear();
let read_back = unsafe { table.get(h) };
assert_eq!(read_back, 0, "clear must zero every entry");
}
#[test]
fn hash6_matches_expected_value_on_known_input() {
let table = FastHashTable::new(14, 6);
let data = [0x01u8, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08];
let h = unsafe { table.hash_ptr::<6>(data.as_ptr()) };
let u = u64::from_le_bytes(data);
let expected = (((u << (64 - 48)).wrapping_mul(227_718_039_650_203u64)) >> (64 - 14)) as u32;
assert_eq!(
h, expected,
"hash6 must match upstream zstd multiply-shift formula"
);
}
#[test]
fn hash7_matches_expected_value_on_known_input() {
let table = FastHashTable::new(15, 7);
let data = [0x01u8, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08];
let h = unsafe { table.hash_ptr::<7>(data.as_ptr()) };
let u = u64::from_le_bytes(data);
let expected = (((u << (64 - 56)).wrapping_mul(58_295_818_150_454_627u64)) >> (64 - 15)) as u32;
assert_eq!(
h, expected,
"hash7 must match upstream zstd multiply-shift formula"
);
}
#[test]
fn hash8_matches_expected_value_on_known_input() {
let table = FastHashTable::new(16, 8);
let data = [0x01u8, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08];
let h = unsafe { table.hash_ptr::<8>(data.as_ptr()) };
let u = u64::from_le_bytes(data);
let expected = (u.wrapping_mul(0xCF1BBCDCB7A56463u64) >> (64 - 16)) as u32;
assert_eq!(
h, expected,
"hash8 must match upstream zstd multiply-shift formula"
);
}
#[test]
fn hash_log_minimum_one_constructs_two_entry_table() {
let table = FastHashTable::new(1, 4);
let data = [0u8, 0, 0, 0];
let h = unsafe { table.hash_ptr::<4>(data.as_ptr()) };
assert!(h < 2, "hash_log=1 must produce values ∈ {{0, 1}} (got {h})");
}
#[test]
fn hash_log_maximum_thirty_is_accepted_by_validation() {
validate_params(ZSTD_HASHLOG_MAX, 4);
validate_params(ZSTD_HASHLOG_MAX, 8);
}
#[test]
#[should_panic(expected = "hash_log must be in 1..=")]
fn panics_on_zero_hash_log() {
let _ = FastHashTable::new(0, 4);
}
#[test]
#[should_panic(expected = "hash_log must be in 1..=")]
fn panics_on_hash_log_above_zstd_hashlog_max() {
let _ = FastHashTable::new(31, 4);
}
#[test]
#[should_panic(expected = "ZSTD Fast strategy only supports mls 4..=8")]
fn panics_on_mls_below_four() {
let _ = FastHashTable::new(12, 3);
}
#[test]
#[should_panic(expected = "ZSTD Fast strategy only supports mls 4..=8")]
fn panics_on_mls_above_eight() {
let _ = FastHashTable::new(12, 9);
}