Skip to content
Snippets Groups Projects
Commit 8ae7c4ac authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-207: added some helper methods

parent cdfb1b86
No related branches found
No related tags found
1 merge request!175Resolve TMSS-207
...@@ -31,13 +31,21 @@ class TMSSRESTTestDataCreator(): ...@@ -31,13 +31,21 @@ class TMSSRESTTestDataCreator():
self.django_api_url = django_api_url self.django_api_url = django_api_url
self.auth = auth self.auth = auth
def get_response_as_json_object(self, url):
"""GET the given data the self.django_api_url+url_postfix, and return the response"""
return json.loads(requests.get(url, auth=self.auth).content.decode('utf-8'))
def post_data_and_get_response(self, data, url_postfix): def post_data_and_get_response(self, data, url_postfix):
"""POST the given data the self.django_api_url+url_postfix, and return the response""" """POST the given data the self.django_api_url+url_postfix, and return the response"""
return requests.post(self.django_api_url + url_postfix, json=data, auth=self.auth) return requests.post(self.django_api_url + url_postfix, json=data, auth=self.auth)
def post_data_and_get_response_as_json_object(self, data, url_postfix):
"""POST the given data the self.django_api_url+url_postfix, and return the response"""
return json.loads(self.post_data_and_get_response(data, url_postfix).content.decode('utf-8'))
def post_data_and_get_url(self, data, url_postfix): def post_data_and_get_url(self, data, url_postfix):
"""POST the given data the self.django_api_url+url_postfix, and return the response's url""" """POST the given data the self.django_api_url+url_postfix, and return the response's url"""
return json.loads(self.post_data_and_get_response(data, url_postfix).content.decode('utf-8'))['url'] return self.post_data_and_get_response_as_json_object(data, url_postfix)['url']
####################################################### #######################################################
# the methods below can be used to create test data # the methods below can be used to create test data
...@@ -393,7 +401,7 @@ class TMSSRESTTestDataCreator(): ...@@ -393,7 +401,7 @@ class TMSSRESTTestDataCreator():
return {"subtask": subtask_url, return {"subtask": subtask_url,
"tags": []} "tags": []}
def Dataproduct(self, filename="my_filename", specifications_template_url=None, subtask_output_url=None, dataproduct_feedback_template_url=None): def Dataproduct(self, filename="my_filename", directory="/tmp/", specifications_template_url=None, subtask_output_url=None, dataproduct_feedback_template_url=None, dataformat="MeasurementSet"):
if specifications_template_url is None: if specifications_template_url is None:
specifications_template_url = self.post_data_and_get_url(self.SubtaskTemplate(), '/dataproduct_specifications_template/') specifications_template_url = self.post_data_and_get_url(self.SubtaskTemplate(), '/dataproduct_specifications_template/')
...@@ -403,16 +411,16 @@ class TMSSRESTTestDataCreator(): ...@@ -403,16 +411,16 @@ class TMSSRESTTestDataCreator():
if dataproduct_feedback_template_url is None: if dataproduct_feedback_template_url is None:
dataproduct_feedback_template_url = self.post_data_and_get_url(self.DataproductFeedbackTemplate(), '/dataproduct_feedback_template/') dataproduct_feedback_template_url = self.post_data_and_get_url(self.DataproductFeedbackTemplate(), '/dataproduct_feedback_template/')
return {"filename": "my.file", return {"filename": filename,
"directory": "/home/boskabouter/", "directory": directory,
"dataformat": self.django_api_url + '/dataformat/Beamformed/', "dataformat": "%s/dataformat/%s/" % (self.django_api_url, dataformat),
"deleted_since": None, "deleted_since": None,
"pinned_since": None, "pinned_since": None,
"specifications_doc": "{}", "specifications_doc": "{}",
"specifications_template": specifications_template_url, "specifications_template": specifications_template_url,
"tags": ["TMSS", "TESTING"], "tags": ["TMSS", "TESTING"],
"producer": subtask_output_url, "producer": subtask_output_url,
"do_cancel": datetime.utcnow().isoformat(), "do_cancel": None,
"expected_size": 1234, "expected_size": 1234,
"size": 123, "size": 123,
"feedback_doc": "{}", "feedback_doc": "{}",
...@@ -472,7 +480,6 @@ class TMSSRESTTestDataCreator(): ...@@ -472,7 +480,6 @@ class TMSSRESTTestDataCreator():
if dataproduct_urls is None: if dataproduct_urls is None:
dataproduct_urls = [self.post_data_and_get_url(self.Dataproduct(), '/dataproduct/'), dataproduct_urls = [self.post_data_and_get_url(self.Dataproduct(), '/dataproduct/'),
self.post_data_and_get_url(self.Dataproduct(), '/dataproduct/')] self.post_data_and_get_url(self.Dataproduct(), '/dataproduct/')]
if subtask_output_url is None: if subtask_output_url is None:
subtask_output_url = self.post_data_and_get_url(self.SubtaskOutput(), '/subtask_output/') subtask_output_url = self.post_data_and_get_url(self.SubtaskOutput(), '/subtask_output/')
......
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