From ffff4b159f468e171d875424afccc47b5df4d36f Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 14 Nov 2010 21:43:31 +0100 Subject: [PATCH] add testcase for focus problem when toggling floating/tiling mode Test 3 does not yet pass. --- testcases/t/35-floating-focus.t | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 testcases/t/35-floating-focus.t diff --git a/testcases/t/35-floating-focus.t b/testcases/t/35-floating-focus.t new file mode 100644 index 00000000..7efe2472 --- /dev/null +++ b/testcases/t/35-floating-focus.t @@ -0,0 +1,23 @@ +#!perl +# vim:ts=4:sw=4:expandtab + +use i3test tests => 3; +use Time::HiRes qw(sleep); + +my $i3 = i3("/tmp/nestedcons"); + +my $tmp = get_unused_workspace(); +$i3->command("workspace $tmp")->recv; + +$i3->command("open")->recv; +$i3->command("open")->recv; + +my @content = @{get_ws_content($tmp)}; +cmp_ok(@content, '==', 2, 'two containers opened'); +cmp_ok($content[1]->{focused}, '==', 1, 'Second container focused'); + +$i3->command("mode floating")->recv; +$i3->command("mode tiling")->recv; + +@content = @{get_ws_content($tmp)}; +cmp_ok($content[1]->{focused}, '==', 1, 'Second container still focused after mode toggle'); -- 2.39.5