INB:inb.bsc.es:getPersistentFile:1

This is a test of the INB:inb.bsc.es:getPersistentFile service.
Test filesDownload the files for this test
Test runRun test now
Support reference#868-1305
INB:inb.bsc.es:getPersistentFile service test (automatically generated $Rev: 20 $)
Show/hide recent test logs
view log 2 weeks agoFAILED

Test began: 2010-08-20 22:31:20 Test ended: 2010-08-20 22:31:21 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:inb.bsc.es:getPersistentFile][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 3 weeks agoFAILED

Test began: 2010-08-18 06:51:13 Test ended: 2010-08-18 06:51:29 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:inb.bsc.es:getPersistentFile][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 2 months agoFAILED

Test began: 2010-07-14 00:54:27 Test ended: 2010-07-14 00:54:28 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:inb.bsc.es:getPersistentFile][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 3 months agoFAILED

Test began: 2010-06-01 18:16:43 Test ended: 2010-06-01 18:19:43 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:inb.bsc.es:getPersistentFile][on call]: 500 read timeout 500 read timeoutDownload this log...
view log 3 months agoFAILED

Test began: 2010-05-28 15:20:27 Test ended: 2010-05-28 15:23:28 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:inb.bsc.es:getPersistentFile][on call]: 500 read timeout 500 read timeoutDownload this log...
view log 4 months agoFAILED

Test began: 2010-04-28 07:25:18 Test ended: 2010-04-28 07:28:18 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:inb.bsc.es:getPersistentFile][on call]: 404 Not FoundDownload this log...404 Not Found 404 Not Found
view log 5 months agoFAILED

Test began: 2010-04-20 02:13:18 Test ended: 2010-04-20 02:16:18 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:inb.bsc.es:getPersistentFile][on call]: 500 read timeout 500 read timeoutDownload this log...
view log 5 months agoFAILED

Test began: 2010-03-26 04:21:52 Test ended: 2010-03-26 04:24:52 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:inb.bsc.es:getPersistentFile][on call]: 500 read timeout 500 read timeoutDownload this log...
view log 7 months agoPASSED

Test began: 2010-02-21 01:38:51 Test ended: 2010-02-21 01:40:29 Result : Test passed ------ stderr and stdout follow ------ Message[INB:inb.bsc.es:getPersistentFile]: Service was detected as workingDownload this log...
view log 7 months agoFAILED

Test began: 2010-02-04 12:31:35 Test ended: 2010-02-04 12:34:35 Result : Test failure ------ stderr and stdout follow ------ ERROR[INB:inb.bsc.es:getPersistentFile][on call]: 500 read timeout 500 read timeoutDownload this log...
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)='inb.bsc.es';
my($TESTserviceName)='getPersistentFile';
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