Skip Menu |

This queue is for tickets about the SOAP-Lite CPAN distribution.

Report information
The Basics
Id: 37357
Status: resolved
Priority: 0/
Queue: SOAP-Lite

People
Owner: Nobody in particular
Requestors: toddr [...] cpanel.net
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.71
Fixed in: (no value)



Subject: Test Failure in Strawberry perl - 06-modules
Hi, I wanted to report a few more test failures. Here's detailed output... Do you want to proceed with this configuration? [yes] no Do you plan to use Client HTTPS support? [yes] Do you plan to use Client SMTP/sendmail support? [yes] Do you plan to use Client FTP support? [yes] Do you plan to use Standalone HTTP server? [yes] Do you plan to use Apache/mod_perl server? [no] Do you plan to use FastCGI server? [yes] no Do you plan to use POP3 server? [yes] Do you plan to use IO server? [yes] no Do you plan to use MQ transport support? [no] Do you plan to use JABBER transport support? [no] Do you plan to use MIME messages? [yes] Do you plan to use DIME messages? [yes] Do you plan to use SSL Support for TCP Transport? [no] Do you plan to use Compression support for HTTP? [yes] Do you plan to use MIME interoperability w/ Axis? [no] Feature Prerequisites Install? ----------------------------- ---------------------------- -------- Core Package [*] Scalar::Util always [*] Test::More [*] URI [*] MIME::Base64 [*] version [*] XML::Parser (v2.23) Client HTTP support [*] LWP::UserAgent always Client HTTPS support [*] Crypt::SSLeay [ yes ] Client SMTP/sendmail support [*] MIME::Lite [ yes ] Client FTP support [*] IO::File [ yes ] [*] Net::FTP Standalone HTTP server [*] HTTP::Daemon [ yes ] Apache/mod_perl server [ ] Apache [ no ] FastCGI server [*] FCGI [ no ] POP3 server [*] MIME::Parser [ yes ] [*] Net::POP3 IO server [*] IO::File [ no ] MQ transport support [ ] MQSeries [ no ] JABBER transport support [ ] Net::Jabber [ no ] MIME messages [*] MIME::Parser [ yes ] DIME messages [*] IO::Scalar (v2.105) [ yes ] [*] DIME::Tools (v0.03) [*] Data::UUID (v0.11) SSL Support for TCP Transport [ ] IO::Socket::SSL [ no ] Compression support for HTTP [*] Compress::Zlib [ yes ] MIME interoperability w/ Axis [ ] MIME::Parser (v6.106) [ no ] --- An asterix '[*]' indicates if the module is currently installed. Do you want to proceed with this configuration? [yes] now tests: C:\Projects\perl-soap-lite\branches\0.71>prove -v -b t\06-modules.t t\06-modules.... 1..17 # Running under perl version 5.010000 for MSWin32 # Current time local: Wed Jul 2 21:55:35 2008 # Current time GMT: Thu Jul 3 02:55:35 2008 # Using Test.pm version 1.25 ok 1 ok 2 ok 3 ok 4 # Failed test 5 in t\06-modules.t at line 27 fail #5 # t\06-modules.t line 27 is: ok(!$@) or warn "\nError while loading $_\n"; Error while loading SOAP::Transport::TCP not ok 5 ok 6 ok 7 ok 8 ok 9 ok 10 ok 11 ok 12 # Failed test 13 in t\06-modules.t at line 27 fail #13 Error while loading XMLRPC::Transport::TCP not ok 13 ok 14 ok 15 ok 16 # SKIP Can't locate MQClient/MQSeries.pm at C:\...\blib\lib/SOAP/Transport/MQ.pm line 18. BEGIN failed--compilation aborted at C:\...\blib\lib/SOAP/Transport/MQ.pm li ne 18. Compilation failed in require at (eval 119) line 3. ok 17 # SKIP Can't locate Net/Jabber.pm at C:\...\\blib\lib/SOAP/Transport/JABBER.pm line 18. BEGIN failed--compilation aborted at C:\...\blib\lib/SOAP/Transport/JABBER.pm line 18. Compilation failed in require at (eval 120) line 3. Failed 2/17 subtests (less 2 skipped subtests: 13 okay) Test Summary Report ------------------- t\06-modules (Wstat: 0 Tests: 17 Failed: 2) Failed tests: 5, 13 Files=1, Tests=17, 0 wallclock secs ( 0.02 usr + 0.00 sys = 0.02 CPU) Result: FAIL
From: todd.e.rinaldo [...] jpmorgan.com
Hi, I don't think I have submit to SVN. Here is what I reccomment 06- modules.t get replaced with: #!/bin/env perl BEGIN { unless(grep /blib/, @INC) { chdir 't' if -d 't'; unshift @INC, '../lib' if -d '../lib'; } } use strict; use Test::More qw(no_plan); my @modules = qw(SOAP::Lite SOAP::Transport::HTTP SOAP::Transport::MAILTO SOAP::Transport::FTP SOAP::Transport::TCP SOAP::Transport::IO SOAP::Transport::LOCAL SOAP::Transport::POP3 XML::Parser::Lite UDDI::Lite XMLRPC::Lite XMLRPC::Transport::HTTP XMLRPC::Transport::TCP XMLRPC::Transport::POP3 SOAP::Packager SOAP::Transport::MQ SOAP::Transport::JABBER ); foreach (@modules) { eval "use $_"; if ($@ =~ /(Can\'t locate)|(XML::Parser::Lite requires)|(this is only version)|(load mod_perl)/) { SKIP: { skip("Module $_ does not exist or is breaking in an expected way", 1); } exit; next; } ok(!$@, "use $_") or warn "\nError while loading $_: $@\n"; }
Subject: Re: [rt.cpan.org #37357] Test Failure in Strawberry perl - 06-modules
Date: Mon, 07 Jul 2008 18:24:25 +0200
To: bug-SOAP-Lite [...] rt.cpan.org
From: Martin Kutter <martin.kutter [...] fen-net.de>
I'll happily grant you svn commit access. Do you have a sourceforge.net account? Martin Am Montag, den 07.07.2008, 11:07 -0400 schrieb Todd E. Rinaldo via RT: Show quoted text
> Queue: SOAP-Lite > Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=37357 > > > Hi, I don't think I have submit to SVN. Here is what I reccomment 06- > modules.t get replaced with: > > #!/bin/env perl > > BEGIN { > unless(grep /blib/, @INC) { > chdir 't' if -d 't'; > unshift @INC, '../lib' if -d '../lib'; > } > } > > use strict; > use Test::More qw(no_plan); > > my @modules = qw(SOAP::Lite SOAP::Transport::HTTP > SOAP::Transport::MAILTO > SOAP::Transport::FTP SOAP::Transport::TCP > SOAP::Transport::IO > SOAP::Transport::LOCAL SOAP::Transport::POP3 > XML::Parser::Lite > UDDI::Lite XMLRPC::Lite XMLRPC::Transport::HTTP > XMLRPC::Transport::TCP XMLRPC::Transport::POP3 > SOAP::Packager > SOAP::Transport::MQ SOAP::Transport::JABBER > ); > foreach (@modules) { > eval "use $_"; > > if ($@ =~ /(Can\'t locate)|(XML::Parser::Lite requires)|(this is > only version)|(load mod_perl)/) { > SKIP: { > skip("Module $_ does not exist or is breaking in an > expected way", 1); > } > exit; > next; > } > > ok(!$@, "use $_") or warn "\nError while loading $_: $@\n"; > } >
From: todd.e.rinaldo [...] jpmorgan.com
Emailing it to you now. On Mon Jul 07 12:42:52 2008, martin.kutter@fen-net.de wrote: Show quoted text
> I'll happily grant you svn commit access. > Do you have a sourceforge.net account?
From: todd.e.rinaldo [...] jpmorgan.com
Suggested fix for 06-modules submitted to SVN
... it's in the .08 distro just uploaded to PAUSE. Thanks ! Martin