2016-04-09 08:57:56 +02:00
|
|
|
-- This test hit the client layout code paths to see if there is errors.
|
|
|
|
-- it doesn't check if the layout are correct.
|
|
|
|
|
|
|
|
local awful = require("awful")
|
2017-03-08 21:18:33 +01:00
|
|
|
local gtable = require("gears.table")
|
2016-04-09 08:57:56 +02:00
|
|
|
|
|
|
|
local first_layout = nil
|
|
|
|
|
|
|
|
local t = nil
|
|
|
|
|
|
|
|
local has_spawned = false
|
|
|
|
|
|
|
|
local steps = {
|
|
|
|
|
2016-12-27 21:39:08 +01:00
|
|
|
-- Add enough clients
|
|
|
|
function(count)
|
|
|
|
if count <= 1 and not has_spawned then
|
|
|
|
for _=1, 5 do awful.spawn("xterm") end
|
|
|
|
has_spawned = true
|
|
|
|
elseif #client.get() >= 5 then
|
2016-04-09 08:57:56 +02:00
|
|
|
|
2016-12-27 21:39:08 +01:00
|
|
|
first_layout = client.focus:tags()[1].layout
|
2016-04-09 08:57:56 +02:00
|
|
|
|
2016-12-27 21:39:08 +01:00
|
|
|
t = client.focus:tags()[1]
|
2016-04-09 08:57:56 +02:00
|
|
|
|
2016-12-27 21:39:08 +01:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end,
|
2016-04-09 08:57:56 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-06-09 10:13:14 +02:00
|
|
|
-- Test if layouts are called
|
|
|
|
do
|
|
|
|
local c1, c2
|
|
|
|
local arrange_expected = false
|
|
|
|
local fake_layout = {
|
|
|
|
arrange = function()
|
|
|
|
assert(arrange_expected)
|
|
|
|
arrange_expected = false
|
|
|
|
end,
|
|
|
|
name = "fake",
|
|
|
|
}
|
|
|
|
|
|
|
|
table.insert(steps, function()
|
|
|
|
c1, c2 = client.get()[1], client.get()[2]
|
|
|
|
client.focus = c1
|
|
|
|
|
|
|
|
arrange_expected = true
|
|
|
|
awful.layout.set(fake_layout)
|
|
|
|
return true
|
|
|
|
end)
|
|
|
|
|
|
|
|
table.insert(steps, function()
|
|
|
|
assert(arrange_expected == false)
|
|
|
|
|
|
|
|
arrange_expected = false
|
|
|
|
client.focus = c2
|
|
|
|
return true
|
|
|
|
end)
|
|
|
|
|
|
|
|
table.insert(steps, function()
|
|
|
|
-- This sync is needed to avoid a race: Consider the code
|
|
|
|
-- client.focus = c2
|
|
|
|
-- gears.timer.start_new(0, function()
|
|
|
|
-- client.focus = c1
|
|
|
|
-- end)
|
|
|
|
-- The C code would focus c2, but Lua would then change the focus to c1
|
|
|
|
-- before the X11 server acknowledged the focus change (FocusIn event).
|
|
|
|
-- Thus, when that event comes in, the C code things that c1 currently
|
|
|
|
-- has the focus and thus would do c2:emit_signal("focus"). Then, when
|
|
|
|
-- the FocusIn event for c1 comes, it would do c1:emit_signal("focus").
|
|
|
|
awesome.sync()
|
|
|
|
return true
|
|
|
|
end)
|
|
|
|
|
|
|
|
table.insert(steps, function()
|
|
|
|
assert(arrange_expected == false)
|
|
|
|
|
|
|
|
arrange_expected = true
|
|
|
|
fake_layout.need_focus_update = true
|
|
|
|
client.focus = c1
|
|
|
|
return true
|
|
|
|
end)
|
|
|
|
|
|
|
|
table.insert(steps, function()
|
|
|
|
assert(arrange_expected == false)
|
|
|
|
|
|
|
|
awful.layout.set(awful.layout.suit.floating)
|
|
|
|
return true
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2016-04-09 08:57:56 +02:00
|
|
|
local function next_layout()
|
|
|
|
awful.layout.inc(1)
|
|
|
|
|
|
|
|
assert(client.focus:tags()[1].layout ~= first_layout)
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Test most properties for each layouts
|
|
|
|
local common_steps = {
|
|
|
|
function()
|
|
|
|
assert(#t:clients() == 5)
|
|
|
|
|
|
|
|
t.master_count = 2
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.master_count = 0
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.master_count = 6 --more than #client.get(1)
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.master_count = 1
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.column_count = 2
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.column_count = 6 --more than #client.get(1)
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.column_count = 1
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
2016-12-20 02:49:04 +01:00
|
|
|
t.master_fill_policy = t.master_fill_policy == "master_width_factor" and
|
2016-12-27 21:39:08 +01:00
|
|
|
"expand" or "master_width_factor"
|
2016-04-09 08:57:56 +02:00
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.master_width_factor = 0.75
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.master_width_factor = 0
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.master_width_factor = 1
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.master_width_factor = 0.5
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
t.gap = t.gap == 0 and 5 or 0
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
|
|
|
local first = false
|
|
|
|
for _ in ipairs(awful.layout.layouts) do
|
|
|
|
if not first then
|
|
|
|
first = true
|
|
|
|
else
|
2017-03-08 21:18:33 +01:00
|
|
|
gtable.merge(steps, {next_layout})
|
2016-04-09 08:57:56 +02:00
|
|
|
end
|
|
|
|
|
2017-03-08 21:18:33 +01:00
|
|
|
gtable.merge(steps, common_steps)
|
2016-04-09 08:57:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
require("_runner").run_steps(steps)
|
2016-12-31 14:05:51 +01:00
|
|
|
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|