]> git.donarmstrong.com Git - term-progressbar.git/blob - t/v2-message.t
5b215be694b1e30950ae431cea3b94d4dffa07cb
[term-progressbar.git] / t / v2-message.t
1 # (X)Emacs mode: -*- cperl -*-
2
3 use strict;
4
5 =head1 Unit Test Package for Term::ProgressBar
6
7 This package tests the basic functionality of Term::ProgressBar.
8
9 =cut
10
11 use Data::Dumper 2.101 qw( Dumper );
12 use FindBin 1.42 qw( $Bin );
13 use Test 1.122 qw( ok plan );
14
15 use lib $Bin;
16 use test qw( evcheck );
17
18 use constant MESSAGE1 => 'Walking on the Milky Way';
19
20 use Capture::Tiny qw(capture);
21
22 BEGIN {
23   # 1 for compilation test,
24   plan tests  => 11,
25        todo   => [],
26 }
27
28 =head2 Test 1: compilation
29
30 This test confirms that the test script and the modules it calls compiled
31 successfully.
32
33 =cut
34
35 use Term::ProgressBar;
36
37 ok 1, 1, 'compilation';
38
39 Term::ProgressBar->__force_term (50);
40
41 # -------------------------------------
42
43 =head2 Tests 2--8: Count 1-10
44
45 Create a progress bar with 10 things.
46 Update it it from 1 to 10.  Output a message halfway through.
47
48 (1) Check no exception thrown on creation
49 (2) Check no exception thrown on update (1..5)
50 (3) Check no exception thrown on message send
51 (4) Check no exception thrown on update (6..10)
52 (5) Check message was issued.
53 (6) Check bar is complete
54 (7) Check bar number is 100%
55
56 =cut
57
58 my ($out, $err) = capture {
59   my $p;
60   ok (evcheck(sub { $p = Term::ProgressBar->new(10); }, 'Count 1-10 (1)' ),
61       1, 'Count 1-10 (1)');
62   ok (evcheck(sub { $p->update($_) for 1..5  }, 'Count 1-10 (2)' ),
63       1, 'Count 1-10 (2)');
64   ok (evcheck(sub { $p->message(MESSAGE1)    }, 'Count 1-10 (3)' ),
65       1, 'Count 1-10 (3)');
66   ok (evcheck(sub { $p->update($_) for 6..10 }, 'Count 1-10 (4)' ),
67       1, 'Count 1-10 (4)');
68 };
69 print $out;
70
71   $err =~ s!^.*\r!!gm;
72   print STDERR "ERR:\n$err\nlength: ", length($err), "\n"
73     if $ENV{TEST_DEBUG};
74
75   my @lines = split /\n/, $err;
76
77   ok $lines[0], MESSAGE1;
78   ok $lines[-1], qr/\[=+\]/,            'Count 1-10 (5)';
79   ok $lines[-1], qr/^\s*100%/,          'Count 1-10 (6)';
80
81 # -------------------------------------
82
83 =head2 Tests 9--11: Message Check
84
85 Run a progress bar from 0 to 100, each time calling a message after an update.
86 This is to check that message preserves the progress bar value correctly.
87
88 ( 1) Check no exception thrown on creation
89 ( 2) Check no exception thrown on update, message (0..100).
90 ( 3) Check last progress is 100%
91
92 =cut
93
94 ($out, $err) = capture {
95   my $p;
96   ok (evcheck(sub { $p = Term::ProgressBar->new(100); }, 'Message Check ( 1)'),
97       1,                                                 'Message Check ( 1)');
98   ok (evcheck(sub { for (0..100) { $p->update($_); $p->message("Hello") } },
99               'Message Check ( 2)',), 
100       1,                                                 'Message Check ( 2)');
101 };
102 print $out;
103
104   my @err_lines = split /\n/, $err;
105   (my $last_line = $err_lines[-1]) =~ tr/\r//d;
106   ok substr($last_line, 0, 4), '100%',               'Message Check ( 3)';
107
108 # ----------------------------------------------------------------------------