Tagging trunk at r29566 so that the revisionpm can later be synched to it.
[parrot.git] / t / configure / 059-silent.t
blob48c98357a4f776449582e568feb0f29d3bc1534c
1 #! perl
2 # Copyright (C) 2007, The Perl Foundation.
3 # $Id$
4 # 059-silent.t
6 use strict;
7 use warnings;
9 use Test::More tests => 12;
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 = process_options(
20     {
21         argv => [ q{--silent} ],
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" );
31 my $step        = q{init::gamma};
32 my $description = 'Determining if your computer does gamma';
34 $conf->add_steps($step);
35 my @confsteps = @{ $conf->steps };
36 isnt( scalar @confsteps, 0,
37     "Parrot::Configure object 'steps' key holds non-empty array reference" );
38 is( scalar @confsteps, 1, "Parrot::Configure object 'steps' key holds ref to 1-element array" );
39 my $nontaskcount = 0;
40 foreach my $k (@confsteps) {
41     $nontaskcount++ unless $k->isa("Parrot::Configure::Task");
43 is( $nontaskcount, 0, "Each step is a Parrot::Configure::Task object" );
44 is( $confsteps[0]->step, $step, "'step' element of Parrot::Configure::Task struct identified" );
45 ok( !ref( $confsteps[0]->object ),
46     "'object' element of Parrot::Configure::Task struct is not yet a ref" );
48 $conf->options->set(%args);
49 is( $conf->options->{c}->{debugging},
50     1, "command-line option '--debugging' has been stored in object" );
52 my $rv;
53 my ($stdout, $stderr);
54 capture ( sub { eval { $rv = $conf->runsteps; } }, \$stdout, \$stderr);
55 ok(! $stdout, "silent option worked");
56 like( $stderr,
57 qr/step $step died during execution: Dying gamma just to see what happens/,
58         "Got expected error message despite silent option");
60 pass("Completed all tests in $0");
62 ################### DOCUMENTATION ###################
64 =head1 NAME
66 060-silent.t - test what happens when the C<--silent> option is set
68 =head1 SYNOPSIS
70     % prove t/configure/059-silent.t
72 =head1 DESCRIPTION
74 The files in this directory test functionality used by F<Configure.pl>.
76 The tests in this file examine what happens when your configuration step dies
77 during execution but the C<--silent> option has been set.
79 =head1 AUTHOR
81 James E Keenan
83 =head1 SEE ALSO
85 Parrot::Configure, F<Configure.pl>.
87 =cut
89 # Local Variables:
90 #   mode: cperl
91 #   cperl-indent-level: 4
92 #   fill-column: 100
93 # End:
94 # vim: expandtab shiftwidth=4: