Commit | Line | Data |
46b277d5 |
1 | #!./perl -w |
3a9c887e |
2 | |
3 | # Some quick tests to see if h2xs actually runs and creates files as |
4 | # expected. File contents include date stamps and/or usernames |
5 | # hence are not checked. File existence is checked with -e though. |
6 | # This test depends on File::Path::rmtree() to clean up with. |
7 | # - pvhp |
3e6e4ea8 |
8 | # |
9 | # We are now checking that the correct use $version; is present in |
10 | # Makefile.PL and $module.pm |
3a9c887e |
11 | BEGIN { |
12 | chdir 't' if -d 't'; |
13 | @INC = '../lib'; |
14 | } |
15 | |
45ea237c |
16 | # use strict; # we are not really testing this |
3a9c887e |
17 | use File::Path; # for cleaning up with rmtree() |
46b277d5 |
18 | use Test; |
31022a5a |
19 | use File::Spec; |
3a9c887e |
20 | |
21 | my $extracted_program = '../utils/h2xs'; # unix, nt, ... |
22 | if ($^O eq 'VMS') { $extracted_program = '[-.utils]h2xs.com'; } |
45ea237c |
23 | if ($^O eq 'MacOS') { $extracted_program = '::utils:h2xs'; } |
3a9c887e |
24 | if (!(-e $extracted_program)) { |
25 | print "1..0 # Skip: $extracted_program was not built\n"; |
26 | exit 0; |
27 | } |
28 | # You might also wish to bail out if your perl platform does not |
29 | # do `$^X -e 'warn "Writing h2xst"' 2>&1`; duplicity. |
30 | |
31 | my $dupe = '2>&1'; # ok on unix, nt, VMS, ... |
32 | my $lib = '"-I../lib"'; # ok on unix, nt, The extra \" are for VMS |
33 | # The >&1 would create a file named &1 on MPW (STDERR && STDOUT are |
34 | # already merged). |
35 | if ($^O eq 'MacOS') { |
36 | $dupe = ''; |
45ea237c |
37 | $lib = '-x -I::lib:'; # -x overcomes MPW $Config{startperl} anomaly |
3a9c887e |
38 | } |
39 | # $name should differ from system header file names and must |
40 | # not already be found in the t/ subdirectory for perl. |
41 | my $name = 'h2xst'; |
46b277d5 |
42 | my $header = "$name.h"; |
3e6e4ea8 |
43 | my $thisversion = sprintf "%vd", $^V; |
3a9c887e |
44 | |
46b277d5 |
45 | my @tests = ( |
3e6e4ea8 |
46 | "-f -n $name", $], <<"EOXSFILES", |
47 | Defaulting to backwards compatibility with perl $thisversion |
48 | If you intend this module to be compatible with earlier perl versions, please |
49 | specify a minimum perl version with the -b option. |
50 | |
0a7c7f4f |
51 | Writing $name/ppport.h |
3a9c887e |
52 | Writing $name/$name.pm |
53 | Writing $name/$name.xs |
9a7df4f2 |
54 | Writing $name/fallback.c |
55 | Writing $name/fallback.xs |
3a9c887e |
56 | Writing $name/Makefile.PL |
57 | Writing $name/README |
58 | Writing $name/t/1.t |
59 | Writing $name/Changes |
60 | Writing $name/MANIFEST |
61 | EOXSFILES |
62 | |
3e6e4ea8 |
63 | "-f -n $name -b $thisversion", $], <<"EOXSFILES", |
0a7c7f4f |
64 | Writing $name/ppport.h |
3e6e4ea8 |
65 | Writing $name/$name.pm |
66 | Writing $name/$name.xs |
67 | Writing $name/fallback.c |
68 | Writing $name/fallback.xs |
69 | Writing $name/Makefile.PL |
70 | Writing $name/README |
71 | Writing $name/t/1.t |
72 | Writing $name/Changes |
73 | Writing $name/MANIFEST |
74 | EOXSFILES |
75 | |
76 | "-f -n $name -b 5.6.1", "5.006001", <<"EOXSFILES", |
0a7c7f4f |
77 | Writing $name/ppport.h |
3e6e4ea8 |
78 | Writing $name/$name.pm |
79 | Writing $name/$name.xs |
80 | Writing $name/fallback.c |
81 | Writing $name/fallback.xs |
82 | Writing $name/Makefile.PL |
83 | Writing $name/README |
84 | Writing $name/t/1.t |
85 | Writing $name/Changes |
86 | Writing $name/MANIFEST |
87 | EOXSFILES |
88 | |
89 | "-f -n $name -b 5.5.3", "5.00503", <<"EOXSFILES", |
0a7c7f4f |
90 | Writing $name/ppport.h |
3e6e4ea8 |
91 | Writing $name/$name.pm |
92 | Writing $name/$name.xs |
93 | Writing $name/fallback.c |
94 | Writing $name/fallback.xs |
95 | Writing $name/Makefile.PL |
96 | Writing $name/README |
97 | Writing $name/t/1.t |
98 | Writing $name/Changes |
99 | Writing $name/MANIFEST |
100 | EOXSFILES |
101 | |
102 | "\"-X\" -f -n $name -b $thisversion", $], <<"EONOXSFILES", |
3a9c887e |
103 | Writing $name/$name.pm |
104 | Writing $name/Makefile.PL |
105 | Writing $name/README |
106 | Writing $name/t/1.t |
107 | Writing $name/Changes |
108 | Writing $name/MANIFEST |
109 | EONOXSFILES |
110 | |
3e6e4ea8 |
111 | "-f -n $name $header -b $thisversion", $], <<"EOXSFILES", |
0a7c7f4f |
112 | Writing $name/ppport.h |
46b277d5 |
113 | Writing $name/$name.pm |
114 | Writing $name/$name.xs |
9a7df4f2 |
115 | Writing $name/fallback.c |
116 | Writing $name/fallback.xs |
46b277d5 |
117 | Writing $name/Makefile.PL |
118 | Writing $name/README |
119 | Writing $name/t/1.t |
120 | Writing $name/Changes |
121 | Writing $name/MANIFEST |
122 | EOXSFILES |
123 | ); |
124 | |
125 | my $total_tests = 3; # opening, closing and deleting the header file. |
3e6e4ea8 |
126 | for (my $i = $#tests; $i > 0; $i-=3) { |
46b277d5 |
127 | # 1 test for running it, 1 test for the expected result, and 1 for each file |
3e6e4ea8 |
128 | # plus 1 to open and 1 to check for the use in $name.pm and Makefile.PL |
46b277d5 |
129 | # use the () to force list context and hence count the number of matches. |
3e6e4ea8 |
130 | $total_tests += 6 + (() = $tests[$i] =~ /(Writing)/sg); |
46b277d5 |
131 | } |
132 | |
133 | plan tests => $total_tests; |
134 | |
135 | ok (open (HEADER, ">$header")); |
136 | print HEADER <<HEADER or die $!; |
137 | #define Camel 2 |
138 | #define Dromedary 1 |
139 | HEADER |
140 | ok (close (HEADER)); |
141 | |
3e6e4ea8 |
142 | while (my ($args, $version, $expectation) = splice @tests, 0, 3) { |
46b277d5 |
143 | # h2xs warns about what it is writing hence the (possibly unportable) |
144 | # 2>&1 dupe: |
145 | # does it run? |
146 | my $prog = "$^X $lib $extracted_program $args $dupe"; |
147 | @result = `$prog`; |
148 | ok ($?, 0, "running $prog"); |
149 | $result = join("",@result); |
150 | |
151 | # accomodate MPW # comment character prependage |
152 | if ($^O eq 'MacOS') { |
153 | $result =~ s/#\s*//gs; |
154 | } |
155 | |
156 | #print "# expectation is >$expectation<\n"; |
157 | #print "# result is >$result<\n"; |
158 | # Was the output the list of files that were expected? |
159 | ok ($result, $expectation, "running $prog"); |
160 | |
3e6e4ea8 |
161 | foreach ($expectation =~ /Writing\s+(\S+)/gm) { |
45ea237c |
162 | if ($^O eq 'MacOS') { |
46b277d5 |
163 | $_ = ':' . join(':',split(/\//,$_)); |
164 | $_ =~ s/$name:t:1.t/$name:t\/1.t/; # is this an h2xs bug? |
45ea237c |
165 | } |
46b277d5 |
166 | ok (-e $_, 1, "$_ missing"); |
167 | } |
3a9c887e |
168 | |
3e6e4ea8 |
169 | foreach my $leaf ("$name.pm", 'Makefile.PL') { |
31022a5a |
170 | my $file = File::Spec->catfile($name, $leaf); |
3e6e4ea8 |
171 | if (ok (open (FILE, $file), 1, "open $file")) { |
172 | my $match = qr/use $version;/; |
173 | my $found; |
174 | while (<FILE>) { |
175 | last if $found = /$match/; |
176 | } |
177 | ok ($found, 1, "looking for /$match/ in $file"); |
178 | close FILE or die "close $file: $!"; |
179 | } |
180 | } |
46b277d5 |
181 | # clean up |
182 | rmtree($name); |
183 | } |
3a9c887e |
184 | |
46b277d5 |
185 | ok (unlink ($header), 1, $!); |