INB-dev:cnio.es:getRelatedSymbols:1

This is a test of the INB-dev:cnio.es:getRelatedSymbols service.
Test filesDownload the files for this test
Test runRun test now
Support reference#1081-1518
INB-dev:cnio.es:getRelatedSymbols service test (automatically generated $Rev: 20 $)
Show/hide recent test logs
view log 4 days agoFAILED

Test began: 2012-05-14 20:53:07 Test ended: 2012-05-14 20:53:08 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 6 days agoFAILED

Test began: 2012-05-13 05:14:57 Test ended: 2012-05-13 05:14:58 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 1 week agoFAILED

Test began: 2012-05-09 15:39:41 Test ended: 2012-05-09 15:39:43 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 3 weeks agoFAILED

Test began: 2012-04-30 06:46:25 Test ended: 2012-04-30 06:46:27 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 4 weeks agoFAILED

Test began: 2012-04-22 08:43:11 Test ended: 2012-04-22 08:43:13 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 1 month agoFAILED

Test began: 2012-04-18 15:19:19 Test ended: 2012-04-18 15:19:21 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 1 month agoFAILED

Test began: 2012-04-15 02:31:21 Test ended: 2012-04-15 02:31:23 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 1 month agoFAILED

Test began: 2012-04-11 02:04:41 Test ended: 2012-04-11 02:04:42 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 1 month agoFAILED

Test began: 2012-04-08 07:08:50 Test ended: 2012-04-08 07:08:52 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 months agoFAILED

Test began: 2012-03-25 07:58:17 Test ended: 2012-03-25 07:58:18 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB-dev:cnio.es:getRelatedSymbols][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-dev';
my($TESTauthURI)='cnio.es';
my($TESTserviceName)='getRelatedSymbols';
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