summaryrefslogtreecommitdiff
path: root/test/feh-bg.i
blob: 1cfb43f5a8f3fc0392dd5aaddff850750eb19fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;

use GD qw/:DEFAULT :cmp/;
use Test::More tests => 70;
use Time::HiRes qw/sleep/;

sub set_bg {
	my ($mode, $file) = @_;

	ok(
		system("feh --bg-${mode} test/bg/${file}") == 0,
		"Ran feh --bg-${mode} test/bg/${file}"
	);
}

sub same_files {
	my ($one, $two) = @_;

	my $img_one = GD::Image->new($one);
	my $img_two = GD::Image->new($two);

	return( ! ($img_one->compare($img_two) & GD_CMP_IMAGE));
}

sub check_bg {
	my ($file) = @_;

	system("import -silent -window root /tmp/feh_${$}.png");

	ok(
		same_files("test/bg/${file}", "/tmp/feh_${$}.png"),
		"Wallpaper is test/bg/${file}"
	);
}

for my $mode (qw( center fill max scale tile )) {

	set_bg($mode, 'exact/in');
	check_bg('exact/out');

	for my $type (qw( exact small large )) {
		for my $orientation (qw( w h )) {

			set_bg($mode, "${type}/${orientation}/in");
			check_bg("${type}/${orientation}/${mode}");

		}
	}
}

unlink("/tmp/feh_${$}.png");