X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=testcases%2Ft%2F101-focus.t;h=9d42345daa78d203c1ce4cfcca09fb9e29e3d886;hb=HEAD;hp=8a795c46c0a3d4f8a555fa08f5700c0be00b9cf0;hpb=cea6f7ad96c5e28274dd49c4c394db7f80884bde;p=i3%2Fi3 diff --git a/testcases/t/101-focus.t b/testcases/t/101-focus.t index 8a795c46..9d42345d 100644 --- a/testcases/t/101-focus.t +++ b/testcases/t/101-focus.t @@ -1,5 +1,18 @@ #!perl # vim:ts=4:sw=4:expandtab +# +# Please read the following documents before working on tests: +# • https://build.i3wm.org/docs/testsuite.html +# (or docs/testsuite) +# +# • https://build.i3wm.org/docs/lib-i3test.html +# (alternatively: perldoc ./testcases/lib/i3test.pm) +# +# • https://build.i3wm.org/docs/ipc.html +# (or docs/ipc) +# +# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf +# (unless you are already familiar with Perl) use i3test; @@ -47,48 +60,14 @@ is($focus, $bottom->id, "Bottom window focused (wrapping to the top works)"); $focus = focus_after('focus down'); is($focus, $top->id, "Top window focused (wrapping to the bottom works)"); -############################################### -# Test focus with empty containers and colspan -############################################### +##################################################################### +# Test focus is only successful if there was a window that could be +# matched. +##################################################################### -#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"); +my $result = cmd '[con_mark=__does_not_exist] focus'; +is($result->[0]->{success}, 0, 'focus is unsuccessful if no window was matched'); +##################################################################### done_testing;