]> git.sur5r.net Git - i3/i3/blob - testcases/t/16-nestedcons.t
tests: update t/16-nestedcons.t with new window_rect parameter
[i3/i3] / testcases / t / 16-nestedcons.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3
4 use i3test tests => 7;
5 use List::MoreUtils qw(all none);
6
7 my $i3 = i3("/tmp/nestedcons");
8
9 ####################
10 # Request tree
11 ####################
12
13 my $tree = $i3->get_tree->recv;
14
15 my $expected = {
16     fullscreen_mode => 0,
17     nodes => ignore(),
18     window => undef,
19     name => 'root',
20     orientation => ignore(),
21     type => 0,
22     id => ignore(),
23     rect => ignore(),
24     window_rect => ignore(),
25     layout => 0,
26     focus => ignore(),
27     focused => 0,
28     urgent => 0,
29     border => 0,
30     'floating_nodes' => ignore(),
31 };
32
33 cmp_deeply($tree, $expected, 'root node OK');
34
35 my @nodes = @{$tree->{nodes}};
36
37 ok(@nodes > 0, 'root node has at least one leaf');
38
39 ok((all { $_->{type} == 1 } @nodes), 'all nodes are of type CT_OUTPUT');
40 ok((none { defined($_->{window}) } @nodes), 'no CT_OUTPUT contains a window');
41 ok((all { @{$_->{nodes}} > 0 } @nodes), 'all nodes have at least one leaf (workspace)');
42 my @workspaces;
43 for my $ws (map { @{$_->{nodes}} } @nodes) {
44     push @workspaces, $ws;
45 }
46
47 ok((all { $_->{type} == 4 } @workspaces), 'all workspaces are of type CT_WORKSPACE');
48 #ok((all { @{$_->{nodes}} == 0 } @workspaces), 'all workspaces are empty yet');
49 ok((none { defined($_->{window}) } @workspaces), 'no CT_OUTPUT contains a window');
50
51 # TODO: get the focused container
52
53 $i3->command('open')->recv;
54
55 # TODO: get the focused container, check if it changed.
56 # TODO: get the old focused container, check if there is a new child
57
58 #diag(Dumper(\@workspaces));
59
60 #diag(Dumper($tree));
61
62
63 diag( "Testing i3, Perl $], $^X" );