File: Tempfile.t

package info (click to toggle)
bioperl 1.4-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 20,336 kB
  • ctags: 8,476
  • sloc: perl: 119,890; xml: 6,001; lisp: 121; makefile: 57
file content (76 lines) | stat: -rw-r--r-- 1,516 bytes parent folder | download
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
# -*-Perl-*-
## Bioperl Test Harness Script for Modules
## $Id: Tempfile.t,v 1.3 2002/07/08 14:42:28 jason Exp $

# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.t'

use strict;

BEGIN {
    # to handle systems with no installed Test module
    # we include the t dir (where a copy of Test.pm is located)
    # as a fallback
    eval { require Test; };
    if( $@ ) {
	use lib 't';
    }
    use Test;    
    plan tests => 8;
}

use Bio::Root::IO;

my $obj = new Bio::Root::IO(-verbose => 0);

ok defined($obj) && $obj->isa('Bio::Root::IO');

# doesn't work in perl 5.00405
my ($tfh,$tfile,$tdir,$val);
eval {
    ($tfh,$tfile) = $obj->tempfile();
    print $tfh ("test1"); 
    close($tfh);
    open(IN, $tfile) or die("cannot open $tfile");    
    $val = join("", <IN>) ;
    close IN;
    ok( -e $tfile );
    undef $obj;
};
if( $@ ) {
    ok(0);
} else { 
    ok( ! -e $tfile );
}

$obj = new Bio::Root::IO();

eval {
    ($tdir) = $obj->tempdir(CLEANUP=>1);
    ($tfh, $tfile) = $obj->tempfile(dir => $tdir);
    close $tfh;
    ok( -e $tfile );
    ok( -d $tdir );
    undef $obj;
};

if( $@ ) { ok(0); } 
else { ok( ! -e $tfile ); }

eval {
    $obj = new Bio::Root::IO(-verbose => 0);
    ($tfh, $tfile) = $obj->tempfile(UNLINK => 0);
    close $tfh;
    ok( -e $tfile ,1, "tempfile ($tfile) does not exist when it should");   
    undef $obj;
};

if( $@ ) { ok(0) }
else { ok( -e $tfile) }

unlink( $tfile);


1;