2010-03-11 15:58:39 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
2012-09-10 14:09:01 +02:00
|
|
|
#
|
|
|
|
# Please read the following documents before working on tests:
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/testsuite.html
|
2012-09-10 14:09:01 +02:00
|
|
|
# (or docs/testsuite)
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/lib-i3test.html
|
2012-09-10 14:09:01 +02:00
|
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/ipc.html
|
2012-09-10 14:09:01 +02:00
|
|
|
# (or docs/ipc)
|
|
|
|
#
|
|
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
|
|
# (unless you are already familiar with Perl)
|
2010-03-11 15:58:39 +01:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2010-03-11 15:58:39 +01:00
|
|
|
|
2014-12-20 05:43:47 +01:00
|
|
|
my $old_ws = get_ws(focused_ws());
|
2012-11-03 12:17:33 +01:00
|
|
|
|
|
|
|
# We are switching to an empty workpspace from an empty workspace, so we expect
|
|
|
|
# to receive "init", "focus", and "empty".
|
2017-09-24 15:40:30 +02:00
|
|
|
my @events = events_for(
|
|
|
|
sub { cmd 'workspace 2' },
|
|
|
|
'workspace');
|
2014-12-20 05:43:47 +01:00
|
|
|
|
|
|
|
my $current_ws = get_ws(focused_ws());
|
|
|
|
|
2017-09-24 15:40:30 +02:00
|
|
|
is(scalar @events, 3, 'Received 3 events');
|
|
|
|
is($events[0]->{change}, 'init', 'First event has change = init');
|
|
|
|
is($events[0]->{current}->{id}, $current_ws->{id}, 'the "current" property contains the initted workspace con');
|
2014-12-20 05:43:47 +01:00
|
|
|
|
2017-09-24 15:40:30 +02:00
|
|
|
is($events[1]->{change}, 'focus', 'Second event has change = focus');
|
|
|
|
is($events[1]->{current}->{id}, $current_ws->{id}, 'the "current" property should contain the focused workspace con');
|
|
|
|
is($events[1]->{old}->{id}, $old_ws->{id}, 'the "old" property should contain the workspace con that was focused last');
|
2014-12-20 05:43:47 +01:00
|
|
|
|
2017-09-24 15:40:30 +02:00
|
|
|
is($events[2]->{change}, 'empty', 'Third event has change = empty');
|
|
|
|
is($events[2]->{current}->{id}, $old_ws->{id}, 'the "current" property should contain the emptied workspace con');
|
2010-06-02 23:53:22 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
done_testing;
|