fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / configure / 043-verbose_step.t
blobb6e25c85aba329f6819338d390d900ce68d31c6c
1 #! perl
2 # Copyright (C) 2007, Parrot Foundation.
3 # $Id$
4 # 043-verbose_step.t
6 use strict;
7 use warnings;
9 use Test::More tests => 15;
10 use Carp;
11 use lib qw( lib t/configure/testlib );
12 use Parrot::Configure;
13 use Parrot::Configure::Options qw( process_options );
14 use IO::CaptureOutput qw | capture |;
16 $| = 1;
17 is( $|, 1, "output autoflush is set" );
19 my ($args, $step_list_ref) = process_options(
20     {
21         argv => [q{--verbose-step=init::beta}],
22         mode => q{configure},
23     }
25 ok( defined $args, "process_options returned successfully" );
26 my %args = %$args;
28 my $conf = Parrot::Configure->new;
29 ok( defined $conf, "Parrot::Configure->new() returned okay" );
30 my $serialized = $conf->pcfreeze();
32 my $step        = q{init::beta};
33 my $description = 'Determining if your computer does beta';
35 $conf->add_steps($step);
36 my @confsteps = @{ $conf->steps };
37 isnt( scalar @confsteps, 0,
38     "Parrot::Configure object 'steps' key holds non-empty array reference" );
39 is( scalar @confsteps, 1, "Parrot::Configure object 'steps' key holds ref to 1-element array" );
40 my $nontaskcount = 0;
41 foreach my $k (@confsteps) {
42     $nontaskcount++ unless $k->isa("Parrot::Configure::Task");
44 is( $nontaskcount, 0, "Each step is a Parrot::Configure::Task object" );
45 is( $confsteps[0]->step, $step, "'step' element of Parrot::Configure::Task struct identified" );
46 ok( !ref( $confsteps[0]->object ),
47     "'object' element of Parrot::Configure::Task struct is not yet a ref" );
49 $conf->options->set(%args);
50 is( $conf->options->{c}->{debugging},
51     1, "command-line option '--debugging' has been stored in object" );
54     my $rv;
55     my $stdout;
56     capture ( sub {$rv    = $conf->runsteps}, \$stdout );
57     ok( $rv, "runsteps successfully ran $step" );
58     like(
59         $stdout,
60         qr/$description\.\.\..*beta\sis\sverbose/s,
61         "Got message expected upon running $step"
62     );
65 $conf->replenish($serialized);
67 #####  designate multiple steps as --verbose-step; one of them bad #####
69 ($args, $step_list_ref) = process_options(
70     {
71         argv => [q{--verbose-step=alpha::beta,init::manifest}],
72         mode => q{configure},
73     }
75 %args =  %{ $args };
76 $conf->add_steps( @{ $step_list_ref } );
77 $conf->options->set(%args);
78 eval { $conf->runsteps(); };
79 like($@,
80     qr/Argument to verbose-step option must be comma-delimited.*?steps/,
81     "Got expected error message for bad value to --verbose-step"
84 $conf->replenish($serialized);
86 ##### designate one step as --verbose-step; valid step  #####
88 ($args, $step_list_ref) = process_options(
89     {
90         argv => [q{--verbose-step=init::mu}],
91         mode => q{configure},
92     }
94 %args =  %{ $args };
95 $step = q{init::mu};
96 $conf->add_steps( $step );
97 $conf->options->set(%args);
99     my $rv;
100     my ($stdout, $stderr);
101     capture ( sub {$rv    = $conf->runsteps}, \$stdout, \$stderr );
102     ok( $rv, "runsteps successfully ran $step" );
103     like($stdout, qr/^\s*init::mu.*done\.\s*$/s,
104         "As expected, description is only standard output");
107 pass("Completed all tests in $0");
109 ################### DOCUMENTATION ###################
111 =head1 NAME
113 043-verbose_step.t - test --verbose-step option to Configure.pl
115 =head1 SYNOPSIS
117     % prove t/configure/043-verbose_step.t
119 =head1 DESCRIPTION
121 The files in this directory test functionality used by F<Configure.pl>.
123 The tests in this file examine various cases involving the C<--verbose-step>
124 option to Configure.pl
126 =head1 AUTHOR
128 James E Keenan
130 =head1 SEE ALSO
132 Parrot::Configure, F<Configure.pl>.
134 =cut
136 # Local Variables:
137 #   mode: cperl
138 #   cperl-indent-level: 4
139 #   fill-column: 100
140 # End:
141 # vim: expandtab shiftwidth=4: