test1

This is a test of the EMBOSS splitter service.
Test filesDownload the files for this test
Test runRun test now
Support reference#523-743
derived from EMBOSS QA tests
Show/hide recent test logs
view log 1 day agoFAILED

Test began: 2013-06-16 20:10:13 Test ended: 2013-06-16 20:10:29 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20.Download this log...
view log 3 days agoFAILED

Test began: 2013-06-15 08:30:15 Test ended: 2013-06-15 08:30:15 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20.Download this log...
view log 2 weeks agoFAILED

Test began: 2013-06-01 01:05:51 Test ended: 2013-06-01 01:06:07 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20.Download this log...
view log 2 months agoFAILED

Test began: 2013-04-30 09:34:49 Test ended: 2013-04-30 09:34:50 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20.Download this log...
view log 2 months agoFAILED

Test began: 2013-04-12 02:56:23 Test ended: 2013-04-12 02:56:23 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20.Download this log...
view log 3 months agoFAILED

Test began: 2013-03-30 12:32:39 Test ended: 2013-03-30 12:32:39 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20.Download this log...
view log 3 months agoFAILED

Test began: 2013-03-17 13:37:16 Test ended: 2013-03-17 13:37:17 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20.Download this log...
view log 3 months agoFAILED

Test began: 2013-03-17 05:47:50 Test ended: 2013-03-17 05:47:50 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20.Download this log...
view log 4 months agoFAILED

Test began: 2013-03-02 17:30:18 Test ended: 2013-03-02 17:30:33 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20Download this log...
view log 4 months agoFAILED

Test began: 2013-02-23 23:31:25 Test ended: 2013-02-23 23:31:26 Result : Test failure ------ stderr and stdout follow ------ Retriving and processing the WSDL and the XSDs imported Caught an exception Could not create file parser context for file "http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter?wsdl": Resource temporarily unavailable at ./splitter.pl line 20Download this log...
This test consists of the following files:
splitter.pl
#!/usr/bin/perl
use XML::Compile::SOAP11;
use XML::Compile::WSDL11;
use XML::Compile::Transport::SOAPHTTP;
use strict;
####
eval {
my $inputs = {
'sequence' => { 'usa' => 'embl:BA000025'}
};
my $serviceendpoint =
'http://www.ebi.ac.uk/soaplab/typed/services/edit.splitter';
print "Retriving and processing the WSDL and the XSDs imported\n";
my $wsdl = XML::LibXML->new->parse_file( $serviceendpoint . '?wsdl' );
my $proxy = XML::Compile::WSDL11->new($wsdl);
foreach my $schema ( 1, 2, 3 ) {
my $xsdXml =
XML::LibXML->new->parse_file( $serviceendpoint . '?xsd=' . $schema );
if($XML::Compile::SOAP::VERSION < 2.0)
{
$proxy->schemas->importDefinitions($xsdXml);
}
else
{
$proxy->importDefinitions($xsdXml);
}
}
print "Preparing caller object for runAndWaitFor operation\n";
my $runAndWaitFor = $proxy->compileClient('runAndWaitFor');
print "Calling the service and getting the response\n";
my ( $answer, $trace ) = $runAndWaitFor->( $inputs );
# &printTrace($trace);
my %answer = %{$answer};
my %answer_ = %{ $answer{'runAndWaitForResponse'} };
my $report = $answer_{'report'};
my $detailed_status = $answer_{'detailed_status'};
my $outseq = $answer_{'outseq'};
my $outseq_url = $answer_{'outseq_url'};
print "\nSoaplab report received:\n----------------------------\n\n$report\n";
if ( $detailed_status == 0 ) {
print "Passed\n";
exit 0;
}
print "Failed\n";
exit 1;
};
if ($@) {
print "Caught an exception\n" . $@;
exit 1;
}
# Print request/response trace
sub printTrace($) {
my $trace = shift;
$trace->printTimings;
$trace->printRequest;
$trace->printResponse;
}
# File to String
sub file2String($) {
my $fname = shift;
open FILE, $fname or die "Couldn't open file: $!";
my $fcontent = join( "", <FILE> );
close FILE;
return $fcontent;
}
»
- Login to post comments