]> git.sur5r.net Git - i3/i3/commitdiff
add testcase for changing workspaces
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 16 Apr 2010 12:24:29 +0000 (14:24 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 16 Apr 2010 12:24:29 +0000 (14:24 +0200)
testcases/t/17-workspace.t [new file with mode: 0644]

diff --git a/testcases/t/17-workspace.t b/testcases/t/17-workspace.t
new file mode 100644 (file)
index 0000000..403f366
--- /dev/null
@@ -0,0 +1,48 @@
+#!perl
+# vim:ts=4:sw=4:expandtab
+#
+# Tests whether we can switch to a non-existant workspace
+# (necessary for further tests)
+#
+use Test::More tests => 2;
+use List::MoreUtils qw(all none);
+use Data::Dumper;
+use AnyEvent::I3;
+use File::Temp qw(tmpnam);
+use v5.10;
+
+my $i3 = i3("/tmp/nestedcons");
+
+sub get_workspace_names {
+       my $tree = $i3->get_workspaces->recv;
+       my @workspaces = map { @{$_->{nodes}} } @{$tree->{nodes}};
+       [ map { $_->{name} } @workspaces ]
+}
+
+sub workspace_exists {
+       my ($name) = @_;
+       ($name ~~ @{get_workspace_names()})
+}
+
+sub get_unused_workspace {
+       my @names = get_workspace_names();
+       my $tmp;
+       do { $tmp = tmpnam() } while ($tmp ~~ @names);
+       $tmp
+}
+
+my $tmp = get_unused_workspace();
+diag("Temporary workspace name: $tmp\n");
+
+$i3->command("workspace $tmp")->recv;
+ok(workspace_exists($tmp), 'workspace created');
+
+my $otmp = get_unused_workspace();
+diag("Other temporary workspace name: $otmp\n");
+
+# As the old workspace was empty, it should get
+# cleaned up as we switch away from it
+$i3->command("workspace $otmp")->recv;
+ok(!workspace_exists($tmp), 'old workspace cleaned up');
+
+diag( "Testing i3, Perl $], $^X" );