]> git.sur5r.net Git - i3/i3/blobdiff - testcases/t/115-ipc-workspaces.t
Merge pull request #1638 from hwangcc23/fix-1489
[i3/i3] / testcases / t / 115-ipc-workspaces.t
index ec2ec9d2a242f948ffb105c81e5ba4f9ebce229e..2bcc6d602f7ec4b57c317f111926a29c81926235 100644 (file)
 use i3test;
 
 my $i3 = i3(get_socket_path());
+$i3->connect()->recv;
 
-####################
-# Request workspaces
-####################
+################################
+# Workspaces requests and events
+################################
 
-SKIP: {
-    skip "IPC API not yet stabilized", 2;
+my $old_ws = get_ws(focused_ws());
 
-my $workspaces = $i3->get_workspaces->recv;
+# Events
 
-ok(@{$workspaces} > 0, "More than zero workspaces found");
+# We are switching to an empty workpspace from an empty workspace, so we expect
+# to receive "init", "focus", and "empty".
+my $init = AnyEvent->condvar;
+my $focus = AnyEvent->condvar;
+my $empty = AnyEvent->condvar;
+$i3->subscribe({
+    workspace => sub {
+        my ($event) = @_;
+        if ($event->{change} eq 'init') {
+            $init->send($event);
+        } elsif ($event->{change} eq 'focus') {
+            $focus->send($event);
+        } elsif ($event->{change} eq 'empty') {
+            $empty->send($event);
+        }
+    }
+})->recv;
 
-#my $name_exists = all { defined($_->{name}) } @{$workspaces};
-#ok($name_exists, "All workspaces have a name");
+cmd 'workspace 2';
 
-}
+my $t;
+$t = AnyEvent->timer(
+    after => 0.5,
+    cb => sub {
+        $init->send(0);
+        $focus->send(0);
+        $empty->send(0);
+    }
+);
+
+my $init_event = $init->recv;
+my $focus_event = $focus->recv;
+my $empty_event = $empty->recv;
+
+my $current_ws = get_ws(focused_ws());
+
+ok($init_event, 'workspace "init" event received');
+is($init_event->{current}->{id}, $current_ws->{id}, 'the "current" property should contain the initted workspace con');
+
+ok($focus_event, 'workspace "focus" event received');
+is($focus_event->{current}->{id}, $current_ws->{id}, 'the "current" property should contain the focused workspace con');
+is($focus_event->{old}->{id}, $old_ws->{id}, 'the "old" property should contain the workspace con that was focused last');
+
+ok($empty_event, 'workspace "empty" event received');
+is($empty_event->{current}->{id}, $old_ws->{id}, 'the "current" property should contain the emptied workspace con');
 
 done_testing;