#!perl # vim:ts=4:sw=4:expandtab # # Please read the following documents before working on tests: # • https://build.i3wm.org/docs/testsuite.html # (or docs/testsuite) # # • https://build.i3wm.org/docs/lib-i3test.html # (alternatively: perldoc ./testcases/lib/i3test.pm) # # • https://build.i3wm.org/docs/ipc.html # (or docs/ipc) # # • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf # (unless you are already familiar with Perl) # # Verifies that the size requested by floating windows is set by i3, no matter # to which value the new_window option is set. # ticket #770, bug still present in commit ae88accf6fe3817ff42d0d51be1965071194766e use i3test i3_autostart => 0; sub test_with_config { my ($value) = @_; my $config = < [ 0, 0, 400, 150 ] }); my ($absolute, $top) = $window->rect; ok($window->mapped, 'Window is mapped'); cmp_ok($absolute->{width}, '==', 400, 'requested width kept'); cmp_ok($absolute->{height}, '==', 150, 'requested height kept'); exit_gracefully($pid); } test_with_config(undef); test_with_config('new_window 1pixel'); test_with_config('new_window normal'); test_with_config('new_window none'); test_with_config('hide_edge_borders both'); done_testing;