Skip to content
Snippets Groups Projects
Commit 357e229a authored by Vermaat's avatar Vermaat
Browse files

Merge r356 from trunk

Added a ping() function to the webservice.


git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/branches/refactor-mutalyzer-branch@359 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parents 1caa029b b24246f5
No related branches found
No related tags found
No related merge requests found
...@@ -886,6 +886,17 @@ class MutalyzerService(DefinitionBase): ...@@ -886,6 +886,17 @@ class MutalyzerService(DefinitionBase):
return result return result
#info #info
@soap(_returns = Mandatory.String)
def ping(self):
"""
Simple function to test the interface.
@return: Always the value 'pong'.
@rtype: string
"""
return 'pong'
#ping
@soap(DateTime, _returns = Array(CacheEntry)) @soap(DateTime, _returns = Array(CacheEntry))
def getCache(self, created_since=None): def getCache(self, created_since=None):
""" """
......
...@@ -59,7 +59,7 @@ class TestWebservice(): ...@@ -59,7 +59,7 @@ class TestWebservice():
@todo: Start the standalone server and stop it in self.tearDown @todo: Start the standalone server and stop it in self.tearDown
instead of depending on some running instance at a fixed address. instead of depending on some running instance at a fixed address.
""" """
self.client = Client(WSDL_URL)#, cache=None) self.client = Client(WSDL_URL) #, cache=None)
self.client.options.cache.setduration(seconds=120) self.client.options.cache.setduration(seconds=120)
def test_checksyntax_valid(self): def test_checksyntax_valid(self):
...@@ -235,3 +235,10 @@ class TestWebservice(): ...@@ -235,3 +235,10 @@ class TestWebservice():
'NM_004011.3', 'NM_004011.3',
'NM_004012.3']: 'NM_004012.3']:
assert t in r.string assert t in r.string
def test_ping(self):
"""
Running the ping method should return 'pong'.
"""
r = self.client.service.ping()
assert_equal(r, 'pong')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment