]> git.sur5r.net Git - i3/i3/commitdiff
tests: add a test for the urgent= criteria
authorMichael Stapelberg <michael@stapelberg.de>
Tue, 14 Feb 2012 22:47:40 +0000 (22:47 +0000)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 14 Feb 2012 22:47:40 +0000 (22:47 +0000)
testcases/t/113-urgent.t

index 5ee61a4d2b887c34a2776e3920a27743ffefe2df..9c3dbab61635763c28467ce108aaf46c45aebe58 100644 (file)
@@ -49,6 +49,7 @@ is(@urgent, 0, 'no window got the urgent flag after re-setting urgency hint');
 #####################################################################
 # Check if the workspace urgency hint gets set/cleared correctly
 #####################################################################
+
 my $ws = get_ws($tmp);
 ok(!$ws->{urgent}, 'urgent flag not set on workspace');
 
@@ -65,4 +66,78 @@ cmd "workspace $tmp";
 $ws = get_ws($tmp);
 ok(!$ws->{urgent}, 'urgent flag not set on workspace after switching');
 
+################################################################################
+# Use the 'urgent' criteria to switch to windows which have the urgency hint set.
+################################################################################
+
+# Go to a new workspace, open a different window, verify focus is on it.
+$otmp = fresh_workspace;
+my $different_window = open_window;
+is($x->input_focus, $different_window->id, 'new window focused');
+
+# Add the urgency hint on the other window.
+$top->add_hint('urgency');
+sync_with_i3;
+
+# Now try to switch to that window and see if focus changes.
+cmd '[urgent=latest] focus';
+isnt($x->input_focus, $different_window->id, 'window no longer focused');
+is($x->input_focus, $top->id, 'urgent window focused');
+
+################################################################################
+# Same thing, but with multiple windows and using the 'urgency=latest' criteria
+# (verify that it works in the correct order).
+################################################################################
+
+cmd "workspace $otmp";
+is($x->input_focus, $different_window->id, 'new window focused again');
+
+$top->add_hint('urgency');
+sync_with_i3;
+
+# Unfortunately, we cannot get rid of this delay. We need it because i3 stores
+# the time of an urgency hint with second precision.
+sleep 1;
+
+$bottom->add_hint('urgency');
+sync_with_i3;
+
+cmd '[urgent=latest] focus';
+is($x->input_focus, $bottom->id, 'latest urgent window focused');
+$bottom->delete_hint('urgency');
+sync_with_i3;
+
+cmd '[urgent=latest] focus';
+is($x->input_focus, $top->id, 'second urgent window focused');
+$top->delete_hint('urgency');
+sync_with_i3;
+
+################################################################################
+# Same thing, but with multiple windows and using the 'urgency=oldest' criteria
+# (verify that it works in the correct order).
+################################################################################
+
+cmd "workspace $otmp";
+is($x->input_focus, $different_window->id, 'new window focused again');
+
+$top->add_hint('urgency');
+sync_with_i3;
+
+# Unfortunately, we cannot get rid of this delay. We need it because i3 stores
+# the time of an urgency hint with second precision.
+sleep 1;
+
+$bottom->add_hint('urgency');
+sync_with_i3;
+
+cmd '[urgent=oldest] focus';
+is($x->input_focus, $top->id, 'oldest urgent window focused');
+$top->delete_hint('urgency');
+sync_with_i3;
+
+cmd '[urgent=oldest] focus';
+is($x->input_focus, $bottom->id, 'oldest urgent window focused');
+$bottom->delete_hint('urgency');
+sync_with_i3;
+
 done_testing;