tests: Test the notification presets.
Make sure they behave the same in legacy and ruled modes.
This commit is contained in:
parent
9336b62f80
commit
552b2a22d1
|
@ -0,0 +1,85 @@
|
||||||
|
local naughty = require("naughty")
|
||||||
|
local notification = require("naughty.notification")
|
||||||
|
require("ruled.notification"):_clear()
|
||||||
|
|
||||||
|
local steps = {}
|
||||||
|
|
||||||
|
local BAD_IDEA = "never do this in practice, compat only"
|
||||||
|
|
||||||
|
local notif = setmetatable({}, {__mode="v"})
|
||||||
|
|
||||||
|
screen[1]:split()
|
||||||
|
|
||||||
|
for _, legacy_preset in ipairs {true, false} do
|
||||||
|
table.insert(steps, function()
|
||||||
|
-- This will either take the legacy preset path
|
||||||
|
-- or the ruled preset path.
|
||||||
|
function naughty.get__has_preset_handler()
|
||||||
|
return legacy_preset
|
||||||
|
end
|
||||||
|
|
||||||
|
local custom_preset = {
|
||||||
|
bg = "#00ff00",
|
||||||
|
fg = "#ff0000",
|
||||||
|
text = BAD_IDEA
|
||||||
|
}
|
||||||
|
|
||||||
|
notif[1] = notification {
|
||||||
|
preset = custom_preset,
|
||||||
|
}
|
||||||
|
|
||||||
|
assert(notif[1].bg == "#00ff00")
|
||||||
|
assert(notif[1].message == BAD_IDEA)
|
||||||
|
|
||||||
|
return true
|
||||||
|
end)
|
||||||
|
|
||||||
|
table.insert(steps, function()
|
||||||
|
notif[1]:destroy()
|
||||||
|
|
||||||
|
return true
|
||||||
|
end)
|
||||||
|
|
||||||
|
for s in screen do
|
||||||
|
-- Make sure the screen doesn't cause a memory leak.
|
||||||
|
table.insert(steps, function()
|
||||||
|
collectgarbage("collect")
|
||||||
|
|
||||||
|
if notif[1] then return end
|
||||||
|
|
||||||
|
local custom_preset = {
|
||||||
|
bg = "#0000ff",
|
||||||
|
fg = "#ff0000",
|
||||||
|
screen = s
|
||||||
|
}
|
||||||
|
|
||||||
|
notif[1] = notification {
|
||||||
|
preset = custom_preset,
|
||||||
|
title = "test",
|
||||||
|
}
|
||||||
|
|
||||||
|
assert(notif[1].bg == "#0000ff")
|
||||||
|
|
||||||
|
assert(notif[1].screen == s)
|
||||||
|
|
||||||
|
return true
|
||||||
|
end)
|
||||||
|
|
||||||
|
table.insert(steps, function()
|
||||||
|
assert(notif[1].screen == s)
|
||||||
|
notif[1]:destroy()
|
||||||
|
|
||||||
|
return true
|
||||||
|
end)
|
||||||
|
|
||||||
|
table.insert(steps, function()
|
||||||
|
collectgarbage("collect")
|
||||||
|
|
||||||
|
if notif[1] then return end
|
||||||
|
|
||||||
|
return true
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
require("_runner").run_steps(steps)
|
|
@ -71,8 +71,14 @@ local function check_screen(s)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
for _, legacy_preset in ipairs {true, false} do
|
||||||
|
|
||||||
-- Create notifications in each position.
|
-- Create notifications in each position.
|
||||||
table.insert(steps, function()
|
table.insert(steps, function()
|
||||||
|
function naughty.get__has_preset_handler()
|
||||||
|
return legacy_preset
|
||||||
|
end
|
||||||
|
|
||||||
rnotif._clear()
|
rnotif._clear()
|
||||||
add_many(s1)
|
add_many(s1)
|
||||||
|
|
||||||
|
@ -131,7 +137,7 @@ table.insert(steps, function()
|
||||||
return true
|
return true
|
||||||
end)
|
end)
|
||||||
|
|
||||||
--local weak = nil --FIXME
|
local weak = nil
|
||||||
|
|
||||||
-- Delete a screen and make sure it gets GCed.
|
-- Delete a screen and make sure it gets GCed.
|
||||||
table.insert(steps, function()
|
table.insert(steps, function()
|
||||||
|
@ -143,18 +149,19 @@ table.insert(steps, function()
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Drop our string reference to s2.
|
-- Drop our string reference to s2.
|
||||||
--weak, s2 = setmetatable({s2}, {__mode="v"}), nil --FIXME
|
weak, s2 = setmetatable({s2}, {__mode="v"}), nil
|
||||||
|
|
||||||
return true
|
return true
|
||||||
end)
|
end)
|
||||||
|
|
||||||
--FIXME
|
table.insert(steps, function()
|
||||||
--table.insert(steps, function()
|
if weak[1] == nil then return true end
|
||||||
-- if weak[1] == nil then return true end
|
|
||||||
--
|
for _=1, 10 do
|
||||||
-- for _=1, 10 do
|
collectgarbage("collect")
|
||||||
-- collectgarbage("collect")
|
end
|
||||||
-- end
|
end)
|
||||||
--end)
|
|
||||||
|
end
|
||||||
|
|
||||||
require("_runner").run_steps(steps)
|
require("_runner").run_steps(steps)
|
||||||
|
|
Loading…
Reference in New Issue