-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathencoding_spec.lua
129 lines (104 loc) · 3.47 KB
/
encoding_spec.lua
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
describe("Encoding tests", function()
local Sqids = require("sqids")
it("match against a short blocklist word", function()
local sqids = Sqids.new({
blocklist = {
'pnd'
}
})
local decodedResult = sqids:decode(sqids:encode({ 1000 }))
assert.are.same(decodedResult, { 1000 })
end)
it("blocklist filtering in constructor", function()
local sqids = Sqids.new({
alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
blocklist = {
'sxnzkl' -- lowercase blocklist in only-uppercase alphabet
}
})
local id = sqids:encode({ 1, 2, 3 })
local numbers = sqids:decode(id)
assert.are.equal(id, 'IBSHOZ') -- without blocklist, would've been "SXNZKL"
assert.are.same(numbers, { 1, 2, 3 })
end)
it("max encoding attempts", function()
local alphabet = 'abc'
local minLength = 3
local blocklist = {
'cab', 'abc', 'bca'
}
local sqids = Sqids.new({
alphabet = alphabet,
minLength = minLength,
blocklist = blocklist
})
assert.are.equal(#alphabet, minLength)
assert.are.equal(#blocklist, minLength)
local success, _ = pcall(function() sqids:encode({ 0 }) end)
assert.is_false(success)
end)
it("incremental numbers, same index 0", function()
local sqids = Sqids.new()
local ids = {
SvIz = { 0, 0 },
n3qa = { 0, 1 },
tryF = { 0, 2 },
eg6q = { 0, 3 },
rSCF = { 0, 4 },
sR8x = { 0, 5 },
uY2M = { 0, 6 },
['74dI'] = { 0, 7 },
['30WX'] = { 0, 8 },
moxr = { 0, 9 }
}
for id, numbers in pairs(ids) do
assert.are.equal(sqids:encode(numbers), id)
assert.are.same(sqids:decode(id), numbers)
end
end)
it("incremental numbers, same index 1", function()
local sqids = Sqids.new()
local ids = {
SvIz = { 0, 0 },
nWqP = { 1, 0 },
tSyw = { 2, 0 },
eX68 = { 3, 0 },
rxCY = { 4, 0 },
sV8a = { 5, 0 },
uf2K = { 6, 0 },
['7Cdk'] = { 7, 0 },
['3aWP'] = { 8, 0 },
m2xn = { 9, 0 }
}
for id, numbers in pairs(ids) do
assert.are.equal(sqids:encode(numbers), id)
assert.are.same(sqids:decode(id), numbers)
end
end)
it("multi input", function()
local sqids = Sqids.new()
local numbers = {}
for i = 0, 99 do
table.insert(numbers, i)
end
local output = sqids:decode(sqids:encode(numbers))
assert.are.same(numbers, output)
end)
it("decoding empty string", function()
local sqids = Sqids.new()
assert.are.same(sqids:decode(''), {})
end)
it("decoding an ID with an invalid character", function()
local sqids = Sqids.new()
assert.are.same(sqids:decode('*'), {})
end)
it("encode out-of-range numbers", function()
local encodingError =
"Encoding supports numbers between 0 and 2 ^ 53 - 1"
local sqids = Sqids.new()
local success, _ = pcall(function() sqids:encode({ -1 }) end)
assert.is_false(success)
local success2, _ = pcall(function() sqids:encode({ 2 ^ 53 }) end)
assert.is_false(success2)
end)
end)