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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
# -*-Perl-*- Test Harness script for Bioperl
# $Id: RootI.t 16090 2009-09-15 21:57:56Z cjfields $
use strict;
BEGIN {
use lib '.';
use Bio::Root::Test;
test_begin(-tests => 56);
use_ok('Bio::Root::Root');
use_ok('Bio::Seq');
}
ok my $obj = Bio::Root::Root->new();
isa_ok($obj, 'Bio::Root::RootI');
eval { $obj->throw('Testing throw') };
ok $@ =~ /Testing throw/;# 'throw failed';
# doesn't work in perl 5.00405
#my $val;
#eval {
# my ($tfh,$tfile) = $obj->tempfile();
# local * STDERR = $tfh;
# $obj->warn('Testing warn');
# close $tfh;
# open(IN, $tfile) or die("cannot open $tfile");
# $val = join("", <IN>) ;
# close IN;
# unlink $tfile;
#};
#ok $val =~ /Testing warn/;
#'verbose(0) warn did not work properly' . $val;
$obj->verbose(-1);
eval { $obj->throw('Testing throw') };
ok $@=~ /Testing throw/;# 'verbose(-1) throw did not work properly' . $@;
eval { $obj->warn('Testing warn') };
ok !$@;
$obj->verbose(1);
eval { $obj->throw('Testing throw') };
ok $@ =~ /Testing throw/;# 'verbose(1) throw did not work properly' . $@;
# doesn't work in perl 5.00405
#undef $val;
#eval {
# my ($tfh,$tfile) = $obj->tempfile();
# local * STDERR = $tfh;
# $obj->warn('Testing warn');
# close $tfh;
# open(IN, $tfile) or die("cannot open $tfile");
# $val = join("", <IN>);
# close IN;
# unlink $tfile;
#};
#ok $val =~ /Testing warn/;# 'verbose(1) warn did not work properly' . $val;
my @stack = $obj->stack_trace();
is scalar @stack, 2;
my $verbobj = Bio::Root::Root->new(-verbose=>1,-strict=>1);
is $verbobj->verbose(), 1;
$Bio::Root::Root::DEBUG = 1;
my $seq = Bio::Seq->new();
is $seq->verbose, 1;
# test for bug #1343
my @vals = Bio::Root::RootI->_rearrange([qw(apples pears)],
-apples => 'up the',
-pears => 'stairs');
eval { $obj->throw_not_implemented() };
ok $@ =~ /Bio::Root::NotImplemented/;
is shift @vals, 'up the';
is shift @vals, 'stairs';
# test deprecated()
# class method
warning_like{ Bio::Root::Root->deprecated('Test1') } qr/Test1/, 'simple';
warning_like{ Bio::Root::Root->deprecated(-message => 'Test2') } qr/Test2/, 'simple';
warning_like{ Bio::Root::Root->deprecated('Test3', 999.999) } qr/Test3/,
'warns for versions below current version '.$Bio::Root::Version::VERSION;
warning_like{ Bio::Root::Root->deprecated(-message => 'Test4',
-version => 999.999) } qr/Test4/,
'warns for versions below current version '.$Bio::Root::Version::VERSION;
throws_ok{ Bio::Root::Root->deprecated('Test5', 0.001) } qr/Test5/,
'throws for versions above '.$Bio::Root::Version::VERSION;
throws_ok{ Bio::Root::Root->deprecated(-message => 'Test6',
-version => 0.001) } qr/Test6/,
'throws for versions above '.$Bio::Root::Version::VERSION;
throws_ok{ Bio::Root::Root->deprecated(-message => 'Test6',
-version => $Bio::Root::Version::VERSION) } qr/Test6/,
'throws for versions equal to '.$Bio::Root::Version::VERSION;
# object method
my $root = Bio::Root::Root->new();
warning_like{ $root->deprecated('Test1') } qr/Test1/, 'simple';
warning_like{ $root->deprecated(-message => 'Test2') } qr/Test2/, 'simple';
warning_like{ $root->deprecated('Test3', 999.999) } qr/Test3/,
'warns for versions below current version '.$Bio::Root::Version::VERSION;
warning_like{ $root->deprecated(-message => 'Test4',
-version => 999.999) } qr/Test4/,
'warns for versions below current version '.$Bio::Root::Version::VERSION;
throws_ok{ $root->deprecated('Test5', 0.001) } qr/Test5/,
'throws for versions above '.$Bio::Root::Version::VERSION;
throws_ok{ $root->deprecated(-message => 'Test6',
-version => 0.001) } qr/Test6/,
'throws for versions above '.$Bio::Root::Version::VERSION;
# tests for _set_from_args()
# Let's not pollute Bio::Root::Root namespace if possible
# Create temp classes instead which inherit Bio::Root::Root, then test
package Bio::Foo1;
use base qw(Bio::Root::Root);
sub new {
my $class = shift;
my $self = {};
bless $self, ref($class) || $class;
$self->_set_from_args(\@_);
return $self;
};
package main;
$obj = Bio::Foo1->new(-verbose => 1, t1 => 1, '--Test-2' => 2);
#ok ! $obj->can('t1'), 'arg not callable';
package Bio::Foo2;
use base qw(Bio::Root::Root);
sub new {
my $class = shift;
my $self = {};
bless $self, ref($class) || $class;
$self->_set_from_args(\@_, -create => 1);
return $self;
};
package main;
$obj = Bio::Foo2->new(-verbose => 1, t3 => 1, '--Test-4' => 2);
ok $obj->can('t3'), 'arg callable since method was created';
ok $obj->can('test_4'), 'mal-formed arg callable since method was created with good name';
for my $m (qw(t3 test_4)) {
can_ok('Bio::Foo2',$m);
ok (!Bio::Root::Root->can($m), "Methods don't pollute original Bio::Root::Root namespace");
}
package Bio::Foo3;
use base qw(Bio::Root::Root);
sub new {
my $class = shift;
my $self = {};
bless $self, ref($class) || $class;
$self->_set_from_args(\@_, -methods => ['verbose', 't5'], -create => 1);
return $self;
};
package main;
$obj = Bio::Foo3->new(-verbose => 1, t5 => 1, '--Test-6' => 2);
can_ok($obj, 't5');
ok ! $obj->can('test_6'), 'arg not in method list not created';
can_ok ('Bio::Foo3','t5');
ok (!UNIVERSAL::can('Bio::Root::Root','t5'), "Methods don't pollute original Bio::Root::Root namespace");
package Bio::Foo4;
use base qw(Bio::Root::Root);
sub new {
my $class = shift;
my $self = {};
bless $self, ref($class) || $class;
my %args = @_;
$self->_set_from_args(\%args, -methods => {(verbose => 'v',
test7 => 't7',
test_8 => 't8')},
-create => 1);
return $self;
};
# with synonyms
package main;
$obj = Bio::Foo4->new(-verbose => 1, t7 => 1, '--Test-8' => 2);
is $obj->verbose, 1, 'verbose was set correctly';
is $obj->t7, 1, 'synonym was set correctly';
is $obj->test7, 1, 'real method of synonym was set correctly';
is $obj->test_8, 2, 'mal-formed arg correctly resolved to created method';
is $obj->t8, 2, 'synonym of set method was set correctly';
for my $m (qw(t7 test7 test_8 t8)) {
can_ok('Bio::Foo4',$m);
ok(!UNIVERSAL::can('Bio::Root::Root','t7'), "Methods don't pollute original Bio::Root::Root namespace");
}
# test deprecations using start_version
package Bio::Foo5;
use base qw(Bio::Root::Root);
our $v = $Bio::Root::Version::VERSION;
sub not_good {
my $self = shift;
$self->deprecated(-message => 'This is not good',
-warn_version => $v,
-throw_version => $v + 0.001);
}
sub not_good2 {
my $self = shift;
# note, due to _rearrange, ordering is throw version, then warn version
$self->deprecated('This is not good',$v + 0.001,$v);
}
sub really_not_good {
my $self = shift;
$self->deprecated(-message => 'This is really not good',
-warn_version => $v - 0.001,
-throw_version => $v,);
}
# version is the same as throw_version (and vice versa)
sub still_very_bad {
my $self = shift;
$self->deprecated(-message => 'This is still very bad',
-warn_version => $v - 0.001,
-version => $v);
}
sub okay_for_now {
my $self = shift;
$self->deprecated(-message => 'This is okay for now',
-warn_version => $v + 0.001,
-throw_version => $v + 0.002);
}
sub plain_incorrect {
my $self = shift;
$self->deprecated(-message => 'This is not going to work',
-warn_version => '1.2.3.4',
-throw_version => 'a.b.c.d');
}
package main;
my $foo = Bio::Foo5->new();
throws_ok { $foo->plain_incorrect } qr/Version must be numerical/,
'must use proper versioning scheme';
warning_like{ $foo->not_good } qr/This is not good/,
'warns for versions >= '.$Bio::Root::Version::VERSION;
# this tests the three-arg (non-named) form just to make sure it works, even
# though we probably won't support it
warning_like{ $foo->not_good2 } qr/This is not good/,
'warns for versions >= '.$Bio::Root::Version::VERSION;
throws_ok { $foo->really_not_good } qr/This is really not good/,
'throws for versions >= '.$Bio::Root::Version::VERSION;
throws_ok { $foo->still_very_bad } qr/This is still very bad/,
'throws for versions >= '.$Bio::Root::Version::VERSION;
lives_ok { $foo->okay_for_now } 'No warnings/exceptions below '.$Bio::Root::Version::VERSION;
|