File: tempfiles-1

package info (click to toggle)
libarch-perl 0.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 576 kB
  • ctags: 430
  • sloc: perl: 6,145; makefile: 31
file content (65 lines) | stat: -rwxr-xr-x 1,318 bytes parent folder | download | duplicates (5)
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
#!/usr/bin/perl -w

# The script tests Arch::TempFiles methods.

use FindBin;
use lib "$FindBin::Bin/../perllib";

use Test::More tests => 22;
use_ok("Arch::TempFiles", "temp_root", "temp_name");

delete $ENV{TMP_DIR};
temp_root("/tmp");
is(temp_root(), "/tmp");

# test 3
my $file_name1 = temp_name("test");
ok(!-e $file_name1);
like($file_name1, qr|/tmp/,,test-\d{6}|);

# test 5
$ENV{TMP_DIR} = "/tmp/../tmp";
my $file_name2 = temp_name("test");
isnt($file_name1, $file_name2);
ok(!-e $file_name2);
like($file_name2, qr|/tmp/,,test-\d{6}|);

# test 8
my $tmp = Arch::TempFiles->new;
my $root = $tmp->root;
is($root, "/tmp/../tmp");

# test 9
my $dir_name1 = $tmp->dir;
ok(-d $dir_name1);
like($dir_name1, qr|$root/,,arch-\d{6}|);

# test 11
$tmp->root($dir_name1);
my $dir_name2 = $tmp->dir_name("tip-top");
ok(!-d $dir_name2);
like($dir_name2, qr|$dir_name1/,,tip-top-\d{6}|);
ok(mkdir($dir_name2, 0777));

# test 14
my $file_name3 = $tmp->file_name();
like($file_name3, qr|$dir_name1/,,arch-\d{6}|);
ok(!-f $file_name3);

# test 16
undef $tmp;
ok(!-f $file_name3);
ok(!-d $dir_name2);
ok(!-d $dir_name1);

# test 19
$tmp = Arch::TempFiles->new;
is($tmp->root("/tmp"), "/tmp");
is($tmp->root, "/tmp");
my $file_name4 = $tmp->file(",,,");
like($file_name4, qr/,,,,,-/);

# test 22
undef $tmp;
ok(!-f $file_name4);