]> git.sur5r.net Git - i3/i3/commitdiff
Update testcases (and skip some tests for the moment)
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 2 Jun 2010 21:53:22 +0000 (23:53 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 2 Jun 2010 21:53:22 +0000 (23:53 +0200)
testcases/Makefile
testcases/t/05-ipc.t
testcases/t/06-focus.t
testcases/t/07-move.t
testcases/t/08-focus-stack.t
testcases/t/09-stacking.t
testcases/t/12-floating-resize.t
testcases/t/14-client-leader.t
testcases/t/15-ipc-workspaces.t
testcases/t/16-nestedcons.t

index 9741c24c32ab640865ed58130d140d34c6bd053f..462ca39727bb325a9d7ff972e2d1d900e9c2bd87 100644 (file)
@@ -1,5 +1,5 @@
 test:
-       PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(1)" -It/lib t/22*
+       PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(1)" -It/lib t/*.t
 
 all: test
 
index 13ebc4b2dfdfdff750726576e9648767ccb5f75c..62a3a9d44879679fe6f7cab6e508dbc414928623 100644 (file)
@@ -1,7 +1,7 @@
 #!perl
 # vim:ts=4:sw=4:expandtab
 
-use i3test tests => 3;
+use i3test tests => 2;
 use X11::XCB qw(:all);
 use Time::HiRes qw(sleep);
 
@@ -11,15 +11,14 @@ BEGIN {
 
 my $x = X11::XCB::Connection->new;
 
-my $i3 = i3;
+my $i3 = i3("/tmp/nestedcons");
+my $tmp = get_unused_workspace();
+$i3->command("workspace $tmp")->recv;
 
 #####################################################################
 # Ensure IPC works by switching workspaces
 #####################################################################
 
-# Switch to the first workspace to get a clean testing environment
-$i3->command('1')->recv;
-
 # Create a window so we can get a focus different from NULL
 my $window = i3test::open_standard_window($x);
 diag("window->id = " . $window->id);
@@ -30,7 +29,8 @@ my $focus = $x->input_focus;
 diag("old focus = $focus");
 
 # Switch to the nineth workspace
-$i3->command('9')->recv;
+my $otmp = get_unused_workspace();
+$i3->command("workspace $otmp")->recv;
 
 my $new_focus = $x->input_focus;
 isnt($focus, $new_focus, "Focus changed");
index b91f8cc5501440d53eb4401b7cb4944ad5047ba2..5c3de5d8b6e2b56d01b80f1a443e7cb2db6f7fbd 100644 (file)
@@ -1,10 +1,7 @@
 #!perl
 # vim:ts=4:sw=4:expandtab
-# Beware that this test uses workspace 9 to perform some tests (it expects
-# the workspace to be empty).
-# TODO: skip it by default?
 
-use i3test tests => 13;
+use i3test tests => 6;
 use X11::XCB qw(:all);
 use Time::HiRes qw(sleep);
 
@@ -14,17 +11,17 @@ BEGIN {
 
 my $x = X11::XCB::Connection->new;
 
-my $i3 = i3;
-
-# Switch to the nineth workspace
-$i3->command('9')->recv;
+my $i3 = i3("/tmp/nestedcons");
+my $tmp = get_unused_workspace();
+$i3->command("workspace $tmp")->recv;
 
 #####################################################################
 # Create two windows and make sure focus switching works
 #####################################################################
 
 # Change mode of the container to "default" for following tests
-$i3->command('d')->recv;
+$i3->command('layout default')->recv;
+$i3->command('split v')->recv;
 
 my $top = i3test::open_standard_window($x);
 my $mid = i3test::open_standard_window($x);
@@ -49,64 +46,64 @@ sub focus_after {
 $focus = $x->input_focus;
 is($focus, $bottom->id, "Latest window focused");
 
-$focus = focus_after("k");
+$focus = focus_after("prev v");
 is($focus, $mid->id, "Middle window focused");
 
-$focus = focus_after("k");
+$focus = focus_after("prev v");
 is($focus, $top->id, "Top window focused");
 
 #####################################################################
 # Test focus wrapping
 #####################################################################
 
-$focus = focus_after("k");
+$focus = focus_after("prev v");
 is($focus, $bottom->id, "Bottom window focused (wrapping to the top works)");
 
-$focus = focus_after("j");
+$focus = focus_after("next v");
 is($focus, $top->id, "Top window focused (wrapping to the bottom works)");
 
 ###############################################
 # Test focus with empty containers and colspan
 ###############################################
 
-# Switch to the 10. workspace
-$i3->command('10')->recv;
-
-$top = i3test::open_standard_window($x);
-$bottom = i3test::open_standard_window($x);
-sleep 0.25;
-
-$focus = focus_after("mj");
-$focus = focus_after("mh");
-$focus = focus_after("k");
-is($focus, $bottom->id, "Selecting top window without snapping doesn't work");
-
-$focus = focus_after("sl");
-is($focus, $bottom->id, "Bottom window focused");
-
-$focus = focus_after("k");
-is($focus, $top->id, "Top window focused");
-
-# Same thing, but left/right instead of top/bottom
-
-# Switch to the 11. workspace
-$i3->command('11')->recv;
-
-my $left = i3test::open_standard_window($x);
-my $right = i3test::open_standard_window($x);
-sleep 0.25;
-
-$focus = focus_after("ml");
-$focus = focus_after("h");
-$focus = focus_after("mk");
-$focus = focus_after("l");
-is($focus, $left->id, "Selecting right window without snapping doesn't work");
-
-$focus = focus_after("sj");
-is($focus, $left->id, "left window focused");
-
-$focus = focus_after("l");
-is($focus, $right->id, "right window focused");
+#my $otmp = get_unused_workspace();
+#$i3->command("workspace $otmp")->recv;
+#
+#$top = i3test::open_standard_window($x);
+#$bottom = i3test::open_standard_window($x);
+#sleep 0.25;
+#
+#$focus = focus_after("mj");
+#$focus = focus_after("mh");
+#$focus = focus_after("k");
+#is($focus, $bottom->id, "Selecting top window without snapping doesn't work");
+#
+#$focus = focus_after("sl");
+#is($focus, $bottom->id, "Bottom window focused");
+#
+#$focus = focus_after("k");
+#is($focus, $top->id, "Top window focused");
+#
+## Same thing, but left/right instead of top/bottom
+#
+#my $o2tmp = get_unused_workspace();
+#$i3->command("workspace $o2tmp")->recv;
+#
+#my $left = i3test::open_standard_window($x);
+#my $right = i3test::open_standard_window($x);
+#sleep 0.25;
+#
+#$focus = focus_after("ml");
+#$focus = focus_after("h");
+#$focus = focus_after("mk");
+#$focus = focus_after("l");
+#is($focus, $left->id, "Selecting right window without snapping doesn't work");
+#
+#$focus = focus_after("sj");
+#is($focus, $left->id, "left window focused");
+#
+#$focus = focus_after("l");
+#is($focus, $right->id, "right window focused");
 
 
 diag( "Testing i3, Perl $], $^X" );
index c852d0014987e54d4ede1c00976bddea9e9bb014..6e35ebe49ee7c0ba5847b4077bc4bf2b0d81e701 100644 (file)
@@ -12,6 +12,9 @@ BEGIN {
     use_ok('X11::XCB::Connection') or BAIL_OUT('Cannot load X11::XCB::Connection');
 }
 
+SKIP: {
+    skip "Testcase not yet modified for new move concept", 7;
+
 my $x = X11::XCB::Connection->new;
 
 my $i3 = i3;
@@ -76,3 +79,4 @@ for my $cmd (qw(m12 t m13 12 13)) {
     $i3->command($cmd)->recv;
 }
 ok(1, "Still living");
+}
index 9dd7726f40fe2337e2f84ed70474f55d575ce468..ce04fecade5527a22d21e6446b8c31c525a75b4e 100644 (file)
@@ -13,17 +13,16 @@ BEGIN {
 
 my $x = X11::XCB::Connection->new;
 
-my $i3 = i3;
+my $i3 = i3("/tmp/nestedcons");
+my $tmp = get_unused_workspace();
+$i3->command("workspace $tmp")->recv;
 
-# Switch to the nineth workspace
-$i3->command('9')->recv;
 
+$i3->command('split h')->recv;
 my $tiled_left = i3test::open_standard_window($x);
 my $tiled_right = i3test::open_standard_window($x);
 
-sleep(0.25);
-
-$i3->command('ml')->recv;
+sleep 0.25;
 
 # Get input focus before creating the floating window
 my $focus = $x->input_focus;
@@ -40,12 +39,13 @@ isa_ok($window, 'X11::XCB::Window');
 
 $window->map;
 
-sleep(0.25);
+sleep 1;
+sleep 0.25;
 is($x->input_focus, $window->id, 'floating window focused');
 
 $window->unmap;
 
-sleep(0.25);
+sleep 0.25;
 
 is($x->input_focus, $focus, 'Focus correctly restored');
 
index c809be9ef637a5d763033260e2018138a29188a4..1cb205ed9a192188206303973a90bedee600fcc0 100644 (file)
@@ -12,6 +12,9 @@ BEGIN {
     use_ok('X11::XCB::Connection') or BAIL_OUT('Cannot load X11::XCB::Connection');
 }
 
+SKIP: {
+    skip "stacking test not yet updated", 21;
+
 my $x = X11::XCB::Connection->new;
 
 my $i3 = i3;
@@ -126,3 +129,4 @@ is($focus, $bottom->id, "Window above is bottom");
 $focus = focus_after("k");
 is($focus, $mid->id, "Window above is mid");
 
+}
index 0d309c680a7ece34f00790b04af0ec29d78838ee..a5fb3c573af6a4b64a49e77439c3a0d02cead42d 100644 (file)
@@ -12,12 +12,14 @@ BEGIN {
     use_ok('X11::XCB::Connection') or BAIL_OUT('Cannot load X11::XCB::Connection');
 }
 
-my $x = X11::XCB::Connection->new;
+SKIP: {
+    skip "border styles not yet implemented", 14;
 
-my $i3 = i3;
+my $x = X11::XCB::Connection->new;
 
-# Switch to the nineth workspace
-$i3->command('9')->recv;
+my $i3 = i3("/tmp/nestedcons");
+my $tmp = get_unused_workspace();
+$i3->command("workspace $tmp")->recv;
 
 #####################################################################
 # Create a floating window and see if resizing works
@@ -76,3 +78,5 @@ test_resize;
 $i3->command('bp')->recv;
 
 test_resize;
+
+}
index bf07b9273c66f3482ecb290b52ab117644e2be74..fb330d96084a3339147dff7c770186cf47b1015c 100644 (file)
@@ -1,8 +1,5 @@
 #!perl
 # vim:ts=4:sw=4:expandtab
-# Beware that this test uses workspace 9 and 10 to perform some tests (it expects
-# the workspace to be empty).
-# TODO: skip it by default?
 
 use i3test tests => 3;
 use X11::XCB qw(:all);
@@ -13,10 +10,10 @@ BEGIN {
 }
 
 my $x = X11::XCB::Connection->new;
-my $i3 = i3;
+my $i3 = i3("/tmp/nestedcons");
 
-# Switch to the nineth workspace
-$i3->command('9')->recv;
+my $tmp = get_unused_workspace();
+$i3->command("workspace $tmp")->recv;
 
 #####################################################################
 # Create a parent window
@@ -37,7 +34,8 @@ sleep 0.25;
 # Switch workspace to 10 and open a child window. It should be positioned
 # on workspace 9.
 #########################################################################
-$i3->command('10')->recv;
+my $otmp = get_unused_workspace();
+$i3->command("workspace $otmp")->recv;
 
 my $child = $x->root->create_child(
 class => WINDOW_CLASS_INPUT_OUTPUT,
@@ -54,6 +52,6 @@ sleep 0.25;
 isnt($x->input_focus, $child->id, "Child window focused");
 
 # Switch back
-$i3->command('9')->recv;
+$i3->command("workspace $tmp")->recv;
 
 is($x->input_focus, $child->id, "Child window focused");
index 3cf3e5626fe5df6b669c7a4ac1c78d789a5a1133..6c0996c55cad53fe73b2e42ca7eeab551341097f 100644 (file)
@@ -4,12 +4,15 @@
 use i3test tests => 2;
 use List::MoreUtils qw(all);
 
-my $i3 = i3;
+my $i3 = i3("/tmp/nestedcons");
 
 ####################
 # Request workspaces
 ####################
 
+SKIP: {
+    skip "IPC API not yet stabilized", 2;
+
 my $workspaces = $i3->get_workspaces->recv;
 
 ok(@{$workspaces} > 0, "More than zero workspaces found");
@@ -17,4 +20,6 @@ ok(@{$workspaces} > 0, "More than zero workspaces found");
 my $name_exists = all { defined($_->{name}) } @{$workspaces};
 ok($name_exists, "All workspaces have a name");
 
+}
+
 diag( "Testing i3, Perl $], $^X" );
index 3159929bd778c6db585b0bc1b129ee55541e31a6..e3f96911238de2835eb6a674217570c52bc18d93 100644 (file)
@@ -1,7 +1,7 @@
 #!perl
 # vim:ts=4:sw=4:expandtab
 
-use i3test tests => 8;
+use i3test tests => 7;
 use List::MoreUtils qw(all none);
 
 my $i3 = i3("/tmp/nestedcons");
@@ -11,32 +11,6 @@ my $i3 = i3("/tmp/nestedcons");
 ####################
 
 my $tree = $i3->get_workspaces->recv;
-# $VAR1 = {
-#           'fullscreen_mode' => 0,
-#           'nodes' => [
-#                         {
-#                           'fullscreen_mode' => 0,
-#                           'nodes' => [
-#                                         {
-#                                           'fullscreen_mode' => 0,
-#                                           'nodes' => [],
-#                                           'window' => undef,
-#                                           'name' => '1',
-#                                           'orientation' => 0,
-#                                           'type' => 2
-#                                         }
-#                                       ],
-#                           'window' => undef,
-#                           'name' => 'LVDS1',
-#                           'orientation' => 0,
-#                           'type' => 1
-#                         }
-#                       ],
-#           'window' => undef,
-#           'name' => 'root',
-#           'orientation' => 0,
-#           'type' => 0
-#         };
 
 my $expected = {
     fullscreen_mode => 0,
@@ -49,6 +23,8 @@ my $expected = {
     rect => ignore(),
     layout => 0,
     focus => ignore(),
+    urgent => 0,
+    'floating-nodes' => ignore(),
 };
 
 cmp_deeply($tree, $expected, 'root node OK');
@@ -65,8 +41,8 @@ for my $ws (map { @{$_->{nodes}} } @nodes) {
     push @workspaces, $ws;
 }
 
-ok((all { $_->{type} == 2 } @workspaces), 'all workspaces are of type CT_CON');
-ok((all { @{$_->{nodes}} == 0 } @workspaces), 'all workspaces are empty yet');
+ok((all { $_->{type} == 4 } @workspaces), 'all workspaces are of type CT_WORKSPACE');
+#ok((all { @{$_->{nodes}} == 0 } @workspaces), 'all workspaces are empty yet');
 ok((none { defined($_->{window}) } @workspaces), 'no CT_OUTPUT contains a window');
 
 # TODO: get the focused container
@@ -76,9 +52,9 @@ $i3->command('open')->recv;
 # TODO: get the focused container, check if it changed.
 # TODO: get the old focused container, check if there is a new child
 
-diag(Dumper(\@workspaces));
+#diag(Dumper(\@workspaces));
 
-diag(Dumper($tree));
+#diag(Dumper($tree));
 
 
 diag( "Testing i3, Perl $], $^X" );