]> git.sur5r.net Git - i3/i3/blob - testcases/t/116-nestedcons.t
Merge branch 'master' into next
[i3/i3] / testcases / t / 116-nestedcons.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3
4 use i3test;
5 use List::Util qw(first);
6
7 # to not depend on List::MoreUtils
8 sub all (&@) {
9     my $cb = shift;
10     for (@_) {
11         return 0 unless $cb->();
12     }
13     return 1;
14 }
15
16 sub none (&@) {
17     my $cb = shift;
18     for (@_) {
19         return 0 if $cb->();
20     }
21     return 1;
22 }
23
24 my $i3 = i3(get_socket_path());
25
26 ####################
27 # Request tree
28 ####################
29
30 my $tree = $i3->get_tree->recv;
31
32 # a unique value
33 my $ignore = \"";
34
35 my $expected = {
36     fullscreen_mode => 0,
37     nodes => $ignore,
38     window => undef,
39     name => 'root',
40     orientation => $ignore,
41     type => 0,
42     id => $ignore,
43     rect => $ignore,
44     window_rect => $ignore,
45     geometry => $ignore,
46     swallows => $ignore,
47     percent => undef,
48     layout => 'default',
49     floating => 'auto_off',
50     scratchpad_state => 'none',
51     focus => $ignore,
52     focused => JSON::XS::false,
53     urgent => JSON::XS::false,
54     border => 'normal',
55     'floating_nodes' => $ignore,
56 };
57
58 # a shallow copy is sufficient, since we only ignore values at the root
59 my $tree_copy = { %$tree };
60
61 for (keys %$expected) {
62     my $val = $expected->{$_};
63
64     # delete unwanted keys, so we can use is_deeply()
65     if (ref($val) eq 'SCALAR' and $val == $ignore) {
66         delete $tree_copy->{$_};
67         delete $expected->{$_};
68     }
69 }
70
71 is_deeply($tree_copy, $expected, 'root node OK');
72
73 my @nodes = @{$tree->{nodes}};
74
75 ok(@nodes > 0, 'root node has at least one leaf');
76
77 ok((all { $_->{type} == 1 } @nodes), 'all nodes are of type CT_OUTPUT');
78 ok((none { defined($_->{window}) } @nodes), 'no CT_OUTPUT contains a window');
79 ok((all { @{$_->{nodes}} > 0 } @nodes), 'all nodes have at least one leaf (workspace)');
80 my @workspaces;
81 for my $ws (@nodes) {
82     my $content = first { $_->{type} == 2 } @{$ws->{nodes}};
83     @workspaces = (@workspaces, @{$content->{nodes}});
84 }
85
86 ok((all { $_->{type} == 4 } @workspaces), 'all workspaces are of type CT_WORKSPACE');
87 #ok((all { @{$_->{nodes}} == 0 } @workspaces), 'all workspaces are empty yet');
88 ok((none { defined($_->{window}) } @workspaces), 'no CT_OUTPUT contains a window');
89
90 # TODO: get the focused container
91
92 $i3->command('open')->recv;
93
94 # TODO: get the focused container, check if it changed.
95 # TODO: get the old focused container, check if there is a new child
96
97 #diag(Dumper(\@workspaces));
98
99 #diag(Dumper($tree));
100
101
102 done_testing;