]> git.sur5r.net Git - i3/i3/blob - testcases/t/503-workspace.t
fix test after renaming role to window_role
[i3/i3] / testcases / t / 503-workspace.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Please read the following documents before working on tests:
5 # • http://build.i3wm.org/docs/testsuite.html
6 #   (or docs/testsuite)
7 #
8 # • http://build.i3wm.org/docs/lib-i3test.html
9 #   (alternatively: perldoc ./testcases/lib/i3test.pm)
10 #
11 # • http://build.i3wm.org/docs/ipc.html
12 #   (or docs/ipc)
13 #
14 # • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
15 #   (unless you are already familiar with Perl)
16 #
17 # Tests whether 'workspace next_on_output' and the like work correctly.
18 #
19 use List::Util qw(first);
20 use i3test i3_autostart => 0;
21
22 my $config = <<EOT;
23 # i3 config file (v4)
24 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
25
26 fake-outputs 1024x768+0+0,1024x768+1024+0
27 EOT
28 my $pid = launch_with_config($config);
29
30 ################################################################################
31 # Setup workspaces so that they stay open (with an empty container).
32 ################################################################################
33
34 $x->root->warp_pointer(0, 0);
35 sync_with_i3;
36
37 is(focused_ws, '1', 'starting on workspace 1');
38 # ensure workspace 1 stays open
39 open_window;
40
41 cmd 'focus output right';
42 is(focused_ws, '2', 'workspace 2 on second output');
43 # ensure workspace 2 stays open
44 open_window;
45
46 cmd 'focus output right';
47 is(focused_ws, '1', 'back on workspace 1');
48
49 # We don’t use fresh_workspace with named workspaces here since they come last
50 # when using 'workspace next'.
51 cmd 'workspace 5';
52 # ensure workspace 5 stays open
53 open_window;
54
55 ################################################################################
56 # Use workspace next and verify the correct order.
57 ################################################################################
58
59 # The current order should be:
60 # output 1: 1, 5
61 # output 2: 2
62 cmd 'workspace 1';
63 cmd 'workspace next';
64 # We need to sync after changing focus to a different output to wait for the
65 # EnterNotify to be processed, otherwise it will be processed at some point
66 # later in time and mess up our subsequent tests.
67 sync_with_i3;
68
69 is(focused_ws, '2', 'workspace 2 focused');
70 cmd 'workspace next';
71 # We need to sync after changing focus to a different output to wait for the
72 # EnterNotify to be processed, otherwise it will be processed at some point
73 # later in time and mess up our subsequent tests.
74 sync_with_i3;
75
76 is(focused_ws, '5', 'workspace 5 focused');
77
78 ################################################################################
79 # Now try the same with workspace next_on_output.
80 ################################################################################
81
82 cmd 'workspace 1';
83 cmd 'workspace next_on_output';
84 is(focused_ws, '5', 'workspace 5 focused');
85 cmd 'workspace next_on_output';
86 is(focused_ws, '1', 'workspace 1 focused');
87
88 cmd 'workspace prev_on_output';
89 is(focused_ws, '5', 'workspace 5 focused');
90 cmd 'workspace prev_on_output';
91 is(focused_ws, '1', 'workspace 1 focused');
92
93 cmd 'workspace 2';
94 # We need to sync after changing focus to a different output to wait for the
95 # EnterNotify to be processed, otherwise it will be processed at some point
96 # later in time and mess up our subsequent tests.
97 sync_with_i3;
98
99 cmd 'workspace prev_on_output';
100 is(focused_ws, '2', 'workspace 2 focused');
101
102 exit_gracefully($pid);
103
104 done_testing;