From aaca2346d8a73b3ae7556e05c964c72c2cfee10d Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 5 Aug 2009 21:54:24 +0200 Subject: [PATCH] Add testcase for checking if the focus stack is correct when mapping/unmapping floating clients --- testcases/t/04-floating.t | 4 +++ testcases/t/08-focus-stack.t | 64 ++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 testcases/t/08-focus-stack.t diff --git a/testcases/t/04-floating.t b/testcases/t/04-floating.t index e20a8e72..d910d974 100644 --- a/testcases/t/04-floating.t +++ b/testcases/t/04-floating.t @@ -40,6 +40,8 @@ ok($absolute->{height} >= 50, "i3 raised the height to 50"); ok($absolute->{x} != 0 && $absolute->{y} != 0, "i3 did not map it to (0x0)"); +$window->unmap; + $original_rect = X11::XCB::Rect->new(x => 1, y => 1, width => 80, height => 90); $window = X11::XCB::Window->new( @@ -63,4 +65,6 @@ ok($absolute->{height} == 90, "i3 let the height at 90"); ok($top->{x} == 1 && $top->{y} == 1, "i3 mapped it to (1,1)"); +$window->unmap; + diag( "Testing i3, Perl $], $^X" ); diff --git a/testcases/t/08-focus-stack.t b/testcases/t/08-focus-stack.t new file mode 100644 index 00000000..b187d9eb --- /dev/null +++ b/testcases/t/08-focus-stack.t @@ -0,0 +1,64 @@ +#!perl +# vim:ts=4:sw=4:expandtab +# Checks if the focus is correctly restored, when creating a floating client +# over an unfocused tiling client and destroying the floating one again. + +use Test::More tests => 5; +use Test::Deep; +use X11::XCB qw(:all); +use Data::Dumper; +use Time::HiRes qw(sleep); +use FindBin; +use lib "$FindBin::Bin/lib"; +use i3test; + +BEGIN { + use_ok('IO::Socket::UNIX') or BAIL_OUT('Cannot load IO::Socket::UNIX'); + use_ok('X11::XCB::Window') or BAIL_OUT('Could not load X11::XCB::Window'); +} + +X11::XCB::Connection->connect(':0'); + +my $sock = IO::Socket::UNIX->new(Peer => '/tmp/i3-ipc.sock'); +isa_ok($sock, 'IO::Socket::UNIX'); + +# Switch to the nineth workspace +$sock->write(i3test::format_ipc_command("9")); + +sleep(0.25); + + +my $tiled_left = i3test::open_standard_window; +my $tiled_right = i3test::open_standard_window; + +sleep(0.25); + +$sock->write(i3test::format_ipc_command("ml")); + +# Get input focus before creating the floating window +my $focus = X11::XCB::Connection->input_focus; + +# Create a floating window which is smaller than the minimum enforced size of i3 +my $original_rect = X11::XCB::Rect->new(x => 1, y => 1, width => 30, height => 30); + +my $window = X11::XCB::Window->new( + class => WINDOW_CLASS_INPUT_OUTPUT, + rect => $original_rect, + background_color => 12632256, + type => 'utility', +); + +isa_ok($window, 'X11::XCB::Window'); + +$window->create; +$window->map; + +sleep(0.25); + +$window->unmap; + +sleep(0.25); + +is(X11::XCB::Connection->input_focus, $focus, 'Focus correctly restored'); + +diag( "Testing i3, Perl $], $^X" ); -- 2.39.5