fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / steps / auto / headers-01.t
blob57cd7092fc4bbc0af67d11059e8c4cdcebc2ee11
1 #! perl
2 # Copyright (C) 2007, Parrot Foundation.
3 # $Id$
4 # auto/headers-01.t
6 use strict;
7 use warnings;
8 use Test::More tests =>  20;
9 use Carp;
10 use lib qw( lib t/configure/testlib );
11 use_ok('config::auto::headers');
12 use Parrot::Configure;
13 use Parrot::Configure::Options qw( process_options );
14 use Parrot::Configure::Step::Test;
15 use Parrot::Configure::Test qw(
16     test_step_constructor_and_description
18 use IO::CaptureOutput qw | capture |;
20 ########## regular ##########
22 my ($args, $step_list_ref) = process_options(
23     {
24         argv => [ ],
25         mode => q{configure},
26     }
29 my $conf = Parrot::Configure::Step::Test->new;
30 $conf->include_config_results( $args );
31 my $serialized = $conf->pcfreeze();
33 my $pkg = q{auto::headers};
35 $conf->add_steps($pkg);
36 $conf->options->set( %{$args} );
37 my $step = test_step_constructor_and_description($conf);
39 my $ret = $step->runstep($conf);
40 ok( $ret, "runstep() returned true value" );
41 is($step->result(), q{}, "Result is empty string as expected");
43 $conf->replenish($serialized);
45 ########## --verbose ##########
47 ($args, $step_list_ref) = process_options(
48     {
49         argv => [ q{--verbose} ],
50         mode => q{configure},
51     }
54 $conf->add_steps($pkg);
55 $conf->options->set( %{$args} );
56 $step = test_step_constructor_and_description($conf);
58     my $rv;
59     my $stdout;
60     capture ( sub {$rv = $step->runstep($conf) }, \$stdout);
61     ok( $stdout, "verbose output captured" );
62     ok( $rv, "runstep() returned true value" );
63     is($step->result(), q{}, "Result is empty string as expected");
66 $conf->replenish($serialized);
68 ########## _set_from_Config(); _list_extra_headers() ##########
70 ($args, $step_list_ref) = process_options(
71     {
72         argv => [ ],
73         mode => q{configure},
74     }
77 $conf->add_steps($pkg);
78 $conf->options->set( %{$args} );
79 $step = test_step_constructor_and_description($conf);
81 auto::headers::_set_from_Config($conf);
82 ok(! $conf->data->get('i_niin'), "Mapping made correctly");
85     my $os = 'msys';
86     $conf->data->set( OSNAME_provisional => $os );
87     my %extra_headers =
88         map {$_, 1} auto::headers::_list_extra_headers($conf);
89     ok($extra_headers{'sysmman.h'}, "Special header set for $os");
90     ok($extra_headers{'netdb.h'}, "Special header set for $os");
94     my $os = 'MSWin32';
95     $conf->data->set( OSNAME_provisional => $os );
96     my %extra_headers =
97         map {$_, 1} auto::headers::_list_extra_headers($conf);
98     ok($extra_headers{'sal.h'}, "Special header set for $os");
101 pass("Completed all tests in $0");
103 ################### DOCUMENTATION ###################
105 =head1 NAME
107 auto/headers-01.t - test auto::headers
109 =head1 SYNOPSIS
111     % prove t/steps/auto/headers-01.t
113 =head1 DESCRIPTION
115 The files in this directory test functionality used by F<Configure.pl>.
117 The tests in this file test auto::headers.
119 =head1 AUTHOR
121 James E Keenan
123 =head1 SEE ALSO
125 config::auto::headers, F<Configure.pl>.
127 =cut
129 # Local Variables:
130 #   mode: cperl
131 #   cperl-indent-level: 4
132 #   fill-column: 100
133 # End:
134 # vim: expandtab shiftwidth=4: