fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / steps / init / hints-01.t
blob8783a229af5273213e3f70bb2434b467767098cb
1 #! perl
2 # Copyright (C) 2007, Parrot Foundation.
3 # $Id$
4 # init/hints-01.t
6 use strict;
7 use warnings;
8 use Test::More tests => 21;
9 use Carp;
10 use Cwd;
11 use File::Path ();
12 use File::Spec::Functions qw/catfile/;
13 use File::Temp qw(tempdir);
14 use lib qw( lib t/configure/testlib );
15 use_ok('config::init::hints');
16 use Parrot::Configure::Options qw( process_options );
17 use Parrot::Configure::Step::Test;
18 use Parrot::Configure::Test qw(
19     test_step_constructor_and_description
21 use IO::CaptureOutput qw | capture |;
23 ########## --verbose ##########
25 my ($args, $step_list_ref) = process_options(
26     {
27         argv => [q{--verbose}],
28         mode => q{configure},
29     }
32 my $conf = Parrot::Configure::Step::Test->new;
33 $conf->include_config_results( $args );
35 my $pkg = q{init::hints};
37 $conf->add_steps($pkg);
39 my $serialized = $conf->pcfreeze();
41 $conf->options->set( %{$args} );
42 my $step = test_step_constructor_and_description($conf);
44 # need to capture the --verbose output, because the fact that it does not end
45 # in a newline confuses Test::Harness
47     my $rv;
48     my $stdout;
49     capture ( sub {$rv = $step->runstep($conf)}, \$stdout);
50     ok( $stdout, "verbose output:  hints were captured" );
51     ok( defined $rv, "runstep() returned defined value" );
54 $conf->replenish($serialized);
56 ########## --verbose; local hints directory ##########
58 ($args, $step_list_ref) = process_options(
59     {
60         argv => [q{--verbose}],
61         mode => q{configure},
62     }
65 $conf->options->set( %{$args} );
66 $step = test_step_constructor_and_description($conf);
68 my $cwd = cwd();
70     my $tdir = tempdir( CLEANUP => 1 );
71     File::Path::mkpath(qq{$tdir/init/hints})
72         or croak "Unable to create directory for local hints";
73     my $localhints = qq{$tdir/init/hints/local.pm};
74     open my $FH, '>', $localhints
75         or croak "Unable to open temp file for writing";
76     print $FH <<END;
77 package init::hints::local;
78 use strict;
79 sub runstep {
80     return 1;
83 END
84     close $FH or croak "Unable to close temp file after writing";
85     unshift( @INC, $tdir );
87     {
88      my $rv;
89      my $stdout;
90      capture ( sub {$rv = $step->runstep($conf)}, \$stdout);
91      ok( $stdout, "verbose output:  hints were captured" );
92      ok( defined $rv, "runstep() returned defined value" );
93     }
94     unlink $localhints or croak "Unable to delete $localhints";
97 $conf->replenish($serialized);
99 ########## --verbose; local hints directory; no runstep() in local hints ##########
101 ($args, $step_list_ref) = process_options(
102     {
103         argv => [q{--verbose}],
104         mode => q{configure},
105     }
108 $conf->options->set( %{$args} );
109 $step = test_step_constructor_and_description($conf);
111 $cwd = cwd();
113     my $tdir = tempdir( CLEANUP => 1 );
114     File::Path::mkpath(qq{$tdir/init/hints})
115         or croak "Unable to create directory for local hints";
116     my $localhints = qq{$tdir/init/hints/local.pm};
117     open my $FH, '>', $localhints
118         or croak "Unable to open temp file for writing";
119     print $FH <<END;
120 package init::hints::local;
121 use strict;
124     close $FH or croak "Unable to close temp file after writing";
125     unshift( @INC, $tdir );
127     {
128      my $rv;
129      my $stdout;
130      capture ( sub {$rv = $step->runstep($conf)}, \$stdout);
131      ok( $stdout, "verbose output:  hints were captured" );
132      ok( defined $rv, "runstep() returned defined value" );
133     }
134     unlink $localhints or croak "Unable to delete $localhints";
137 $conf->replenish($serialized);
139 ########## --verbose; imaginary OS ##########
141 ($args, $step_list_ref) = process_options(
142     {
143         argv => [ q{--verbose} ],
144         mode => q{configure},
145     }
148 $conf->options->set( %{$args} );
149 $step = test_step_constructor_and_description($conf);
151     my ($stdout, $stderr, $ret);
152     $conf->data->set( OSNAME_provisional => q{imaginaryOS} );
153     my $osname = lc( $conf->data->get( 'OSNAME_provisional' ) );
154     my $hints_file = catfile('config', 'init', 'hints', "$osname.pm");
155     capture (
156         sub { $ret = $step->runstep($conf); },
157         \$stdout,
158         \$stderr,
159     );
160     like(
161         $stdout,
162         qr/No \Q$hints_file\E found/s,
163         "Got expected verbose output when no hints file found"
164     );
167 pass("Completed all tests in $0");
169 ################### DOCUMENTATION ###################
171 =head1 NAME
173 init/hints-01.t - test init::hints
175 =head1 SYNOPSIS
177     % prove t/steps/init/hints-01.t
179 =head1 DESCRIPTION
181 The files in this directory test functionality used by F<Configure.pl>.
183 The tests in this file test init::hints.
185 =head1 AUTHOR
187 James E Keenan
189 =head1 SEE ALSO
191 config::init::hints, F<Configure.pl>.
193 =cut
195 # Local Variables:
196 #   mode: cperl
197 #   cperl-indent-level: 4
198 #   fill-column: 100
199 # End:
200 # vim: expandtab shiftwidth=4: