#!/usr/bin/perl -w use strict; use Gnome2; use constant TESTS => 10; use Test::More tests => TESTS; Gnome2::VFS -> init(); # $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gnome2/t/GnomeIconTheme.t,v 1.18 2005/10/08 13:57:00 kaffeetisch Exp $ ############################################################################### SKIP: { our $application; do "t/TestBoilerplate"; skip("GnomeIconTheme is new in 2.0.6", TESTS) unless (Gnome2 -> CHECK_VERSION(2, 0, 6)); ############################################################################# my $theme = Gnome2::IconTheme -> new(); isa_ok($theme, "Gnome2::IconTheme"); # FIXME: $theme -> get_example_icon_name(); my @icon = $theme -> lookup_sync(undef, "/usr/bin/perl", undef, "none"); ok(scalar(@icon) == 2 and defined($icon[0])); my ($result, $info) = Gnome2::VFS -> get_file_info("/usr/bin/perl", "get-mime-type"); @icon = $theme -> lookup(undef, "/usr/bin/perl", undef, $info, "application/x-executable-binary", "none"); ok(scalar(@icon) == 2 and defined($icon[0])); ok($theme -> list_icons()); is($theme -> has_icon("gnome-unknown"), 1); my ($file, $icon_data, $size) = $theme -> lookup_icon("gnome-fs-directory", 48); SKIP: { skip "lookup_icon aftermath", 3 unless defined $file; ok(-e $file); isa_ok($icon_data, "HASH"); like($size, qr/^\d+$/); } $theme -> set_allow_svg(1); is($theme -> get_allow_svg(), 1); $theme -> rescan_if_needed(); $theme -> set_search_path("/usr/share/icons"); # FIXME: these seem to do nothing. $theme -> append_search_path("/usr/share/pixmaps"); $theme -> prepend_search_path("/usr/share/images"); ok(defined($theme -> get_search_path())); $theme -> set_custom_theme("Crux"); } ############################################################################### Gnome2::VFS -> shutdown();