awesome/tests/test-miss-handlers.lua

72 lines
1.5 KiB
Lua
Raw Normal View History

-- Test set_{,new}index_miss_handler
2016-04-25 03:04:27 +02:00
local mouse = mouse
local class = tag
local obj = class({})
2016-03-30 09:20:56 +02:00
local handler = require("gears.object.properties")
2016-05-12 07:18:12 +02:00
local wibox = require("wibox")
awesome.connect_signal("debug::index::miss", error)
awesome.connect_signal("debug::newindex::miss", error)
class.set_index_miss_handler(function(o, k)
assert(o == obj)
assert(k == "key")
return 42
end)
assert(obj.key == 42)
local called = false
class.set_newindex_miss_handler(function(o, k, v)
assert(o == obj)
assert(k == "key")
assert(v == 42)
called = true
end)
obj.key = 42
assert(called)
2016-03-30 09:20:56 +02:00
handler(class, {auto_emit=true})
assert(not obj.key)
obj.key = 1337
assert(obj.key == 1337)
2016-04-25 03:04:27 +02:00
-- The the custom mouse handler
mouse.foo = "bar"
assert(mouse.foo == "bar")
2016-05-12 07:18:12 +02:00
local w = wibox()
w.foo = "bar"
assert(w.foo == "bar")
-- Test if read-only properties really are read-only
screen[1].clients = 42
assert(screen[1].clients ~= 42)
-- Test the wibox declarative widget system (drawin proxy)
local w2 = wibox {
visible = true,
wisth = 100,
height = 100
}
w2:setup{
{
text = "Awesomeness!",
id = "main_textbox",
widget = wibox.widget.textbox,
},
id = "main_background",
widget = wibox.container.background
}
assert(w2.main_background)
assert(w2:get_children_by_id("main_background")[1])
assert(w2:get_children_by_id("main_textbox")[1])
assert(w2.main_background.main_textbox)
assert(w2.main_background == w2:get_children_by_id("main_background")[1])
require("_runner").run_steps({ function() return true end })