Puut... The TODO... Beck!
[p5sagit/p5-mst-13.2.git] / t / lib / 1_compile.t
CommitLineData
7200bc44 1#!./perl
2
3BEGIN {
8338e367 4 chdir '..' if -d '../pod' && -d '../t';
7200bc44 5 @INC = 'lib';
6}
7
8use strict;
9use warnings;
cdd2acaa 10use Config;
7200bc44 11
cdd2acaa 12my %Core_Modules;
4d0ed6f7 13my %Test;
cdd2acaa 14
656b9f42 15unless (open(MANIFEST, "MANIFEST")) {
16 die "$0: failed to open 'MANIFEST': $!\n";
17}
18
19sub add_by_name {
20 $Core_Modules{$_[0]}++;
21}
22
23while (<MANIFEST>) {
4d0ed6f7 24 if (m!^(lib)/(\S+?)\.pm\s!) {
25 # Collecting modules names from under ext/ would be
26 # rather painful since the mapping from filenames
27 # to module names is not 100%.
28 my ($dir, $module) = ($1, $2);
29 $module =~ s!/!::!g;
30 add_by_name($module);
31 } elsif (m!^(lib|ext)/(\S+?)(?:\.t|/test.pl)\s!) {
32 my ($dir, $test) = ($1, $2);
33 $test =~ s!(\w+)/\1$!$1! if $dir eq 'ext';
34 $test =~ s!/t/[^/]+$!!;
35 $test =~ s!/!::!g;
36 $Test{$test}++;
37 }
656b9f42 38}
39
40close(MANIFEST);
cdd2acaa 41
42# Delete stuff that can't be tested here.
43
656b9f42 44sub delete_by_name {
45 delete $Core_Modules{$_[0]};
46}
47
48sub has_extension {
49 $Config{extensions} =~ /\b$_[0]\b/i;
50}
51
52sub delete_unless_has_extension {
53 delete $Core_Modules{$_[0]} unless has_extension($_[0]);
cdd2acaa 54}
55
56foreach my $known_extension (split(' ', $Config{known_extensions})) {
656b9f42 57 delete_unless_has_extension($known_extension);
cdd2acaa 58}
59
60sub delete_by_prefix {
656b9f42 61 for my $match (grep { /^$_[0]/ } keys %Core_Modules) {
62 delete_by_name($match);
63 }
cdd2acaa 64}
65
656b9f42 66delete_by_name('CGI::Fast'); # won't load without FCGI
cdd2acaa 67
cdd2acaa 68delete_by_prefix('ExtUtils::MM_'); # ExtUtils::MakeMaker's domain
69
70delete_by_prefix('File::Spec::'); # File::Spec's domain
656b9f42 71add_by_name('File::Spec::Functions'); # put this back
cdd2acaa 72
04070b92 73delete_by_prefix('Attribute::Handlers');# we test this, and we have demos
74
ab05f9a3 75delete_by_prefix('Net::FTP::'); # Net::FTP is tested.
76
77# In this case we could rely on the fake Socket layer the libnet tests
78# use but frankly I think in this case we might as well let it be.
5655ed86 79delete_by_prefix('Net::') unless has_extension('Socket');
80
656b9f42 81sub using_feature {
82 my $use = "use$_[0]";
83 exists $Config{$use} &&
84 defined $Config{$use} &&
85 $Config{$use} eq 'define';
86}
87
88unless (using_feature('threads') && has_extension('Thread')) {
89 delete_by_name('Thread');
290a1446 90 delete_by_prefix('Thread::');
eba8ff18 91}
cdd2acaa 92
a0cb3900 93unless (has_extension('NDBM_File')) {
94 delete_by_name('Memoize::NDBM_File');
95}
96
3de3f243 97if (ord('A') == 193) {
c8b7969b 98 delete_by_prefix('Net::') unless eval { require Convert::EBCDIC };
3de3f243 99}
100
04070b92 101# Delete all modules which have their own tests.
102# This makes this test a lot faster.
4d0ed6f7 103foreach my $mod (sort keys %Test) {
104 delete_by_name($mod);
105}
6b40b044 106foreach my $mod (<DATA>) {
107 chomp $mod;
0d0c1411 108 print "### $mod has a test but is in DATA of $0\n" if exists $Test{$mod};
6b40b044 109 delete_by_name($mod);
110}
111
cdd2acaa 112# Okay, this is the list.
113
114my @Core_Modules = sort keys %Core_Modules;
7200bc44 115
116print "1..".@Core_Modules."\n";
117
118my $test_num = 1;
cdd2acaa 119
7200bc44 120foreach my $module (@Core_Modules) {
17bcccd5 121 print "$module compile failed\nnot " unless compile_module($module);
7200bc44 122 print "ok $test_num\n";
123 $test_num++;
124}
125
656b9f42 126# We do this as a separate process else we'll blow the hell
127# out of our namespace.
7200bc44 128sub compile_module {
656b9f42 129 my ($module) = $_[0];
7200bc44 130
1189d1e4 131 my $out = scalar `$^X "-Ilib" t/lib/compmod.pl $module`;
132 print "# $out";
133 return $out =~ /^ok/;
7200bc44 134}
6b40b044 135
20e80008 136# Add here modules that have their own test scripts and therefore
137# need not be test-compiled by 1_compile.t.
6b40b044 138__DATA__
6b40b044 139B::ShowLex
79319589 140CGI::Apache
141CGI::Carp
142CGI::Cookie
143CGI::Form
6b40b044 144CGI::Pretty
0d0c1411 145CGI::Push
79319589 146CGI::Switch
6b40b044 147CGI::Util
20e80008 148Carp::Heavy
6ae1853a 149CPAN::Nox
6b40b044 150Exporter::Heavy
20e80008 151ExtUtils::Constant
152ExtUtils::MakeMaker
6b40b044 153Filter::Util::Call
6b40b044 154GDBM_File
0e6c72d5 155I18N::LangTags::List
6b40b044 156IO::Dir
157IO::File
158IO::Handle
159IO::Pipe
160IO::Poll
161IO::Seekable
162IO::Select
163IO::Socket
164IO::Socket::INET
165IO::Socket::UNIX
6b40b044 166Locale::Constants
167Locale::Country
168Locale::Currency
169Locale::Language
6b40b044 170MIME::QuotedPrint
171Math::BigFloat
0e6c72d5 172Math::BigInt::Calc
0e6c72d5 173Memoize::AnyDBM_File
174Memoize::Expire
175Memoize::ExpireFile
176Memoize::ExpireTest
177Memoize::NDBM_File
178Memoize::SDBM_File
179Memoize::Storable
6b40b044 180NDBM_File
ab05f9a3 181Net::Config
182Net::FTP
183Net::Netrc
184Net::NNTP
185Net::SMTP
186Net::Time
6b40b044 187ODBM_File
6b40b044 188Pod::Checker
189Pod::Find
f56fdd80 190Pod::Html
fed96050 191Pod::LaTeX
f56fdd80 192Pod::Man
193Pod::ParseLink
fed96050 194Pod::ParseUtils
6b40b044 195Pod::Text
f56fdd80 196Pod::Text::Overstrike
197Pod::Text::Termcap
6b40b044 198Pod::Usage
199SDBM_File
200Safe
201Scalar::Util
6b40b044 202Sys::Syslog
0e6c72d5 203Test::More
6b40b044 204Test::ParseWords
6b40b044 205Text::Tabs
206Text::Wrap
207Thread
208Tie::Array
209Tie::Handle
210Tie::Hash
2857d2f7 211Time::tm
6b40b044 212UNIVERSAL
601f2d16 213attributes
6b40b044 214base
6b40b044 215ops
d99274ce 216warnings::register