From: Michael Stapelberg Date: Sun, 14 Nov 2010 20:43:31 +0000 (+0100) Subject: add testcase for focus problem when toggling floating/tiling mode X-Git-Tag: tree-pr1~98 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ffff4b159f468e171d875424afccc47b5df4d36f;p=i3%2Fi3 add testcase for focus problem when toggling floating/tiling mode Test 3 does not yet pass. --- 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');