INB:bioinfo.cipf.es:displayClustering:1

This is a test of the INB:bioinfo.cipf.es:displayClustering service.
Test filesDownload the files for this test
Test runRun test now
Support reference#947-1384
INB:bioinfo.cipf.es:displayClustering service test (automatically generated $Rev: 20 $)
Show/hide recent test logs
view log 15 hours agoFAILED

Test began: 2012-02-08 17:44:25 Test ended: 2012-02-08 17:44:26 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 3 weeks agoFAILED

Test began: 2012-01-21 15:36:02 Test ended: 2012-01-21 15:36:03 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 3 weeks agoFAILED

Test began: 2012-01-19 22:05:12 Test ended: 2012-01-19 22:05:14 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 4 weeks agoFAILED

Test began: 2012-01-13 23:03:49 Test ended: 2012-01-13 23:03:50 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 1 month agoFAILED

Test began: 2012-01-06 16:23:53 Test ended: 2012-01-06 16:23:55 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 months agoFAILED

Test began: 2011-12-24 17:09:57 Test ended: 2011-12-24 17:09:59 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 months agoFAILED

Test began: 2011-12-19 05:28:43 Test ended: 2011-12-19 05:28:44 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 months agoFAILED

Test began: 2011-12-13 20:52:34 Test ended: 2011-12-13 20:52:36 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 months agoFAILED

Test began: 2011-12-13 04:02:36 Test ended: 2011-12-13 04:02:38 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 months agoFAILED

Test began: 2011-12-08 21:34:01 Test ended: 2011-12-08 21:34:02 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:bioinfo.cipf.es:displayClustering][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
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)='bioinfo.cipf.es';
my($TESTserviceName)='displayClustering';
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