82 lines
2.4 KiB
Lua
82 lines
2.4 KiB
Lua
---------------------------------------------------------------------------
|
|
-- @author Uli Schlachter
|
|
-- @copyright 2014 Uli Schlachter
|
|
---------------------------------------------------------------------------
|
|
|
|
local fixed = require("wibox.layout.fixed")
|
|
local utils = require("wibox.test_utils")
|
|
local p = require("wibox.widget.base").place_widget_at
|
|
|
|
describe("wibox.layout.fixed", function()
|
|
local layout
|
|
before_each(function()
|
|
layout = fixed.vertical()
|
|
end)
|
|
|
|
it("empty layout fit", function()
|
|
assert.widget_fit(layout, { 10, 10 }, { 0, 0 })
|
|
end)
|
|
|
|
it("empty layout layout", function()
|
|
assert.widget_layout(layout, { 0, 0 }, {})
|
|
end)
|
|
|
|
describe("with widgets", function()
|
|
local first, second, third
|
|
|
|
before_each(function()
|
|
first = utils.widget_stub(10, 10)
|
|
second = utils.widget_stub(15, 15)
|
|
third = utils.widget_stub(10, 10)
|
|
|
|
layout:add(first)
|
|
layout:add(second)
|
|
layout:add(third)
|
|
end)
|
|
|
|
describe("with enough space", function()
|
|
it("fit", function()
|
|
assert.widget_fit(layout, { 100, 100 }, { 15, 35 })
|
|
end)
|
|
|
|
it("layout", function()
|
|
assert.widget_layout(layout, { 100, 100 }, {
|
|
p(first, 0, 0, 100, 10),
|
|
p(second, 0, 10, 100, 15),
|
|
p(third, 0, 25, 100, 10),
|
|
})
|
|
end)
|
|
end)
|
|
|
|
describe("without enough height", function()
|
|
it("fit", function()
|
|
assert.widget_fit(layout, { 5, 100 }, { 5, 35 })
|
|
end)
|
|
|
|
it("layout", function()
|
|
assert.widget_layout(layout, { 5, 100 }, {
|
|
p(first, 0, 0, 5, 10),
|
|
p(second, 0, 10, 5, 15),
|
|
p(third, 0, 25, 5, 10),
|
|
})
|
|
end)
|
|
end)
|
|
|
|
describe("without enough width", function()
|
|
it("fit", function()
|
|
assert.widget_fit(layout, { 100, 20 }, { 15, 20 })
|
|
end)
|
|
|
|
it("layout", function()
|
|
assert.widget_layout(layout, { 100, 20 }, {
|
|
p(first, 0, 0, 100, 10),
|
|
p(second, 0, 10, 100, 10),
|
|
p(third, 0, 20, 100, 0),
|
|
})
|
|
end)
|
|
end)
|
|
end)
|
|
end)
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|