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