INB:mmb.pcb.ub.es:plotFeatureAASequence:1

This is a test of the INB:mmb.pcb.ub.es:plotFeatureAASequence service.
Test filesDownload the files for this test
Test runRun test now
Support reference#1004-1441
INB:mmb.pcb.ub.es:plotFeatureAASequence service test (automatically generated $Rev: 20 $)
Show/hide recent test logs
view log 2 weeks agoFAILED

Test began: 2012-01-29 11:06:47 Test ended: 2012-01-29 11:06:49 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 weeks agoFAILED

Test began: 2012-01-28 02:49:20 Test ended: 2012-01-28 02:49:21 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 weeks agoFAILED

Test began: 2012-01-27 00:21:29 Test ended: 2012-01-27 00:21:31 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 weeks agoFAILED

Test began: 2012-01-25 05:45:07 Test ended: 2012-01-25 05:45:09 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 1 month agoFAILED

Test began: 2012-01-07 05:49:19 Test ended: 2012-01-07 05:49:20 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 1 month agoFAILED

Test began: 2011-12-27 10:59:04 Test ended: 2011-12-27 10:59:32 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 1 month agoFAILED

Test began: 2011-12-27 09:15:42 Test ended: 2011-12-27 09:16:02 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 months agoFAILED

Test began: 2011-12-04 10:01:53 Test ended: 2011-12-04 10:01:54 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 months agoFAILED

Test began: 2011-12-03 09:52:29 Test ended: 2011-12-03 09:52:30 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 3 months agoFAILED

Test began: 2011-11-21 07:16:59 Test ended: 2011-11-21 07:17:00 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:mmb.pcb.ub.es:plotFeatureAASequence][on call]: 500 Internal Server ErrorDownload this log...500 Internal Server Error Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/2.2.14 (Ubuntu) Server at www.inab.org Port 80
This test consists of the following files:
INBtemplateTester.pl
#!/usr/bin/perl -W
# $Id: INBtemplateTester.pl 19 2009-04-21 16:14:57Z jmfernandez $
use LWP::UserAgent;
use XML::LibXML;
use strict;
my($EMBRACETESTagent)='INB EMBRACETestBot 0.1';
my(%TESThash)=(
'INB' => 'http://www.inab.org',
'INB-dev' => 'http://moby-dev.inab.org'
);
my($ua)=LWP::UserAgent->new('agent'=>$EMBRACETESTagent);
my($TESTkey)='INB';
my($TESTauthURI)='mmb.pcb.ub.es';
my($TESTserviceName)='plotFeatureAASequence';
my($compname)="$TESTkey:$TESTauthURI:$TESTserviceName";
if(exists($TESThash{$TESTkey})) {
my($requri)=$TESThash{$TESTkey}."/cgi-bin/runTestResults?authURI=$TESTauthURI&serviceName=$TESTserviceName";
my($resp)=$ua->get($requri);
if($resp->is_success()) {
my($testStat)=2; # By default, a warning
my($testMessage)='No test has been set for this service in INB';
eval {
my($parser)=XML::LibXML->new();
my($resdoc)=$parser->parse_string($resp->decoded_content());
my($root)=$resdoc->documentElement();
foreach my $child ($root->childNodes()) {
if($child->nodeType() == XML::LibXML::XML_ELEMENT_NODE) {
my($status)=$child->getAttribute('result');
$testStat=($status eq 'ok')?0:(($status eq 'warning')?2:1);
$testMessage=$child->textContent();
last;
}
}
};
if($@) {
print "ERROR[$compname][parsing XML]: ",$@,"\n";
exit 1;
} else {
print "Message[$compname]: ",$testMessage,"\n";
exit $testStat;
}
} else {
print "ERROR[$compname][on call]: ",$resp->status_line(),"\t",$resp->content(),"\n";
exit 1;
}
} else {
print 'FATAL INTERNAL ERROR [',$compname,']($Rev: 19 $). Please contact with the reponsible.',"\n";
exit 1;
}
»
- Login to post comments