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
|
BEGIN { $|=1; $^W=1; }
use strict;
use Test;
use Tk;
use Tk::Font;
BEGIN { plan tests => 9
# , todo => [9]
};
my $mw = Tk::MainWindow->new;
##
## if there's only one (fixed) or no font family
## then something is wrong. Propably the envirionment
## and not perl/Tks fault.
##
{
my @fam = ();
eval { @fam = $mw->fontFamilies; };
ok($@ eq "");
ok(@fam>1, 1, "Num. of font families=".scalar @fam)
}
##
## Tk800.003 writes 'ont ...' in warning instead of 'font ...'
## fontActual expects one argument
## opps, looks like fault of ptksh
{
eval { $mw->fontActual; };
ok(
( $@ =~ /^wrong # args: should be "font/), 1,
"Warning should match /^wrong # args: should be \"font/ but was '". $@ . "'"
);
}
##
## Stephen O. Lidie reported that Tk800.003
## fontMeasure() and fontMeasure(fontname) gives
## SEGV on linux and AIX.
##
{
my $fontname = ($^O eq 'MSWin32') ? 'ansifixed': 'fixed';
eval { $mw->fontMeasure; };
ok(
($@ ne "") , 1,
"Opps fontMeasure works without args. Documented to require two"
);
eval { $mw->fontMeasure($fontname); };
ok(
($@ ne "") , 1,
"Opps fontMeasure works with one arg. Documented to require two"
);
my $num = undef;
eval { $num = $mw->fontMeasure($fontname, 'Hi'); };
ok(
($@ eq "") , 1,
"Opps fontMeasure works doesn't work with fixed font and a string: ".$@
);
ok(
defined($num) , 1,
"Opps fontMeasure returned undefined value"
);
ok(
($num > 2), 1,
"Opps fontMeasure claims string 'Hi' is only $num pixels wide."
);
my $l = $mw->Label(-font => $fontname);
my $name;
eval { $name = $l->cget('-font') };
ok(
"$name", $fontname,
"cget(-font) returns wrong value."
);
}
__END__
|