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