2016-04-17 09:28:44 +02:00
|
|
|
--- Tests maximize and fullscreen
|
|
|
|
|
|
|
|
local runner = require("_runner")
|
|
|
|
local awful = require("awful")
|
2017-02-26 20:24:27 +01:00
|
|
|
local test_client = require("_client")
|
|
|
|
local lgi = require("lgi")
|
2017-05-26 12:40:53 +02:00
|
|
|
local gears = require("gears")
|
2016-04-17 09:28:44 +02:00
|
|
|
|
2017-05-14 10:10:03 +02:00
|
|
|
local function geo_to_str(g)
|
|
|
|
return "pos=" .. g.x .. "," .. g.y ..
|
|
|
|
";size=" .. g.width .. "x" .. g.height
|
|
|
|
end
|
|
|
|
|
2016-04-17 09:28:44 +02:00
|
|
|
local original_geo = nil
|
|
|
|
|
2017-05-26 12:40:53 +02:00
|
|
|
local steps = {}
|
2017-04-23 10:50:45 +02:00
|
|
|
|
2017-05-26 12:40:53 +02:00
|
|
|
for _, gravity in ipairs { "NORTH_WEST", "NORTH", "NORTH_EAST", "WEST",
|
|
|
|
"CENTER", "EAST", "SOUTH_WEST", "SOUTH", "SOUTH_EAST", "STATIC" } do
|
|
|
|
gears.table.merge(steps, {
|
2016-04-17 09:28:44 +02:00
|
|
|
function(count)
|
|
|
|
if count == 1 then
|
2017-05-26 12:40:53 +02:00
|
|
|
print("testing gravity " .. gravity)
|
|
|
|
test_client(nil,nil,nil,nil,nil,{gravity=lgi.Gdk.Gravity[gravity]})
|
2016-04-17 09:28:44 +02:00
|
|
|
else
|
|
|
|
local c = client.get()[1]
|
|
|
|
if c then
|
|
|
|
original_geo = c:geometry()
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
|
|
|
-- maximize horizontally
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
assert(not c.maximized_horizontal)
|
|
|
|
assert(not c.maximized_vertical )
|
2017-01-24 10:47:21 +01:00
|
|
|
assert(not c.maximized )
|
2016-04-17 09:28:44 +02:00
|
|
|
assert(not c.fullscreen )
|
2017-10-25 15:36:00 +02:00
|
|
|
assert(not c.immobilized_horizontal)
|
|
|
|
assert(not c.immobilized_vertical)
|
2016-04-17 09:28:44 +02:00
|
|
|
|
|
|
|
c.maximized_horizontal = true
|
2017-10-25 15:36:00 +02:00
|
|
|
assert(c.immobilized_horizontal)
|
|
|
|
assert(not c.immobilized_vertical)
|
2016-04-17 09:28:44 +02:00
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
2016-04-13 09:22:29 +02:00
|
|
|
--local new_geo = c:geometry()
|
|
|
|
--local sgeo = c.screen.workarea
|
2016-04-17 09:28:44 +02:00
|
|
|
|
|
|
|
--assert(new_geo.x-c.border_width==sgeo.x) --FIXME c:geometry({x=1}).x ~= 1
|
|
|
|
|
|
|
|
--assert(new_geo.width+2*c.border_width==sgeo.width) --FIXME off by 4px
|
|
|
|
|
|
|
|
c.maximized_horizontal = false
|
2017-10-25 15:36:00 +02:00
|
|
|
assert(not c.immobilized_horizontal)
|
2016-04-17 09:28:44 +02:00
|
|
|
return true
|
|
|
|
end,
|
2016-07-27 09:50:11 +02:00
|
|
|
|
|
|
|
-- Test restoring client.border_width
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
2016-07-27 13:43:28 +02:00
|
|
|
|
|
|
|
-- pick an arbitrary border_width distinct from the default one
|
|
|
|
local test_width = c.border_width + 1
|
2016-07-27 09:50:11 +02:00
|
|
|
|
|
|
|
c.border_width = test_width
|
|
|
|
|
|
|
|
c.fullscreen = true
|
2017-05-26 12:32:04 +02:00
|
|
|
|
|
|
|
-- Test that the client covers the full screen
|
|
|
|
assert(geo_to_str(c:geometry()) == geo_to_str(c.screen.geometry),
|
|
|
|
geo_to_str(c:geometry()) .. " == " .. geo_to_str(c.screen.geometry))
|
|
|
|
|
2016-07-27 09:50:11 +02:00
|
|
|
c.fullscreen = false
|
|
|
|
|
|
|
|
assert(c.border_width == test_width)
|
|
|
|
|
2017-05-26 12:26:36 +02:00
|
|
|
-- Restore old border width
|
|
|
|
c.border_width = test_width - 1
|
|
|
|
|
2016-07-27 09:50:11 +02:00
|
|
|
return true
|
|
|
|
end,
|
|
|
|
|
2016-04-17 09:28:44 +02:00
|
|
|
-- Test restoring a geometry
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
local new_geo = c:geometry()
|
|
|
|
|
2017-05-14 10:10:03 +02:00
|
|
|
assert(geo_to_str(original_geo) == geo_to_str(new_geo),
|
|
|
|
geo_to_str(original_geo) .. " == " .. geo_to_str(new_geo))
|
2016-04-17 09:28:44 +02:00
|
|
|
|
|
|
|
c.fullscreen = true
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
local new_geo = c:geometry()
|
|
|
|
local sgeo = c.screen.geometry
|
|
|
|
local bw = c.border_width
|
|
|
|
|
|
|
|
assert(c.fullscreen)
|
2017-10-25 15:36:00 +02:00
|
|
|
assert(c.immobilized_horizontal)
|
|
|
|
assert(c.immobilized_vertical)
|
2017-01-25 10:51:10 +01:00
|
|
|
|
|
|
|
assert(new_geo.x==sgeo.x)
|
|
|
|
assert(new_geo.y==sgeo.y)
|
|
|
|
assert(new_geo.x+new_geo.width+2*bw==sgeo.x+sgeo.width)
|
|
|
|
assert(new_geo.y+new_geo.height+2*bw==sgeo.y+sgeo.height)
|
2016-04-17 09:28:44 +02:00
|
|
|
|
|
|
|
c.fullscreen = false
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
local new_geo = c:geometry()
|
|
|
|
|
2017-05-14 10:10:03 +02:00
|
|
|
assert(geo_to_str(original_geo) == geo_to_str(new_geo),
|
|
|
|
geo_to_str(original_geo) .. " == " .. geo_to_str(new_geo))
|
2016-04-17 09:28:44 +02:00
|
|
|
|
2017-01-24 10:47:21 +01:00
|
|
|
c.floating = true
|
|
|
|
|
|
|
|
awful.placement.centered(c)
|
|
|
|
original_geo = c:geometry()
|
|
|
|
|
|
|
|
c.maximized = true
|
|
|
|
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
local new_geo = c:geometry()
|
|
|
|
local sgeo = c.screen.workarea
|
|
|
|
|
|
|
|
assert(c.maximized)
|
|
|
|
assert(c.floating)
|
|
|
|
assert(new_geo.x==sgeo.x)
|
|
|
|
assert(new_geo.y==sgeo.y)
|
2017-10-25 15:36:00 +02:00
|
|
|
assert(c.immobilized_horizontal)
|
|
|
|
assert(c.immobilized_vertical)
|
2017-01-24 10:47:21 +01:00
|
|
|
|
|
|
|
c.maximized = false
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
assert(not c.maximized)
|
|
|
|
assert(c.floating)
|
|
|
|
|
|
|
|
local new_geo = c:geometry()
|
|
|
|
|
2017-05-14 10:10:03 +02:00
|
|
|
assert(geo_to_str(original_geo) == geo_to_str(new_geo),
|
|
|
|
geo_to_str(original_geo) .. " == " .. geo_to_str(new_geo))
|
2017-01-24 10:47:21 +01:00
|
|
|
|
2017-04-23 10:50:45 +02:00
|
|
|
c:kill()
|
|
|
|
|
|
|
|
return true
|
2017-05-26 12:40:53 +02:00
|
|
|
end
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2019-10-17 04:24:32 +02:00
|
|
|
-- Partial maximization tests, which depend on wmctrl as a portable way to generate external requests.
|
|
|
|
if os.getenv('HAS_WMCTRL') == '1' then
|
|
|
|
print("Added tests for partial maximization.")
|
|
|
|
gears.table.merge(steps, {
|
|
|
|
function()
|
|
|
|
if #client.get() > 0 then return end
|
|
|
|
|
|
|
|
test_client(nil,nil,nil,nil,nil,{})
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
-- Makes the window partially maximized
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
if not c then return end
|
|
|
|
|
|
|
|
c.maximized_vertical = true
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
-- Maximizes the window externally
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
assert(c.maximized_vertical)
|
|
|
|
awful.spawn.with_shell(
|
|
|
|
"wmctrl -i -r " .. tostring(c.window) .. " -b add,maximized_vert,maximized_horz")
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
-- Partially unmaximizes the window externally
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
if not c.maximized then return end
|
|
|
|
awful.spawn.with_shell(
|
|
|
|
"wmctrl -i -r " .. tostring(c.window) .. " -b remove,maximized_vert")
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
-- Checks if the window is properly partially maximized, then fully maximizes it back externally
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
if c.maximized then return end
|
|
|
|
assert(c.maximized_horizontal)
|
|
|
|
assert(not c.maximized_vertical)
|
|
|
|
|
|
|
|
awful.spawn.with_shell(
|
|
|
|
"wmctrl -i -r " .. tostring(c.window) .. " -b add,maximized_vert")
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
-- Unmaximizes the window externally
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
if not c.maximized then return end
|
|
|
|
awful.spawn.with_shell(
|
|
|
|
"wmctrl -i -r " .. tostring(c.window) .. " -b toggle,maximized_vert,maximized_horz", false)
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
-- Checks that partial maximization is restored, then kills the client.
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
if c.maximized then return end
|
|
|
|
assert(c.maximized_horizontal)
|
|
|
|
assert(not c.maximized_vertical)
|
|
|
|
|
|
|
|
c:kill()
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
})
|
|
|
|
else
|
|
|
|
print("Ignored partial maximization tests because wmctrl is not found.")
|
|
|
|
end
|
|
|
|
|
2017-05-26 12:40:53 +02:00
|
|
|
local counter = 0
|
|
|
|
|
|
|
|
local function geometry_handler(c, context, hints)
|
|
|
|
hints = hints or {}
|
|
|
|
assert(type(c) == "client")
|
|
|
|
assert(type(context) == "string")
|
|
|
|
assert(type(hints.toggle) == "boolean")
|
|
|
|
assert(type(hints.status) == "boolean")
|
|
|
|
counter = counter + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
gears.table.merge(steps, {
|
2017-04-23 10:50:45 +02:00
|
|
|
-- Now, start some clients maximized
|
|
|
|
function()
|
|
|
|
if #client.get() > 0 then return end
|
|
|
|
|
|
|
|
test_client(nil,nil,nil,nil,nil,{maximize_before=true})
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
if not c then return end
|
|
|
|
|
|
|
|
assert(not c.maximized_horizontal)
|
|
|
|
assert(not c.maximized_vertical)
|
|
|
|
assert(c.maximized)
|
2017-10-25 15:36:00 +02:00
|
|
|
assert(c.immobilized_horizontal)
|
|
|
|
assert(c.immobilized_vertical)
|
2017-04-23 10:50:45 +02:00
|
|
|
|
|
|
|
c:kill()
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
if #client.get() > 0 then return end
|
|
|
|
|
|
|
|
test_client(nil,nil,nil,nil,nil,{maximize_after=true})
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
if not c then return end
|
|
|
|
|
|
|
|
assert(not c.maximized_horizontal)
|
|
|
|
assert(not c.maximized_vertical)
|
|
|
|
|
|
|
|
-- It might happen in the second try
|
|
|
|
if not c.maximized then return end
|
|
|
|
|
2017-10-25 15:36:00 +02:00
|
|
|
assert(c.immobilized_horizontal)
|
|
|
|
assert(c.immobilized_vertical)
|
|
|
|
|
2017-04-23 10:50:45 +02:00
|
|
|
c:kill()
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
2019-10-16 01:14:31 +02:00
|
|
|
-- Maximize then unmaximize. The window state should be restored.
|
|
|
|
function()
|
|
|
|
if #client.get() > 0 then return end
|
|
|
|
|
|
|
|
test_client(nil,nil,nil,nil,nil,{maximize_before=true,unmaximize_after=true})
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
if not c then return end
|
|
|
|
|
|
|
|
assert(not c.maximized_horizontal)
|
|
|
|
assert(not c.maximized_vertical)
|
|
|
|
-- May need to retry
|
|
|
|
if c.maximized then return end
|
|
|
|
assert(not c.immobilized_horizontal)
|
|
|
|
assert(not c.immobilized_vertical)
|
|
|
|
|
|
|
|
c:kill()
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
2017-04-23 10:50:45 +02:00
|
|
|
function()
|
|
|
|
if #client.get() > 0 then return end
|
|
|
|
|
2017-05-14 22:46:33 +02:00
|
|
|
-- Test if resizing requests work
|
|
|
|
test_client(nil,nil,nil,nil,nil,{resize={width=400, height=400}})
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
if #client.get() ~= 1 then return end
|
|
|
|
|
|
|
|
local c = client.get()[1]
|
|
|
|
local _, size = c:titlebar_top()
|
|
|
|
|
|
|
|
if c.width ~= 400 or c.height ~= 400+size then return end
|
|
|
|
|
|
|
|
c:kill()
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
if #client.get() > 0 then return end
|
|
|
|
|
|
|
|
-- Remove the default handler and replace it with a testing one.
|
|
|
|
-- **WARNING**: add tests **BEFORE** this function if you want them
|
2017-04-23 10:50:45 +02:00
|
|
|
-- to be relevant.
|
2019-11-18 00:46:22 +01:00
|
|
|
client.disconnect_signal("request::geometry", awful.permissions.geometry)
|
|
|
|
client.disconnect_signal("request::geometry", awful.permissions.merge_maximization)
|
2017-04-23 10:50:45 +02:00
|
|
|
client.connect_signal("request::geometry", geometry_handler)
|
|
|
|
|
|
|
|
test_client(nil,nil,nil,nil,nil,{maximize_after=true})
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
function()
|
|
|
|
local c = client.get()[1]
|
|
|
|
|
|
|
|
if not c or counter ~= 2 then return end
|
|
|
|
|
2016-04-17 09:28:44 +02:00
|
|
|
return true
|
|
|
|
end
|
2017-05-26 12:40:53 +02:00
|
|
|
})
|
2016-04-17 09:28:44 +02:00
|
|
|
|
|
|
|
runner.run_steps(steps)
|
|
|
|
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|