2010-11-20 19:11:43 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
# Regression test: Floating windows were not correctly unmapped when switching
|
|
|
|
# to a different workspace.
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2010-11-20 19:11:43 +01:00
|
|
|
|
2011-07-25 13:35:56 +02:00
|
|
|
my $i3 = i3(get_socket_path());
|
2010-11-20 19:11:43 +01:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $tmp = fresh_workspace;
|
2010-11-20 19:11:43 +01:00
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# 1: open a floating window, get it mapped
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
# Create a floating window which is smaller than the minimum enforced size of i3
|
2011-11-22 01:00:54 +01:00
|
|
|
my $window = open_floating_window;
|
2010-11-20 19:11:43 +01:00
|
|
|
ok($window->mapped, 'Window is mapped');
|
|
|
|
|
|
|
|
# switch to a different workspace, see if the window is still mapped?
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $otmp = fresh_workspace;
|
2010-11-20 19:11:43 +01:00
|
|
|
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2010-11-20 19:11:43 +01:00
|
|
|
|
|
|
|
ok(!$window->mapped, 'Window is not mapped after switching ws');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "nop testcase done";
|
|
|
|
|
|
|
|
done_testing;
|