]> git.sur5r.net Git - i3/i3/blob - testcases/t/522-rename-assigned-workspace.t
981471f78f7821eb0f6ef495f3721484f6d656ce
[i3/i3] / testcases / t / 522-rename-assigned-workspace.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Please read the following documents before working on tests:
5 # • https://build.i3wm.org/docs/testsuite.html
6 #   (or docs/testsuite)
7 #
8 # • https://build.i3wm.org/docs/lib-i3test.html
9 #   (alternatively: perldoc ./testcases/lib/i3test.pm)
10 #
11 # • https://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 #
18 # Tests that workspaces are moved to the assigned output if they
19 # are renamed to an assigned name.
20 # Ticket: #1473
21
22 use i3test i3_config => <<EOT;
23 # i3 config file (v4)
24 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
25 fake-outputs 1024x768+0+0,1024x768+1024+0
26
27 workspace 1 output fake-0
28 workspace 2 output fake-1
29 workspace 3:foo output fake-1
30 workspace baz output fake-1
31 EOT
32
33 my $i3 = i3(get_socket_path());
34 $i3->connect->recv;
35
36 # Returns the name of the output on which this workspace resides
37 sub get_output_for_workspace {
38     my $ws_name = shift @_;
39
40     foreach (grep { not $_->{name} =~ /^__/ } @{$i3->get_tree->recv->{nodes}}) {
41         my $output = $_->{name};
42         foreach (grep { $_->{name} =~ "content" } @{$_->{nodes}}) {
43             return $output if $_->{nodes}[0]->{name} =~ $ws_name;
44         }
45     }
46 }
47
48 ##########################################################################
49 # Renaming the workspace to an unassigned name does not move the workspace
50 # (regression test)
51 ##########################################################################
52
53 cmd 'focus output fake-0';
54 cmd 'rename workspace to unassigned';
55 is(get_output_for_workspace('unassigned'), 'fake-0',
56     'Unassigned workspace should stay on its output when being renamed');
57
58 ##########################################################################
59 # Renaming a workspace by number only triggers the assignment
60 ##########################################################################
61
62 cmd 'focus output fake-0';
63 cmd 'rename workspace to 2';
64 is(get_output_for_workspace('2'), 'fake-1',
65     'Renaming the workspace to a number should move it to the assigned output');
66
67 ##########################################################################
68 # Renaming a workspace by number and name triggers the assignment
69 ##########################################################################
70
71 cmd 'focus output fake-0';
72 cmd 'rename workspace to "2:foo"';
73 is(get_output_for_workspace('2:foo'), 'fake-1',
74     'Renaming the workspace to a number and name should move it to the assigned output');
75
76 ##########################################################################
77 # Renaming a workspace by name only triggers the assignment
78 ##########################################################################
79
80 cmd 'focus output fake-0';
81 cmd 'rename workspace to baz';
82 is(get_output_for_workspace('baz'), 'fake-1',
83     'Renaming the workspace to a number and name should move it to the assigned output');
84
85 done_testing;