Don't try to test Ambrosia - it requires mod_perl
[gitmo/Moose.git] / xt / author / test-my-dependents.t
CommitLineData
f81522ba 1use strict;
2use warnings;
3
4use Cwd qw( abs_path );
5use Test::More;
6
52c21688 7BEGIN {
a559205a 8 my $help = <<'EOF';
e0a39158 9This test will not run unless you set MOOSE_TEST_MD to a true value.
a559205a 10
a559205a 11 Valid values are:
12
a80872b2 13 all Test every dist which depends on Moose except those
14 that we know cannot be tested. This is a lot of
15 distros (thousands).
a559205a 16
a80872b2 17 Dist::1,Dist::2,... Test the individual dists listed.
a559205a 18
a80872b2 19 MooseX Test all Moose extension distros
20 (MooseX modules plus a few others).
21
22 1 Run the default tests. We pick 200 random dists and
23 test them.
a559205a 24
25EOF
26
27 plan skip_all => $help
52c21688 28 unless $ENV{MOOSE_TEST_MD};
29}
f81522ba 30
4d438a84 31use Test::Requires {
0be78be0 32 'Archive::Zip' => 0, # or else .zip dists won't be able to be installed
33 'Test::DependentModules' => '0.13',
34 'MetaCPAN::API' => '0.33',
4d438a84 35};
0be78be0 36
3bf21566 37use Test::DependentModules qw( test_module );
f81522ba 38
7028866a 39use DateTime;
479647ca 40use List::MoreUtils qw(any);
7028866a 41use Moose ();
7028866a 42
41a0b2a9 43diag( 'Test run performed at: '
44 . DateTime->now
479647ca 45 . ' with Moose '
afcee994 46 . (Moose->VERSION || 'git repo') );
7028866a 47
f81522ba 48$ENV{PERL_TEST_DM_LOG_DIR} = abs_path('.');
e2f01bb9 49delete @ENV{ qw( AUTHOR_TESTING RELEASE_TESTING SMOKE_TESTING ) };
f81522ba 50
28885fe7 51$ENV{ANY_MOOSE} = 'Moose';
52
479647ca 53my $mcpan = MetaCPAN::API->new;
54my $res = $mcpan->post(
55 '/release/_search' => {
56 query => { match_all => {} },
57 size => 5000,
58 filter => { and => [
59 { or => [
60 { term => { 'release.dependency.module' => 'Moose' } },
61 { term => { 'release.dependency.module' => 'Moose::Role' } },
62 { term => { 'release.dependency.module' => 'Moose::Exporter' } },
63 { term => { 'release.dependency.module' => 'Class::MOP' } },
64 { term => { 'release.dependency.module' => 'MooseX::Role::Parameterized' } },
28885fe7 65 { term => { 'release.dependency.module' => 'Any::Moose' } },
479647ca 66 ] },
67 { term => { 'release.status' => 'latest' } },
68 { term => { 'release.maturity' => 'released' } },
69 ] },
70 fields => 'distribution'
71 }
72);
f81522ba 73
479647ca 74my @skip_prefix = qw(Acme Task Bundle);
afcee994 75my %skip;
76my %todo;
77
78my $hash;
79for my $line (<DATA>) {
80 chomp $line;
81 next unless $line =~ /\S/;
82 if ( $line =~ /^# (\w+)/ ) {
83 die "Invalid action in DATA section ($1)"
84 unless $1 eq 'SKIP' || $1 eq 'TODO';
85 $hash = $1 eq 'SKIP' ? \%skip : \%todo;
86 }
87
88 my ( $dist, $reason ) = $line =~ /^(\S*)\s*(?:#\s*(.*)\s*)?$/;
89 next unless defined $dist && length $dist;
90
91 $hash->{$dist} = $reason;
92}
91dab191 93
479647ca 94my %name_fix = (
b595f862 95 'App-passmanager' => 'App::PassManager',
479647ca 96 'App-PipeFilter' => 'App::PipeFilter::Generic',
97 'Constructible' => 'Constructible::Maxima',
98 'DCOLLINS-ANN-Locals' => 'DCOLLINS::ANN::Robot',
99 'Dist-Zilla-Deb' => 'Dist::Zilla::Plugin::Deb::VersionFromChangelog',
479647ca 100 'Dist-Zilla-Plugins-CJM' => 'Dist::Zilla::Plugin::TemplateCJM',
72dc4616 101 'Dist-Zilla-Plugin-TemplateFile' => 'Dist::Zilla::Plugin::TemplateFiles',
b595f862 102 'Google-Directions' => 'Google::Directions::Client',
479647ca 103 'helm' => 'Helm',
b595f862 104 'HTML-Untemplate' => 'HTML::Linear',
479647ca 105 'marc-moose' => 'MARC::Moose',
106 'mobirc' => 'App::Mobirc',
72dc4616 107 'OWL-Simple' => 'OWL::Simple::Class',
108 'Patterns-ChainOfResponsibility' => 'Patterns::ChainOfResponsibility::Application',
4de6e6a5 109 'Pod-Elemental-Transfomer-VimHTML' => 'Pod::Elemental::Transformer::VimHTML',
72dc4616 110 'Role-Identifiable' => 'Role::Identifiable::HasIdent',
479647ca 111 'smokebrew' => 'App::SmokeBrew',
b595f862 112 'Treex-Parser-MSTperl' => 'Treex::Tool::Parser::MSTperl',
479647ca 113 'v6-alpha' => 'v6',
b595f862 114 'WebService-LOC-CongRec' => 'WebService::LOC::CongRec::Crawler',
72dc4616 115 'X11-XCB' => 'X11::XCB::Connection',
116 'XML-Ant-BuildFile' => 'XML::Ant::BuildFile::Project',
479647ca 117);
916fcb5c 118
9fe055d9 119my @dists = sort
120 grep { !$skip{$_} }
121 grep { my $dist = $_; !any { $dist =~ /^$_-/ } @skip_prefix }
122 map { $_->{fields}{distribution} }
123 @{ $res->{hits}{hits} };
479647ca 124
a559205a 125if ( $ENV{MOOSE_TEST_MD} eq 'MooseX' ) {
e47c8833 126 @dists = grep {
127 /^(?:MooseX-|(?:Fey-ORM|KiokuDB|Bread-Board|Catalyst-Runtime|Reflex)$)/
128 } @dists;
a559205a 129}
a80872b2 130elsif ( $ENV{MOOSE_TEST_MD} eq '1' ) {
916fcb5c 131 diag(
33012ea9 132 <<'EOF'
133 Picking 200 random dependents to test. Set MOOSE_TEST_MD=all to test all
134 dependents or MOOSE_TEST_MD=MooseX to test extension modules only.
135EOF
916fcb5c 136 );
137
138 my %indexes;
139 while ( keys %indexes < 200 ) {
140 $indexes{ int rand( scalar @dists ) } = 1;
141 }
142
143 @dists = @dists[ sort keys %indexes ];
144}
a80872b2 145elsif ( $ENV{MOOSE_TEST_MD} ne 'all' ) {
146 my @chosen = split /,/, $ENV{MOOSE_TEST_MD};
147 my %dists = map { $_ => 1 } @dists;
148 if (my @unknown = grep { !$dists{$_} } @chosen) {
149 die "Unknown dists: @unknown";
150 }
151 @dists = @chosen;
152}
916fcb5c 153
23b59110 154plan tests => scalar @dists;
9fe055d9 155for my $dist (@dists) {
156 note($dist);
157 my $module = $dist;
158 $module = $name_fix{$module} if exists $name_fix{$module};
159 if ($todo{$dist}) {
afcee994 160 my $reason = $todo{$dist};
3bf21566 161 $reason = '???' unless defined $reason;
7e39015e 162 local $TODO = $reason;
163 eval { test_module($module); 1 }
164 or fail("Died when testing $module: $@");
3bf21566 165 }
166 else {
7e39015e 167 eval { test_module($module); 1 }
168 or fail("Died when testing $module: $@");
3bf21566 169 }
170}
734e40ed 171
c5e3151e 172__DATA__
afcee994 173# SKIP: indexing issues (test::dm bugs?)
0aff3f28 174Alice # couldn't find on cpan
b595f862 175Hopkins # couldn't find on cpan
b595f862 176PostScript-Barcode # couldn't find on cpan
d1dc6007 177WWW-Mechanize-Query # couldn't find on cpan
b595f862 178
afcee994 179# SKIP: doesn't install deps properly (test::dm bugs?)
0aff3f28 180App-Benchmark-Accessors # Mojo::Base isn't installed
181Bot-BasicBot-Pluggable # Crypt::SaltedHash isn't installed
182Code-Statistics # MooseX::HasDefaults::RO isn't installed
183Dist-Zilla-PluginBundle-MITHALDU # List::AllUtils isn't installed
184Dist-Zilla-Util-FileGenerator # MooseX::HasDefaults::RO isn't installed
185EBI-FGPT-FuzzyRecogniser # GO::Parser isn't installed
186Erlang-Parser # Parse::Yapp::Driver isn't installed
187Foorum # Sphinx::Search isn't installed
188Grimlock # DBIx::Class::EncodedColumn isn't installed
189Locale-Handle-Pluggable # MooseX::Types::VariantTable::Declare isn't installed
190mobirc # HTTP::Session::State::GUID isn't installed
191Net-Bamboo # XML::Tidy isn't installed
192Tatsumaki-Template-Markapl # Tatsumaki::Template isn't installed
193Text-Tradition # Bio::Phylo::IO isn't installed
c62b4642 194WebService-Strava # Any::URI::Escape isn't installed
ec58481b 195
afcee994 196# SKIP: no tests
72dc4616 197AI-ExpertSystem-Advanced # no tests
198API-Assembla # no tests
199App-mkfeyorm # no tests
acf165ea 200App-passmanager # no tests
0aff3f28 201App-Scrobble # no tests
72dc4616 202Bot-Applebot # no tests
203Catalyst-Authentication-Credential-Facebook-OAuth2 # no tests
204Catalyst-Authentication-Store-Fey-ORM # no tests
205Catalyst-Controller-MovableType # no tests
206Catalyst-Model-MenuGrinder # no tests
207Chef # no tests
208Data-SearchEngine-ElasticSearch # no tests
209Dist-Zilla-MintingProfile-Author-ARODLAND # no tests
210Dist-Zilla-PluginBundle-ARODLAND # no tests
211Dist-Zilla-PluginBundle-Author-OLIVER # no tests
212Dist-Zilla-PluginBundle-NUFFIN # no tests
213Dist-Zilla-Plugin-DualLife # no tests
a841b7e1 214Dist-Zilla-Plugin-Git-Describe # no tests
72dc4616 215Dist-Zilla-Plugin-GitFlow # no tests
216Dist-Zilla-Plugin-GitFmtChanges # no tests
217Dist-Zilla-Plugin-MetaResourcesFromGit # no tests
218Dist-Zilla-Plugin-ModuleBuild-OptionalXS # no tests
219Dist-Zilla-Plugin-Rsync # no tests
220Dist-Zilla-Plugin-TemplateFile # no tests
221Dist-Zilla-Plugin-UploadToDuckPAN # no tests
222Finance-Bank-SuomenVerkkomaksut # no tests
223Games-HotPotato # no tests
224IO-Storm # no tests
225JIRA-Client-REST # no tests
226Kafka-Client # no tests
227LWP-UserAgent-OfflineCache # no tests
228Markdown-Pod # no tests
229MooseX-Types-DateTimeX # no tests
b8e5ce4a 230MooseX-Types-DateTime-MoreCoercions # no tests unless DateTime::Format::DateManip is installed
0aff3f28 231Net-Azure-BlobService # no tests
72dc4616 232Net-Dropbox # no tests
233Net-Flowdock # no tests
234Net-OpenStack-Attack # no tests
235Net-Ostrich # no tests
236Net-Recurly # no tests
237OpenDocument-Template # no tests
0aff3f28 238Pod-Weaver-Section-Consumes # no tests
72dc4616 239Pod-Weaver-Section-Encoding # no tests
0aff3f28 240Pod-Weaver-Section-Extends # no tests
0729e229 241P50Tools # no tests
72dc4616 242POE-Component-Server-MySQL # no tests
243Random-Quantum # no tests
244SchemaEvolution # no tests
245STD # no tests
246Test-System # no tests
247Test-WWW-Mechanize-Dancer # no tests
248WebService-Buxfer # no tests
249WebService-CloudFlare-Host # no tests
250WWW-MenuGrinder # no tests
251WWW-WuFoo # no tests
252
afcee994 253# SKIP: external dependencies
dfa11004 254Alien-Ditaa # runs java code
f7f16f9b 255Ambrosia # required mod_perl
b8e5ce4a 256AnyEvent-MSN # requires Net::SSLeay (which requires libssl)
2ec35f55 257AnyEvent-Multilog # requires multilog
258AnyEvent-Net-Curl-Queued # requires libcurl
72dc4616 259AnyEvent-ZeroMQ # requires zeromq installation
260AnyMQ-ZeroMQ # requires zeromq installation
261Apache2-HttpEquiv # requires apache (for mod_perl)
262App-Mimosa # requires fastacmd
263App-PgCryobit # requires postgres installation
67ede39e 264App-SimplenoteSync # requires File::ExtAttr which requires libattr
72dc4616 265Archive-RPM # requires cpio
2ec35f55 266Bot-Jabbot # requires libidn
72dc4616 267Catalyst-Engine-Stomp # depends on alien::activemq
b5937bb0 268Catalyst-Plugin-Session-Store-Memcached # requires memcached
72dc4616 269Cave-Wrapper # requires cave to be installed
270CHI-Driver-Redis # requires redis server
271Crypt-Random-Source-Strong-Win32 # windows only
2ec35f55 272Curses-Toolkit # requires Curses which requires ncurses library
72dc4616 273Dackup # requires ssh
274Data-Collector # requires ssh
a841b7e1 275Data-Riak # requires riak
72dc4616 276DBIx-PgLink # requires postgres installation
277Dist-Zilla-Plugin-Subversion # requires svn bindings
278Dist-Zilla-Plugin-SVK # requires svn bindings
279Dist-Zilla-Plugin-SvnObtain # requires svn bindings
280Fedora-App-MaintainerTools # requires rpm to be installed
281Fedora-App-ReviewTool # requires koji to be installed
2ec35f55 282Fuse-Template # requires libfuse
72dc4616 283Games-HotPotato # requires sdl
284Games-Tetris-Complete # requires threads
285helm # requires ssh
286HTML-Barcode-QRCode # requires libqrencode
2ec35f55 287IRC-RemoteControl # requires libssh2
72dc4616 288JavaScript-Sprockets # requires sprocketize
289JavaScript-V8x-TestMoreish # requires v8
290Koha-Contrib-Tamil # requires yaz
291K # requires kx
292Lighttpd-Control # requires lighttpd
293Lingua-TreeTagger # requires treetagger to be installed
294Math-Lsoda # requires f77
3a1f4e3f 295Message-Passing-ZeroMQ # requires zeromq installation
72dc4616 296MongoDBI # requires mongo
297MongoDB # requires mongo
298MSWord-ToHTML # requires abiword to be installed
2ec35f55 299Net-DBus-Skype # requires dbus
72dc4616 300Net-Route # requires route
afcee994 301Net-SFTP-Foreign-Exceptional # depends on running ssh
2ec35f55 302Net-UpYun # requires curl
303Net-ZooTool # requires curl
72dc4616 304Nginx-Control # requires nginx to be installed
305NLP-Service # requires javac
7e511a8c 306Padre-Plugin-Cookbook # requires Wx
72dc4616 307Padre-Plugin-Moose # requires threaded perl
308Padre-Plugin-PDL # requires threaded perl
309Padre-Plugin-Snippet # requires threaded perl
310Paludis-UseCleaner # depends on cave::wrapper
311Perlanet # HTML::Tidy requires tidyp
312Perl-Dist-Strawberry-BuildPerl-5123 # windows only
313Perl-Dist-Strawberry-BuildPerl-5123 # windows only
314Perl-Dist-WiX-BuildPerl-5123 # windows only
315Perl-Dist-WiX # windows only
316Perl-Dist-WiX # windows only
317POE-Component-OpenSSH # requires ssh
318RDF-TrineX-RuleEngine-Jena # requires Jena
319SimpleDB-Class # requires memcached
320SVN-Simple-Hook # requires svn
321SVN-Tree # requires svn
67ede39e 322Tapper-MCP # depends on everything under the sun - some of which is broken
72dc4616 323Template-JavaScript # requires v8
2ec35f55 324TheSchwartz-Moosified # requires DBI::Pg ?
325WebService-SendGrid # requires curl
326WebService-Tesco-API # requires curl
cdb8d8b2 327WWW-Contact # depends on curl
2ec35f55 328WWW-Curl-Simple # requires curl
72dc4616 329ZeroMQ-PubSub # requires zmq
330ZMQ-Declare # requires zmq
331
afcee994 332# SKIP: flaky internet tests
6539278a 333iTransact-Lite # tests rely on internet site
72cfef4f 334Unicode-Emoji-E4U # tests rely on internet site
335WWW-eNom # tests rely on internet site
0aff3f28 336WWW-Finances-Bovespa # tests rely on internet site
337WWW-Vimeo-Download # tests rely on internet site
72cfef4f 338WWW-YouTube-Download-Channel # tests rely on internet site
0aff3f28 339
afcee994 340# SKIP: graphical
72dc4616 341App-CPAN2Pkg # tk tests are graphical
342App-USBKeyCopyCon # gtk tests are graphical
343CatalystX-Restarter-GTK # gtk tests are graphical
344Forest-Tree-Viewer-Gtk2 # gtk tests are graphical
345Games-Pandemic # tk tests are graphical
346Games-RailRoad # tk tests are graphical
347Games-Risk # tk tests are graphical
348Log-Dispatch-Gtk2-Notify # gtk tests are graphical
349LPDS # gtk tests are graphical
350Periscope # gtk tests are graphical
351Tk-Role-Dialog # tk tests are graphical
352Weaving-Tablet # tk tests are graphical
479647ca 353
afcee994 354# SKIP: prompts (or a dep prompts) or does something else dumb
355Bot-Backbone # poe-loop-ev prompts
356Cache-Ehcache # hangs if server exists on port 8080
357CM-Permutation # OpenGL uses graphics in Makefile.PL
358Date-Biorhythm # Date::Business prompts in Makefile.PL
2282de12 359DBIx-VersionedDDL # runs a script with /usr/bin/perl in the shbang line
360File-Tail-Scribe # tests hang
afcee994 361Gearman-Driver # spews tar errors
50589f30 362Gearman-SlotManager # tests hang
4a7b93bf 363IPC-AnyEvent-Gearman # tests hang
a841b7e1 364Lingua-YALI # runs scripts with /usr/bin/env perl in the shbang line
afcee994 365Net-SSH-Mechanize # the mock-ssh script it runs seems to spin endlessly
726ade9b 366POE-Component-Server-SimpleHTTP-PreFork # tests hang
afcee994 367WWW-Hashdb # test hangs, pegging cpu
368Zucchini # File::Rsync prompts in Makefile.PL
2282de12 369
afcee994 370# TODO: failing for a reason
8f655ca2 371Algorithm-KernelKMeans # mx-types-common changes broke it
72dc4616 372AnyEvent-BitTorrent # broken
373AnyEvent-Cron # intermittent failures
8f655ca2 374AnyEvent-Inotify-Simple # ??? (maybe issue with test::sweet)
375AnyEvent-JSONRPC # tests require recommended deps
376AnyEvent-Retry # mx-types-common changes broke it
72dc4616 377AnyMongo # doesn't compile
378App-ArchiveDevelCover # depends on nonexistent testdata::setup
8f655ca2 379App-Dataninja # bad M::I install in inc/
ec58481b 380App-Fotagger # Imager doesn't compile
8f655ca2 381App-Magpie # deps on URPM which doesn't exist
72dc4616 382App-MediaWiki2Git # git::repository is broken
383App-Munchies # depends on XML::DTD
8f655ca2 384App-TemplateServer # broken use of types
385App-TemplateServer-Provider-HTML-Template # dep on app-templateserver
386App-TemplateServer-Provider-Mason # dep on app-templateserver
387App-TemplateServer-Provider-TD # dep on app-templateserver
72dc4616 388App-Twimap # dep on Web::oEmbed::Common
389App-Validation-Automation # dep on Switch
390App-Wubot # broken
391Beagle # depends on term::readline::perl
8f655ca2 392Cache-Profile # broken
8f655ca2 393Catalyst-Authentication-Store-LDAP-AD-Class # pod coverage fail
8f655ca2 394Catalyst-Controller-Resources # broken
72dc4616 395Catalyst-Controller-SOAP # broken
e8ba9394 396Catalyst-Model-Sedna # deps on Alien-Sedna which doesn't exist
397Catalyst-Plugin-Continuation # undeclared dep
72dc4616 398Catalyst-Plugin-Session-State-Cookie # broken
399Catalyst-Plugin-Session-Store-TestMemcached # dep with corrupt archive
e8ba9394 400Catalyst-Plugin-SwiffUploaderCookieHack # undeclared dep
72dc4616 401Catalyst-TraitFor-Request-PerLanguageDomains # dep on ::State::Cookie
cfac852c 402CatalystX-ExtJS-Direct # broken
72dc4616 403CatalystX-I18N # dep on ::State::Cookie
e8ba9394 404CatalystX-MooseComponent # broken
e8ba9394 405CatalystX-SimpleLogin # broken
406CatalystX-Usul # proc::processtable doesn't load
e8ba9394 407Cheater # parse::randgen is broken
408Class-OWL # uses CMOP::Class without loading cmop
409Cogwheel # uses ancient moose apis
0aff3f28 410Config-Model # broken
411Config-Model-Backend-Augeas # deps on Config::Model
412Config-Model-OpenSsh # deps on Config::Model
e8ba9394 413Constructible # GD::SVG is a broken dist
72dc4616 414Constructible-Maxima # GD::SVG is a broken dist
e8ba9394 415Coro-Amazon-SimpleDB # amazon::simpledb::client doesn't exist
4513d67e 416CPAN-Digger # requires DBD::SQLite
72dc4616 417Data-AMF # missing dep on YAML
cf9832d2 418Data-Apache-mod_status # invalid characters in type name
72dc4616 419Data-Edit # dist is missing some modules
b595f862 420Data-Feed # broken (only sometimes?)
cf9832d2 421Data-PackageName # broken
422Data-Pipeline # uses ancient moose apis
72dc4616 423Data-SCORM # pod coverage fail
cf9832d2 424DayDayUp # MojoX-Fixup-XHTML doesn't exist
ec58481b 425DBICx-Modeler-Generator # broken (weirdly)
ec58481b 426DBIx-SchemaChecksum # broken
427Debian-Apt-PM # configure time failures
cf9832d2 428Devel-Events # broken (role conflict)
72dc4616 429Dist-Zilla-Deb # pod coverage fail
430Dist-Zilla-Plugin-ChangelogFromGit-Debian # git::repository is broken
24871830 431Dist-Zilla-Plugin-CheckChangesHasContent # broken
3b1a1b22 432Dist-Zilla-Plugin-Git # tests fail when run in a temp dir
43dff819 433Dist-Zilla-Plugin-PerlTidy # expects to find dzil in the path
cc519dbb 434Dist-Zilla-Plugin-Pinto-Add # deps on Pinto::Common
9acdcfbb 435Dist-Zilla-Plugin-ProgCriticTests # broken
24871830 436Dist-Zilla-Plugin-Test-ReportPrereqs # broken
9acdcfbb 437DustyDB # uses old moose apis
72dc4616 438Dwimmer # broken
72dc4616 439Facebook-Graph # broken
726ade9b 440FCGI-Engine # runs scripts without using $^X
72dc4616 441Fedora-Bugzilla # deps on nonexistent things
ec58481b 442FFmpeg-Thumbnail # undeclared dep
9acdcfbb 443File-DataClass # XML::DTD is a broken dist
72dc4616 444File-Stat-Moose # old moose apis
4de6e6a5 445File-Tail-Dir # intermittent fails (i think)
9acdcfbb 446Form-Factory # uses old moose apis
726ade9b 447Form-Sensible # broken
72dc4616 448FormValidator-Nested # broken
9acdcfbb 449Frost # broken
d1dc6007 450Games-Dice-Loaded # flaky tests
451Gitalist # broken
ec58481b 452GOBO # coerce with no coercion
72dc4616 453Google-Chart # recreating type constraints
9acdcfbb 454Google-Spreadsheet-Agent # pod::coverage fail
9acdcfbb 455Hobocamp # configure_requires needs EU::CChecker
456Horris # App::Horris isn't on cpan
72dc4616 457HTML-Grabber # pod::coverage fail
ec58481b 458HTML-TreeBuilderX-ASP_NET # broken
72dc4616 459HTTP-Engine-Middleware # missing dep on yaml
460Image-Robohash # Graphics::Magick doesn't exist
9acdcfbb 461JavaScript-Framework-jQuery # coerce with no coercion
c62e19f4 462Jenkins-NotificationListener # missing dep on File::Read
72dc4616 463Jifty # Test::WWW::Selenium needs devel::repl
464JSORB # broken
9acdcfbb 465Jungle # broken
466Kamaitachi # pod::coverage fail
467KiokuDB-Backend-Files # broken
b5937bb0 468LaTeX-TikZ # broken (with moose)
0aff3f28 469marc-moose # broken (only sometimes?)
9acdcfbb 470Mail-Summary-Tools # DT::Format::DateManip is broken
471MediaWiki-USERINFO # broken
21f9bca6 472Metabase-Backend-MongoDB # broken
a31ce80a 473Metabase-Backend-SQL # broken (I think)
0aff3f28 474Method-Signatures # doesn't like ANY_MOOSE=Moose
ec58481b 475mobirc # http::engine broken
9acdcfbb 476MooseX-Attribute-Prototype # uses old moose apis
477MooseX-DBIC-Scaffold # needs unreleased sql-translator
9acdcfbb 478MooseX-Documenter # broken
ec58481b 479MooseX-DOM # "no Moose" unimports confess
9acdcfbb 480MooseX-Error-Exception-Class # metaclass compat breakage
72dc4616 481MooseX-Getopt-Usage # missing dep on Test::Class
3b1a1b22 482MooseX-GTIN # broken (under jenkins, at least)
9acdcfbb 483MooseX-Meta-Attribute-Index # old moose apis
484MooseX-Meta-Attribute-Lvalue # old moose apis
67ede39e 485MooseX-Role-XMLRPC-Client # requires LWP::Protocol::http which requires libssl
bab36045 486MooseX-Scaffold # broken
9acdcfbb 487MooseX-Struct # ancient moose apis
72dc4616 488MooseX-Types-Parameterizable # broken
106c1020 489MooseX-WithCache # broken
b5937bb0 490MouseX-Types # broken (with moose)
72dc4616 491MySQL-Util # pod-coverage fail
492Nagios-Passive # broken
b5937bb0 493Net-APNS # broken (with moose)
9acdcfbb 494Net-FluidDB # broken
495Net-Fluidinfo # broken
72dc4616 496Net-Google-Blogger # broken
497Net-Google-FederatedLogin # broken
ec58481b 498NetHack-Item # NH::Monster::Spoiler is broken
499NetHack-Monster-Spoiler # broken (MX::CA issues)
9acdcfbb 500Net-HTTP-Factual # broken
67ede39e 501Net-Jabber-Bot # broken
9acdcfbb 502Net-Journyx # broken
72dc4616 503Net-Mollom # broken
9acdcfbb 504Net-Parliament # broken
505Net-Plurk # broken
2ec35f55 506Net-SSLeay-OO # broken
9acdcfbb 507Net-StackExchange # broken
c62b4642 508Norma # fails when trying to write to a read-only SQLite db file under jenkins, also fails when run manually
9acdcfbb 509ODG-Record # Test::Benchmark broken
ec58481b 510Perlbal-Control # proc::processtable doesn't load
ec58481b 511Pg-BulkCopy # hardcodes /usr/bin/perl
72dc4616 512Pinto-Common # broken
cc519dbb 513Pinto-Remove # deps on Pinto::Common
514Pinto-Server # deps on Pinto::Common
72dc4616 515Plack-Middleware-Image-Scale # Image::Scale is broken
4de6e6a5 516Pod-Parser-I18N # missing dep on Data::Localize
ec58481b 517POE-Component-CPAN-Mirror-Multiplexer # broken
6539278a 518POE-Component-DirWatch # intermittent failures
519POE-Component-DirWatch-Object # intermittent failures
9acdcfbb 520POE-Component-ResourcePool # broken
9acdcfbb 521POE-Component-Server-PSGI # broken deps
ec58481b 522POE-Component-Server-SimpleHTTP-PreFork # broken deps
d1dc6007 523Poet # missing dep on Log::Any::Adapter::Log4perl
9acdcfbb 524POEx-ProxySession # broken deps
525POEx-PubSub # broken deps
526POEx-WorkerPool # broken deps
72dc4616 527PostScript-ScheduleGrid-XMLTV # XMLTV doesn't exist
528PRANG # broken
529Prophet # depends on term::readline::perl
9acdcfbb 530Queue-Leaky # broken
72dc4616 531Railsish # dep on nonexistent dist
9acdcfbb 532RDF-Server # "no Moose" unimports confess
9acdcfbb 533Reaction # signatures is broken
9acdcfbb 534Reflexive-Role-DataMover # broken (reflex::role changes?)
535Reflexive-Role-TCPServer # broken (reflex::role changes?)
72dc4616 536Reflexive-Stream-Filtering # broken
ec58481b 537RPC-Any # broken
9acdcfbb 538Scene-Graph # has '+attr' in roles
9acdcfbb 539Server-Control # proc::processtable doesn't load
0aff3f28 540Shipment # locale::subcountry is broken
72dc4616 541Silki # image::magick is broken
9acdcfbb 542SilkiX-Converter-Kwiki # file::mimeinfo expects (?-xism:
72dc4616 543Sloth # rest::utils is broken
d1dc6007 544Sque # couldn't fork server for testing
ec58481b 545SRS-EPP-Proxy # depends on xml::epp
9acdcfbb 546String-Blender # broken
547TAEB # broken
548Tail-Tool # Getopt::Alt doesn't exist
72dc4616 549Tapper-CLI # sys::info::driver::linux is broken
9acdcfbb 550Tapper-Installer # sys::info::driver::linux is broken
9acdcfbb 551Tapper-MCP-MessageReceiver # sys::info::driver::linux is broken
552Tapper-Reports-API # sys::info::driver::linux is broken
ec58481b 553Tapper-Testplan # sys::info::driver::linux is broken
9acdcfbb 554Telephone-Mnemonic-US # rpm-build-perl is broken
b5937bb0 555Template-Plugin-Heritable # weird dep issues (not test::dm related)
9acdcfbb 556Test-A8N # broken
ec58481b 557Test-Daily # configure errors
72dc4616 558Test-Pockito # broken
ec58481b 559Test-SFTP # Term::ReadPassword prompts in tests
72dc4616 560Test-WWW-Selenium-More # Test::WWW::Selenium needs devel::repl
561Text-Clevery # broken
726ade9b 562Text-Zilla # broken
72dc4616 563Thorium # depends on Hobocamp
9acdcfbb 564TryCatch-Error # broken
72dc4616 565Verby # deps on poe::component::resourcepool
566Weather-TW # missing dep on Mojo::DOM
567Web-API-Mapper # broken
568WebNano-Controller-CRUD # broken
cdb8d8b2 569Webservice-Intermine # broken tests
ec58481b 570WebService-Yes24 # broken
571WiX3 # broken
4513d67e 572WWW-Alltop # XML::SimpleObject configure fail
3b1a1b22 573WWW-Comix # uses ancient Moose::Policy stuff
d1dc6007 574WWW-DataWiki # broken
9acdcfbb 575WWW-Fandango # bad dist
ec58481b 576WWW-FMyLife # broken
0aff3f28 577WWW-Mechanize-Cached # tries to read from wrong build dir?
9acdcfbb 578WWW-Metalgate # Cache is broken
579WWW-Scramble # pod::coverage fail
72dc4616 580WWW-Sitemapper # broken
9acdcfbb 581WWW-StaticBlog # time::sofar is broken
72dc4616 582WWW-WebKit # missing configure_req on EU::PkgConfig
9acdcfbb 583WWW-Yahoo-Lyrics-JP # broken
9acdcfbb 584XIRCD # undeclared deps
585XML-EPP # coerce without coercion
72dc4616 586XML-SRS # deps on prang
2ec35f55 587XML-Writer-Compiler # broken tests
9acdcfbb 588Yukki # git::repository is broken