File: 02_2_basic_Stdout.t

package info (click to toggle)
libio-capture-perl 0.05-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 168 kB
  • ctags: 34
  • sloc: perl: 207; makefile: 44
file content (95 lines) | stat: -rw-r--r-- 2,883 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
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
# vim600: set syn=perl :
use strict;
use Test::More tests => 13;
BEGIN { use_ok('IO::Capture::Stdout') };

#Save initial values
my ($initial_stdout_dev, $initial_stdout_inum) = (stat(STDOUT))[0,1];
my ($initial_stderr_dev, $initial_stderr_inum) = (stat(STDERR))[0,1];
my $warn_save = $SIG{__WARN__}; 

#Test 2
ok (my $capture = IO::Capture::Stdout->new(), "Constructor Test");

#########################################################
# Start, put some data, Stop ############################
#########################################################

my $rv1 = $capture->start() || 0;
my $rv2;
if ($rv1) {
    print "Test Line One";
    print "Test Line Two";
    print "Test Line Three";
    print "Test Line Four";
    $rv2 = $capture->stop()  || 0;
}

#########################################################
# Check the results #####################################
#########################################################

#Test 3
ok ($rv1, "Start Method");

#Test 4
ok ($rv2, "Stop Method");

#Test 5
my $line1 = $capture->read();
my $results_line1 = $line1 eq "Test Line One";
ok ($results_line1, "Read Method, First Line");
diag "*"x60 . "\n1st line read was: $line1\n" . "*"x60 . "\n\n" unless $results_line1;

#Test 6
my $line2 = $capture->read();
my $results_line2 = $line2 eq "Test Line Two";
ok ($results_line2, "Read Method, Second Line");
diag "*"x60 . "\n2nd line read was: $line2\n" . "*"x60 . "\n\n" unless $results_line2;

#Test 7
my $line3 = $capture->read();
my $results_line3 = $line3 eq "Test Line Three";
ok ($results_line3, "Read Method, Third Line");
diag "*"x60 . "\n3rd line read was: $line3\n" . "*"x60 . "\n\n" unless $results_line3;


#Test 8
$capture->line_pointer(1);
my $new_line_pointer = $capture->line_pointer;
ok($new_line_pointer == 1, "Check set line_pointer");

#Test 9
my $line1_2 = $capture->read();
my $results_line1_2 = $line1_2 eq "Test Line One";
ok ($results_line1_2, "Read After line_pointer(), First Line");
diag "*"x60 . 
     "\nline read after line_pointer() was: $line1_2\n" . 
     "*"x60 . 
     "\n\n" 
     unless $results_line1_2;

#Test 10
my @lines_array = $capture->read;
ok(@lines_array == 4, "List Context Check");


#########################################################
# Check for untie #######################################
#########################################################

#Test 11
my $tie_check = tied *STDOUT;
ok(!$tie_check, "Untie Test");

#########################################################
# Check filehandles - STDOUT ############################
#########################################################

my ($ending_stdout_dev, $ending_stdout_inum) = (stat(STDOUT))[0,1];

#Test 12
ok ($initial_stdout_dev == $ending_stdout_dev, "Invariant Check - STDOUT filesystem dev number");

#Test 13
ok ($initial_stdout_inum == $ending_stdout_inum, "Invariant Check - STDOUT inode number");