tests: lib/i3test: Remove open_standard_window, introduce open_window

open_window has a better API than open_standard_window. It uses named
parameters and supplies default values for everything you don’t specify. This
way, you can use every feature which X11::XCB::Window supports.
This commit is contained in:
Michael Stapelberg
2011-09-24 15:11:37 +01:00
parent c3eb9f6c45
commit de5286da59
38 changed files with 207 additions and 386 deletions

View File

@ -7,28 +7,23 @@ use i3test;
my $x = X11::XCB::Connection->new;
my $i3 = i3(get_socket_path());
fresh_workspace;
cmd 'split h';
my $tiled_left = open_standard_window($x);
my $tiled_right = open_standard_window($x);
sync_with_i3($x);
my $tiled_left = open_window($x);
my $tiled_right = open_window($x);
# Get input focus before creating the floating window
my $focus = $x->input_focus;
# Create a floating window which is smaller than the minimum enforced size of i3
my $window = open_standard_window($x, undef, 1);
sync_with_i3($x);
my $window = open_floating_window($x);
is($x->input_focus, $window->id, 'floating window focused');
$window->unmap;
# TODO: wait for unmap
sync_with_i3($x);
wait_for_unmap($x);
is($x->input_focus, $focus, 'Focus correctly restored');