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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#
# $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Glib/t/1.t,v 1.12 2005/07/05 17:51:07 kaffeetisch Exp $
#
# Basic test for Glib fundamentals. make sure that the smoke does't get out,
# and test most of the procedural things in Glib's toplevel namespace.
#
use strict;
use warnings;
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 1.t'
#########################
use Test::More tests => 23;
BEGIN { use_ok('Glib') };
#########################
ok (defined (Glib::major_version), 'major_version');
ok (defined (Glib::minor_version), 'minor_version');
ok (defined (Glib::micro_version), 'micro_version');
ok (Glib->CHECK_VERSION(0,0,0), 'CHECK_VERSION pass');
ok (!Glib->CHECK_VERSION(50,0,0), 'CHECK_VERSION fail');
my @version = Glib->GET_VERSION_INFO;
print "Glib was compiled for glib version ".join(".",@version)."\n";
is (scalar (@version), 3, 'version info list is 3 items long');
is (Glib::MAJOR_VERSION, $version[0], 'MAJOR_VERSION');
is (Glib::MINOR_VERSION, $version[1], 'MINOR_VERSION');
is (Glib::MICRO_VERSION, $version[2], 'MICRO_VERSION');
print "user name: ".Glib::get_user_name."\n";
print "real name: ".Glib::get_real_name."\n";
print "home dir: ".Glib::get_home_dir."\n";
print "tmp dir: ".Glib::get_tmp_dir."\n";
ok (defined (Glib::get_user_name), "Glib::get_user_name");
ok (defined (Glib::get_real_name), "Glib::get_real_name");
ok (defined (Glib::get_home_dir), "Glib::get_home_dir");
ok (defined (Glib::get_tmp_dir), "Glib::get_tmp_dir");
SKIP: {
skip "set_application_name is new in glib 2.2.0", 2
unless Glib->CHECK_VERSION (2,2,0);
# this will not hold after Gtk2::init, since gtk_init() calls
# gdk_parse_args() which calls g_set_prgname(argv[0]).
is (Glib::get_application_name (), undef, 'before any calls to anything');
my $appname = 'Flurble Foo 2, Electric Boogaloo';
Glib::set_application_name ($appname);
is (Glib::get_application_name (), $appname);
}
SKIP: {
skip "new 2.6 stuff", 6
unless Glib->CHECK_VERSION (2,6,0);
ok (defined Glib::get_user_data_dir ());
ok (defined Glib::get_user_config_dir ());
ok (defined Glib::get_user_cache_dir ());
ok (defined Glib::get_system_data_dirs ());
ok (defined Glib::get_system_config_dirs ());
ok (defined Glib::get_language_names ());
}
is (Glib::Markup::escape_text ("<gtk2-perl>"), "<gtk2-perl>");
__END__
Copyright (C) 2003-2005 by the gtk2-perl team (see the file AUTHORS for the
full list)
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Library General Public License as published by the Free
Software Foundation; either version 2.1 of the License, or (at your option) any
later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Library General Public License for more
details.
You should have received a copy of the GNU Library General Public License along
with this library; if not, write to the Free Software Foundation, Inc., 59
Temple Place - Suite 330, Boston, MA 02111-1307 USA.
|