2023-01-22 22:06:35 +00:00
|
|
|
-- Deferring a task should return the thread that can then be cancelled
|
|
|
|
|
|
|
|
local thread = task.defer(function() end)
|
|
|
|
assert(type(thread) == "thread", "Defer should return the thread spawned")
|
|
|
|
|
2023-01-21 20:07:18 +00:00
|
|
|
-- Deferred functions should run after other threads
|
|
|
|
|
|
|
|
local flag: boolean = false
|
|
|
|
task.defer(function()
|
|
|
|
flag = true
|
|
|
|
end)
|
2023-01-22 01:11:17 +00:00
|
|
|
assert(not flag, "Defer should not run instantly or block")
|
2023-02-13 14:28:18 +00:00
|
|
|
task.wait(0.05)
|
2023-01-22 01:11:17 +00:00
|
|
|
assert(flag, "Defer should run")
|
2023-01-21 20:07:18 +00:00
|
|
|
|
|
|
|
-- Deferred functions should work with yielding
|
|
|
|
|
|
|
|
local flag2: boolean = false
|
|
|
|
task.defer(function()
|
2023-02-13 14:28:18 +00:00
|
|
|
task.wait(0.05)
|
2023-01-21 20:07:18 +00:00
|
|
|
flag2 = true
|
|
|
|
end)
|
2023-01-22 01:11:17 +00:00
|
|
|
assert(not flag2, "Defer should work with yielding (1)")
|
2023-02-13 14:28:18 +00:00
|
|
|
task.wait(0.1)
|
2023-01-22 01:11:17 +00:00
|
|
|
assert(flag2, "Defer should work with yielding (2)")
|
2023-01-21 20:07:18 +00:00
|
|
|
|
|
|
|
-- Deferred functions should run after other spawned threads
|
2023-01-24 17:51:12 +00:00
|
|
|
local flag3: number = 1
|
2023-01-21 20:07:18 +00:00
|
|
|
task.defer(function()
|
2023-01-24 17:51:12 +00:00
|
|
|
if flag3 == 2 then
|
|
|
|
flag3 = 3
|
2023-01-21 20:07:18 +00:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
task.spawn(function()
|
2023-01-24 17:51:12 +00:00
|
|
|
if flag3 == 1 then
|
|
|
|
flag3 = 2
|
2023-01-21 20:07:18 +00:00
|
|
|
end
|
|
|
|
end)
|
2023-01-24 17:51:12 +00:00
|
|
|
task.wait()
|
|
|
|
assert(flag3 == 3, "Defer should run after spawned threads")
|
2023-01-21 20:07:18 +00:00
|
|
|
|
2023-02-16 15:19:58 +00:00
|
|
|
-- Delay should be able to be nested
|
|
|
|
|
|
|
|
local flag4: boolean = false
|
|
|
|
task.delay(0.05, function()
|
|
|
|
local function nested3()
|
|
|
|
task.delay(0.05, function()
|
|
|
|
flag4 = true
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
local function nested2()
|
|
|
|
task.delay(0.05, nested3)
|
|
|
|
end
|
|
|
|
local function nested1()
|
|
|
|
task.delay(0.05, nested2)
|
|
|
|
end
|
|
|
|
nested1()
|
|
|
|
end)
|
|
|
|
task.wait(0.25)
|
|
|
|
assert(flag4, "Defer should work with nesting")
|
|
|
|
|
2023-01-21 20:07:18 +00:00
|
|
|
-- Varargs should get passed correctly
|
|
|
|
|
2023-01-24 17:52:41 +00:00
|
|
|
local fcheck = require("./fcheck")
|
2023-01-24 17:24:57 +00:00
|
|
|
|
|
|
|
local function f(...: any)
|
|
|
|
fcheck(1, "string", select(1, ...))
|
|
|
|
fcheck(2, "number", select(2, ...))
|
|
|
|
fcheck(3, "function", select(3, ...))
|
2023-01-21 20:07:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
task.defer(f, "", 1, f)
|
|
|
|
task.defer(f, "inf", math.huge, f)
|
|
|
|
task.defer(f, "NaN", 0 / 0, f)
|