-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest-util.lua
405 lines (352 loc) · 8.97 KB
/
test-util.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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
local U = require "alicorn-utils"
local blah = {}
U.append(blah, "not 1")
U.append(blah, "2")
local blah2 = U.shadowarray(blah)
U.append(blah2, "3")
blah2[1] = "1"
--local endTime = os.time() + 3
--while os.time() < endTime do
--end
for k, v in ipairs(blah2) do
if tostring(k) ~= v then
error("FAIL: " .. tostring(k) .. " , " .. tostring(v))
end
end
local blah3 = U.shadowarray(blah2)
U.append(blah3, "4")
blah3[5] = "5"
U.append(blah3, "6")
for k, v in ipairs(blah3) do
if tostring(k) ~= v then
error("FAIL: " .. tostring(k) .. " , " .. tostring(v))
end
end
local blah4 = U.shadowarray(blah3)
if blah4[6] ~= "6" then
error("FAIL blah4[6]: " .. tostring(blah4[6]))
end
if U.pop(blah4) ~= "6" then
error("FAIL blah4")
end
if blah4[6] ~= nil then
error("FAIL remove blah4[6]: " .. tostring(blah4[6]))
end
if blah3[6] ~= "6" then
error("FAIL shadow blah3[6]: " .. tostring(blah3[6]))
end
U.commit(blah4)
if blah3[6] ~= nil then
error("FAIL commit blah3[6]: " .. tostring(blah3[6]))
end
for k, v in ipairs(blah3) do
if tostring(k) ~= v then
error("FAIL: " .. tostring(k) .. " , " .. tostring(v))
end
end
if blah2[5] ~= nil then
error("FAIL blah2[5]: " .. tostring(blah2[5]))
end
U.commit(blah3)
if blah2[5] ~= "5" then
error("FAIL commit blah2[5]: " .. tostring(blah2[5]))
end
if blah[5] ~= nil then
error("FAIL blah[5]: " .. tostring(blah[5]))
end
U.commit(blah2)
if blah[5] ~= "5" then
error("FAIL commit blah[5]: " .. tostring(blah[5]))
end
local bar = { foo = 1 }
if bar.foo ~= 1 then
error("fail bar.foo: " .. tostring(bar.foo))
end
local foobar = U.shadowtable(bar)
foobar.bar = 2
if foobar.foo ~= 1 then
error("fail foobar.foo: " .. tostring(foobar.foo))
end
if foobar.bar ~= 2 then
error("fail foobar.bar: " .. tostring(foobar.bar))
end
foobar.foo = 3
if foobar.foo ~= 3 then
error("fail foobar.foo: " .. tostring(foobar.foo))
end
if bar.foo ~= 1 then
error("fail bar.foo: " .. tostring(bar.foo))
end
do
local found = {}
for k, v in pairs(foobar) do
found[k] = v
end
if found.foo ~= 3 then
error("fail found.foo: " .. tostring(foobar.foo))
end
if found.bar ~= 2 then
error("fail found.foo: " .. tostring(bar.foo))
end
end
do
local store = nil
local extractors = {
---@return integer
---@param obj RightCallEdge
function(obj)
return obj.left
end,
---@return integer
---@param obj RightCallEdge
function(obj)
return obj.right
end,
}
store = U.insert_tree_node({ left = "l1", right = "r1" }, store, 1, extractors, 0)
store = U.insert_tree_node({ left = "l2", right = "r2" }, store, 1, extractors, 0)
U.lock_table(store)
U.unlock_table(store)
store = U.insert_tree_node({ left = "l3", right = "r3" }, store, 1, extractors, 0)
if store["l3"]["r3"] == nil then
error("fail")
end
store = U.insert_tree_node({ left = "l4", right = "r4" }, store, 1, extractors, 1)
if store["l3"]["r3"] == nil then
error("fail")
end
store = U.insert_tree_node({ left = "l5", right = "r5" }, store, 1, extractors, 2)
store = U.revert_tree_node(store, 2)
if store["l5"] ~= nil then
error("fail")
end
if store["l3"]["r3"] == nil then
error("fail")
end
store = U.revert_tree_node(store, 2)
if store["l4"] == nil then
error("fail")
end
if store["l4"]["r4"] == nil then
error("fail")
end
store = U.revert_tree_node(store, 1)
if store["l4"] ~= nil then
error("fail")
end
if store["l3"]["r3"] == nil then
error("fail")
end
store = U.insert_tree_node({ left = "l4", right = "r4" }, store, 1, extractors, 1)
store = U.insert_tree_node({ left = "l5", right = "r5" }, store, 1, extractors, 2)
store = U.revert_tree_node(store, 2)
if store["l3"]["r3"] == nil then
error("fail")
end
U.lock_table(store)
U.unlock_table(store)
store = U.insert_tree_node({ left = "l6", right = "r6" }, store, 1, extractors, 2)
if store["l3"]["r3"] == nil then
error("fail")
end
if store["l4"] == nil then
error("fail")
end
if store["l4"]["r4"] == nil then
error("fail")
end
if store["l5"] ~= nil then
error("fail")
end
if store["l6"] == nil then
error("fail")
end
store = U.revert_tree_node(store, 2)
if store["l6"] ~= nil then
error("fail")
end
store = U.revert_tree_node(store, 1)
if store["l4"] ~= nil then
error("fail")
end
store = U.insert_tree_node({ left = "l3", right = "r3new" }, store, 1, extractors, 1)
if store["l3"]["r3new"] == nil then
error("fail")
end
if store["l3"]["r3"] == nil then
error("fail")
end
store = U.revert_tree_node(store, 1)
if store["l3"]["r3new"] ~= nil then
error("fail")
end
if store["l3"]["r3"] == nil then
error("fail")
end
store = U.insert_tree_node({ left = "l3", right = "r3new" }, store, 1, extractors, 1)
store = U.commit_tree_node(store, 1)
if store["l3"]["r3new"] == nil then
error("fail")
end
if store["l3"]["r3"] == nil then
error("fail")
end
store = U.insert_tree_node({ left = "l4", right = "r4" }, store, 1, extractors, 1)
store = U.insert_tree_node({ left = "l5", right = "r5" }, store, 1, extractors, 2)
if store["l4"] == nil then
error("fail")
end
if store["l4"]["r4"] == nil then
error("fail")
end
if store["l5"] == nil then
error("fail")
end
if store["l5"]["r5"] == nil then
error("fail")
end
store = U.commit_tree_node(store, 2)
store = U.commit_tree_node(store, 1)
if store["l4"] == nil then
error("fail")
end
if store["l4"]["r4"] == nil then
error("fail")
end
if store["l5"] == nil then
error("fail")
end
if store["l5"]["r5"] == nil then
error("fail")
end
store = U.insert_tree_node({ left = "l6", right = "r6" }, store, 1, extractors, 1)
store = U.insert_tree_node({ left = "l7", right = "r7" }, store, 1, extractors, 2)
if store["l6"] == nil then
error("fail")
end
if store["l6"]["r6"] == nil then
error("fail")
end
if store["l7"] == nil then
error("fail")
end
if store["l7"]["r7"] == nil then
error("fail")
end
store = U.revert_tree_node(store, 2)
store = U.commit_tree_node(store, 1)
if store["l6"] == nil then
error("fail")
end
if store["l6"]["r6"] == nil then
error("fail")
end
if store["l7"] ~= nil then
error("fail")
end
--U.commit_tree_node(store, 1)
local newstore = U.insert_tree_node({ left = "l1", right = "r1" }, nil, 1, extractors, 2)
newstore = U.shadowtable(newstore)
newstore = U.shadowtable(newstore)
newstore = U.insert_tree_node({ left = "l6", right = "r6" }, newstore, 1, extractors, U.getshadowdepth(newstore))
newstore = U.revert_tree_node(newstore, 1)
newstore = U.insert_tree_node({ left = "l6", right = "r6" }, newstore, 1, extractors, U.getshadowdepth(newstore))
local newstore = U.insert_tree_node({ left = "l1", right = "r1" }, nil, 1, extractors, 0)
local newstore = U.insert_tree_node({ left = "l1", right = "r2" }, newstore, 1, extractors, 2)
--local endTime = os.time() + 3
--while os.time() < endTime do
--end
if newstore["l1"]["r1"] == nil then
error("fail")
end
if newstore["l1"]["r2"] == nil then
error("fail")
end
newstore = U.commit_tree_node(newstore, 2)
if newstore["l1"]["r1"] == nil then
error("fail")
end
if newstore["l1"]["r2"] == nil then
error("fail")
end
local newstore = U.insert_tree_node({ left = "l2", right = "r1" }, newstore, 1, extractors, 3)
if newstore["l2"]["r1"] == nil then
error("fail")
end
local newstore = U.insert_tree_node({ left = "l2", right = "r2" }, newstore, 1, extractors, 5)
local newstore = U.insert_tree_node({ left = "l3", right = "r2" }, newstore, 1, extractors, 5)
if newstore["l2"]["r1"] == nil then
error("fail")
end
if newstore["l2"]["r2"] == nil then
error("fail")
end
newstore = U.commit_tree_node(newstore, 5)
newstore = U.revert_tree_node(newstore, 4)
if newstore["l2"]["r1"] == nil then
error("fail")
end
if newstore["l2"]["r2"] ~= nil then
error("fail")
end
if newstore["l3"] ~= nil then
error("fail")
end
local newstore = U.insert_tree_node({ left = "l2", right = "r2" }, newstore, 1, extractors, 5)
local newstore = U.insert_tree_node({ left = "l3", right = "r2" }, newstore, 1, extractors, 5)
if newstore["l2"]["r1"] == nil then
error("fail")
end
if newstore["l2"]["r2"] == nil then
error("fail")
end
if newstore["l3"] == nil then
error("fail")
end
newstore = U.revert_tree_node(newstore, 5)
newstore = U.commit_tree_node(newstore, 4)
if newstore["l2"]["r1"] == nil then
error("fail")
end
if newstore["l2"]["r2"] ~= nil then
error("fail")
end
if newstore["l3"] ~= nil then
error("fail")
end
newstore = U.commit_tree_node(newstore, 3)
newstore = U.revert_tree_node(newstore, 2)
if newstore["l2"] ~= nil then
error("fail")
end
if newstore["l2"] ~= nil then
error("fail")
end
newstore = U.revert_tree_node(newstore, 2)
if newstore["l1"]["r1"] == nil then
error("fail")
end
if newstore["l1"]["r2"] == nil then
error("fail")
end
newstore = U.revert_tree_node(newstore, 1)
if newstore["l1"]["r1"] == nil then
error("fail")
end
if newstore["l1"]["r2"] ~= nil then
error("fail")
end
end
--[[
local foo = metavariable()
speculate(function()
local bar = something()
flow(foo, bar)
speculate(function()
local quux = something_else()
flow(quux, foo)
end)
fail()
end)
]]
print("Success!")