2016-04-23 16:53:11 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2015-07-10 16:03:30 -07:00
|
|
|
local Screen = require('test.functional.ui.screen')
|
|
|
|
|
|
|
|
local clear = helpers.clear
|
|
|
|
local command = helpers.command
|
|
|
|
local feed = helpers.feed
|
|
|
|
|
|
|
|
describe("update_menu notification", function()
|
|
|
|
|
|
|
|
local screen
|
|
|
|
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
screen = Screen.new()
|
|
|
|
screen:attach()
|
|
|
|
end)
|
|
|
|
|
2015-11-17 15:31:22 -07:00
|
|
|
local function expect_sent(expected)
|
2017-06-26 05:49:15 -07:00
|
|
|
screen:expect{condition=function()
|
2015-07-10 16:03:30 -07:00
|
|
|
if screen.update_menu ~= expected then
|
|
|
|
if expected then
|
2017-06-26 05:49:15 -07:00
|
|
|
error('update_menu was expected but not sent')
|
2015-07-10 16:03:30 -07:00
|
|
|
else
|
2017-06-26 05:49:15 -07:00
|
|
|
error('update_menu was sent unexpectedly')
|
2015-07-10 16:03:30 -07:00
|
|
|
end
|
|
|
|
end
|
2017-06-26 05:49:15 -07:00
|
|
|
end, unchanged=(not expected)}
|
2015-07-10 16:03:30 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
it("should be sent when adding a menu", function()
|
|
|
|
command('menu Test.Test :')
|
|
|
|
expect_sent(true)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("should be sent when deleting a menu", function()
|
|
|
|
command('menu Test.Test :')
|
|
|
|
screen.update_menu = false
|
|
|
|
|
|
|
|
command('unmenu Test.Test')
|
|
|
|
expect_sent(true)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("should not be sent unnecessarily", function()
|
|
|
|
feed('i12345<ESC>:redraw<CR>')
|
|
|
|
expect_sent(false)
|
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|