fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / configure / 047-inter.t
blobd37c1cab7e25c69ddf9b436d7d02b2b1a1904be4
1 #! perl
2 # Copyright (C) 2007, Parrot Foundation.
3 # $Id$
4 # 047-inter.t
6 use strict;
7 use warnings;
8 use Test::More tests => 14;
9 use Carp;
10 use lib qw( lib t/configure/testlib );
11 use Parrot::Configure;
12 use Parrot::Configure::Options qw( process_options );
13 use IO::CaptureOutput qw | capture |;
14 use Tie::Filehandle::Preempt::Stdin;
16 $| = 1;
17 is( $|, 1, "output autoflush is set" );
19 my ($args, $step_list_ref) = process_options(
20     {
21         argv => [ q{--ask} ],
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{inter::theta};
32 my $description = 'Determining if your computer does theta';
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 ( @prompts, $object );
53 @prompts = (q{n});
54 $object = tie *STDIN, 'Tie::Filehandle::Preempt::Stdin', @prompts;
55 can_ok( 'Tie::Filehandle::Preempt::Stdin', ('READLINE') );
56 isa_ok( $object, 'Tie::Filehandle::Preempt::Stdin' );
59     my $rv;
60     my $stdout;
61     capture ( sub {$rv    = $conf->runsteps}, \$stdout );
62     ok($rv, "runsteps() returned true value");
63     like(
64         $stdout,
65         qr/$description\.\.\./s,
66         "Got STDOUT message expected upon running $step");
69 pass("Completed all tests in $0");
71 ################### DOCUMENTATION ###################
73 =head1 NAME
75 047-inter.t - test Parrot::Configure::_run_this_step()
76 =head1 SYNOPSIS
78     % prove t/configure/047-inter.t
80 =head1 DESCRIPTION
82 The files in this directory test functionality used by F<Configure.pl>.
84 This file tests Parrot::Configure::_run_this_step() with regard to
85 configuration steps that prompt for user input.
88 =head1 AUTHOR
90 James E Keenan
92 =head1 SEE ALSO
94 Parrot::Configure, F<Configure.pl>.
96 =cut
98 # Local Variables:
99 #   mode: cperl
100 #   cperl-indent-level: 4
101 #   fill-column: 100
102 # End:
103 # vim: expandtab shiftwidth=4: