]> git.sur5r.net Git - i3/i3/commitdiff
testcases: drop open_floating_window()s $x parameter, use global
authorMaik Fischer <maikf@qu.cx>
Tue, 22 Nov 2011 00:00:54 +0000 (01:00 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 23 Nov 2011 00:02:47 +0000 (00:02 +0000)
testcases/lib/i3test.pm
testcases/t/104-focus-stack.t
testcases/t/112-floating-resize.t
testcases/t/114-client-leader.t
testcases/t/124-move.t
testcases/t/135-floating-focus.t
testcases/t/136-floating-ws-empty.t
testcases/t/137-floating-unmap.t
testcases/t/138-floating-attach.t
testcases/t/146-floating-reinsert.t
testcases/t/174-border-config.t

index 1ddaa52b0d5e6e832d83a23508f676f0fab51a7f..d3d8ad04576fc4456f09d4d0a4296e29a2f144fd 100644 (file)
@@ -181,7 +181,7 @@ sub open_window {
 # Thin wrapper around open_window which sets window_type to
 # _NET_WM_WINDOW_TYPE_UTILITY to make the window floating.
 sub open_floating_window {
-    my ($x, $args) = @_;
+    my ($args) = @_;
     my %args = ($args ? %$args : ());
 
     $args{window_type} = $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY');
index f72cd75faab9d3148ececa6bba3ff1295676349b..3b3fe74d79f5c02a844aa053e005a2a275e327f1 100644 (file)
@@ -15,7 +15,7 @@ my $tiled_right = open_window;
 my $focus = $x->input_focus;
 
 # Create a floating window which is smaller than the minimum enforced size of i3
-my $window = open_floating_window($x);
+my $window = open_floating_window;
 
 is($x->input_focus, $window->id, 'floating window focused');
 
index a428df4f8b92a58317b653fc16e013660d85ad9d..fe9803e6c1ca7de641805a3faef861a846f60bb8 100644 (file)
@@ -9,7 +9,7 @@ fresh_workspace;
 # Create a floating window and see if resizing works
 #####################################################################
 
-my $window = open_floating_window($x);
+my $window = open_floating_window;
 
 # See if configurerequests cause window movements (they should not)
 my ($a, $t) = $window->rect;
index 3b0bddc0781a5b77e602011867ed711ddfb3d25b..497bad9e1aa73195bc8eb6d434650032a842fe83 100644 (file)
@@ -18,7 +18,7 @@ my $right = open_window({ name => 'Right' });
 
 my ($abs, $rgeom) = $right->rect;
 
-my $child = open_floating_window($x, {
+my $child = open_floating_window({
         dont_map => 1,
         name => 'Child window',
     });
@@ -31,7 +31,7 @@ my $cgeom;
 ($abs, $cgeom) = $child->rect;
 cmp_ok($cgeom->x, '>=', $rgeom->x, 'Child X >= right container X');
 
-my $child2 = open_floating_window($x, {
+my $child2 = open_floating_window({
         dont_map => 1,
         name => 'Child window 2',
     });
index 9d7a235faccdcabfa0c2c4dfbd56cdd5bfb37337..a078a9e842f5f4454dc71ecd7ac8864c611e515c 100644 (file)
@@ -136,7 +136,7 @@ is(@{$content}, 1, 'only one nodes on this workspace');
 ######################################################################
 
 $tmp = fresh_workspace;
-my $floatwin = open_floating_window($x);
+my $floatwin = open_floating_window;
 my ($absolute_before, $top_before) = $floatwin->rect;
 
 cmd 'move left';
index 37d141b1783a5266eae9d6fab6a66117455c7a9d..f5182e1b0f2c6a31a7cac6dd9f0ed895e18e2dbf 100644 (file)
@@ -176,9 +176,9 @@ is($x->input_focus, $second->id, 'second (floating) container focused');
 
 $tmp = fresh_workspace;
 
-$first = open_floating_window($x, { background_color => '#ff0000' });# window 10
-$second = open_floating_window($x, { background_color => '#00ff00' }); # window 11
-$third = open_floating_window($x, { background_color => '#0000ff' }); # window 12
+$first = open_floating_window({ background_color => '#ff0000' });# window 10
+$second = open_floating_window({ background_color => '#00ff00' }); # window 11
+$third = open_floating_window({ background_color => '#0000ff' }); # window 12
 
 sync_with_i3($x);
 
index 1666884e5e1bafb221ce2f4a54eb2fac0a21e9b0..f17b0ec146fa465b9ffad2c5de81a867b768edf6 100644 (file)
@@ -15,7 +15,7 @@ my $tmp = fresh_workspace;
 ok(workspace_exists($tmp), "workspace $tmp exists");
 
 # Create a floating window which is smaller than the minimum enforced size of i3
-my $window = open_floating_window($x);
+my $window = open_floating_window;
 ok($window->mapped, 'Window is mapped');
 
 # switch to a different workspace, see if the window is still mapped?
index 29762594e51922059fd1cf14fd9cfd28b4f1d4c3..0d126feab0d267cae5200887de8aec04d2b25e42 100644 (file)
@@ -14,7 +14,7 @@ my $tmp = fresh_workspace;
 #############################################################################
 
 # Create a floating window which is smaller than the minimum enforced size of i3
-my $window = open_floating_window($x);
+my $window = open_floating_window;
 ok($window->mapped, 'Window is mapped');
 
 # switch to a different workspace, see if the window is still mapped?
index 71f10ef54c25ed717a2578deffd8ba2ee0cd81c2..db86e1ca71e6e9c2e044ad8c94508697f2628cff 100644 (file)
@@ -14,7 +14,7 @@ my $tmp = fresh_workspace;
 #############################################################################
 
 # Create a floating window
-my $window = open_floating_window($x);
+my $window = open_floating_window;
 ok($window->mapped, 'Window is mapped');
 
 my $ws = get_ws($tmp);
@@ -47,7 +47,7 @@ is(@{$ws->{floating_nodes}}, 0, 'no floating nodes so far');
 is(@{$ws->{nodes}}, 1, 'one tiling node (stacked con)');
 
 # Create a floating window
-$window = open_floating_window($x);
+$window = open_floating_window;
 ok($window->mapped, 'Window is mapped');
 
 $ws = get_ws($tmp);
index c3a4512a7349229bd86162e6ee551aec67b02ed4..ca209e1cadc1a799148aa00b4c4b9e8f0050896a 100644 (file)
@@ -18,7 +18,7 @@ my ($nodes, $focus) = get_ws_content($tmp);
 #############################################################################
 
 # Create a floating window
-my $window = open_floating_window($x);
+my $window = open_floating_window;
 ok($window->mapped, 'Window is mapped');
 
 ($nodes, $focus) = get_ws_content($tmp);
index 6196b6846c06c0e4a42bd28dcb7dc5525e3de00b..009f5094ef437597a429ba1333314751a3b70e1a 100644 (file)
@@ -73,7 +73,7 @@ $tmp = fresh_workspace;
 
 ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
 
-$first = open_floating_window($x);
+$first = open_floating_window;
 
 my $wscontent = get_ws($tmp);
 my @floating = @{$wscontent->{floating_nodes}};
@@ -101,7 +101,7 @@ $tmp = fresh_workspace;
 
 ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
 
-$first = open_floating_window($x);
+$first = open_floating_window;
 
 $wscontent = get_ws($tmp);
 @floating = @{$wscontent->{floating_nodes}};