]> git.sur5r.net Git - i3/i3/commitdiff
Merge branch 'next' into testcases
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 5 Aug 2009 18:22:24 +0000 (20:22 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 5 Aug 2009 18:22:24 +0000 (20:22 +0200)
testcases/Makefile [new file with mode: 0644]
testcases/t/00-load.t [new file with mode: 0644]
testcases/t/01-tile.t [new file with mode: 0644]
testcases/t/02-fullscreen.t [new file with mode: 0644]
testcases/t/03-unmanaged.t [new file with mode: 0644]

diff --git a/testcases/Makefile b/testcases/Makefile
new file mode 100644 (file)
index 0000000..60fdd8e
--- /dev/null
@@ -0,0 +1,4 @@
+test:
+       PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, '/home/michael/xcb-perl/X11-XCB/lib/', '/home/michael/xcb-perl/X11-XCB/blib/lib', '/home/michael/xcb-perl/X11-XCB/blib/arch')" t/*.t
+
+all: test
diff --git a/testcases/t/00-load.t b/testcases/t/00-load.t
new file mode 100644 (file)
index 0000000..5dfc5c6
--- /dev/null
@@ -0,0 +1,10 @@
+#!perl
+
+use Test::More tests => 2;
+
+BEGIN {
+       use_ok( 'X11::XCB::Connection' );
+       use_ok( 'X11::XCB::Window' );
+}
+
+diag( "Testing i3, Perl $], $^X" );
diff --git a/testcases/t/01-tile.t b/testcases/t/01-tile.t
new file mode 100644 (file)
index 0000000..10beb32
--- /dev/null
@@ -0,0 +1,33 @@
+#!perl
+
+use Test::More tests => 4;
+use Test::Deep;
+use X11::XCB qw(:all);
+use Data::Dumper;
+
+BEGIN {
+       use_ok('X11::XCB::Window');
+}
+
+X11::XCB::Connection->connect(':0');
+
+my $original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
+
+my $window = X11::XCB::Window->new(
+                class => WINDOW_CLASS_INPUT_OUTPUT,
+               rect => $original_rect,
+               #override_redirect => 1,
+               background_color => 12632256
+);
+
+isa_ok($window, 'X11::XCB::Window');
+
+is_deeply($window->rect, $original_rect, "rect unmodified before mapping");
+
+$window->create;
+$window->map;
+
+my $new_rect = $window->rect;
+ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned");
+
+diag( "Testing i3, Perl $], $^X" );
diff --git a/testcases/t/02-fullscreen.t b/testcases/t/02-fullscreen.t
new file mode 100644 (file)
index 0000000..2530649
--- /dev/null
@@ -0,0 +1,48 @@
+#!perl
+
+use Test::More tests => 5;
+use Test::Deep;
+use X11::XCB qw(:all);
+
+# We use relatively long sleeps (1/4 second) to make sure the window manager
+# reacted.
+use Time::HiRes qw(sleep);
+
+BEGIN {
+       use_ok('X11::XCB::Window');
+}
+
+X11::XCB::Connection->connect(':0');
+
+my $original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
+
+my $window = X11::XCB::Window->new(
+                class => WINDOW_CLASS_INPUT_OUTPUT,
+               rect => $original_rect,
+               #override_redirect => 1,
+               background_color => 12632256
+);
+
+isa_ok($window, 'X11::XCB::Window');
+
+is_deeply($window->rect, $original_rect, "rect unmodified before mapping");
+
+$window->create;
+$window->map;
+
+sleep(0.25);
+
+my $new_rect = $window->rect;
+ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned");
+$original_rect = $new_rect;
+
+sleep(0.25);
+
+$window->fullscreen(1);
+
+sleep(0.25);
+
+$new_rect = $window->rect;
+ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned after fullscreen");
+
+diag( "Testing i3, Perl $], $^X" );
diff --git a/testcases/t/03-unmanaged.t b/testcases/t/03-unmanaged.t
new file mode 100644 (file)
index 0000000..cf51bfe
--- /dev/null
@@ -0,0 +1,36 @@
+#!perl
+# vim:ts=4:sw=4:expandtab
+
+use Test::More tests => 5;
+use Test::Deep;
+use X11::XCB qw(:all);
+use Data::Dumper;
+
+BEGIN {
+    use_ok('X11::XCB::Window');
+}
+
+X11::XCB::Connection->connect(':0');
+
+my $original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
+
+my $window = X11::XCB::Window->new(
+    class => WINDOW_CLASS_INPUT_OUTPUT,
+    rect => $original_rect,
+    override_redirect => 1,
+    background_color => 12632256
+);
+
+isa_ok($window, 'X11::XCB::Window');
+
+is_deeply($window->rect, $original_rect, "rect unmodified before mapping");
+
+$window->create;
+$window->map;
+
+my $new_rect = $window->rect;
+isa_ok($new_rect, 'X11::XCB::Rect');
+
+is_deeply($new_rect, $original_rect, "window untouched");
+
+diag( "Testing i3, Perl $], $^X" );