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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
local hash = require 'rspamd_cryptobox_hash'
context("Cryptobox hash tests", function()
local function hash_value(value)
local h = hash.create()
h:update(value)
return h:hex()
end
local function compare_hashes(val1, val2)
return hash_value(val1) == hash_value(val2)
end
context("Basic type hashing", function()
test("Handles strings", function()
local h1 = hash_value("test")
local h2 = hash_value("test")
assert_equal(h1, h2, "Same strings should hash to same value")
assert_not_equal(hash_value("test"), hash_value("test2"),
"Different strings should hash differently")
end)
test("Handles numbers", function()
-- Integer tests
assert_equal(hash_value(123), hash_value(123))
assert_not_equal(hash_value(123), hash_value(124))
-- Float tests
assert_equal(hash_value(123.45), hash_value(123.45))
assert_not_equal(hash_value(123.45), hash_value(123.46))
-- Different number types should hash differently
assert_not_equal(hash_value(123), hash_value(123.1))
end)
test("Handles booleans", function()
assert_equal(hash_value(true), hash_value(true))
assert_equal(hash_value(false), hash_value(false))
assert_not_equal(hash_value(true), hash_value(false))
end)
test("Handles nil", function()
local h1 = hash.create()
local h2 = hash.create()
h1:update(nil)
h2:update(nil)
assert_equal(h1:hex(), h2:hex())
end)
end)
context("Table hashing", function()
test("Handles array tables", function()
assert_equal(hash_value({ 1, 2, 3 }), hash_value({ 1, 2, 3 }))
assert_not_equal(hash_value({ 1, 2, 3 }), hash_value({ 1, 2, 4 }))
assert_not_equal(hash_value({ 1, 2, 3 }), hash_value({ 1, 2 }))
end)
test("Handles key-value tables", function()
assert_equal(
hash_value({ foo = "bar", baz = 123 }),
hash_value({ foo = "bar", baz = 123 })
)
assert_not_equal(
hash_value({ foo = "bar" }),
hash_value({ foo = "baz" })
)
end)
test("Handles mixed tables", function()
assert_equal(
hash_value({ 1, 2, foo = "bar" }),
hash_value({ 1, 2, foo = "bar" })
)
assert_not_equal(
hash_value({ 1, 2, foo = "bar" }),
hash_value({ 1, 2, foo = "baz" })
)
end)
test("Handles nested tables", function()
assert_equal(
hash_value({ 1, { 2, 3 }, foo = { bar = "baz" } }),
hash_value({ 1, { 2, 3 }, foo = { bar = "baz" } })
)
assert_not_equal(
hash_value({ 1, { 2, 3 } }),
hash_value({ 1, { 2, 4 } })
)
end)
end)
context("Complex scenarios", function()
test("Handles multiple updates", function()
local h1 = hash.create()
h1:update("test")
h1:update(123)
h1:update({ foo = "bar" })
local h2 = hash.create()
h2:update("test")
h2:update(123)
h2:update({ foo = "bar" })
assert_equal(h1:hex(), h2:hex())
end)
test("Order matters for updates", function()
local h1 = hash.create()
h1:update("a")
h1:update("b")
local h2 = hash.create()
h2:update("b")
h2:update("a")
assert_not_equal(h1:hex(), h2:hex())
end)
test("Handles all types together", function()
local complex = {
str = "test",
num = 123,
float = 123.45,
bool = true,
arr = { 1, 2, 3 },
nested = {
foo = {
bar = "baz"
}
}
}
assert_equal(hash_value(complex), hash_value(complex))
end)
end)
context("Error conditions", function()
test("Prevents update after finalization", function()
local h = hash.create()
h:update("test")
local _ = h:hex() -- finalize
assert_error(function()
h:update("more")
end)
end)
test("Handles function values", function()
local h = hash.create()
local f = function()
end
assert_not_error(function()
h:update(f)
end)
end)
end)
context("Determinism tests", function()
test("Same input always produces same hash", function()
local inputs = {
"test string",
123,
true,
{ 1, 2, 3 },
{ foo = "bar", nested = { 1, 2, 3 } },
}
for _, input in ipairs(inputs) do
local h1 = hash_value(input)
local h2 = hash_value(input)
assert_equal(h1, h2, "Hash should be deterministic for: " .. type(input))
end
end)
end)
end)
|