Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
8ae7c4ac
Commit
8ae7c4ac
authored
4 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
TMSS-207
: added some helper methods
parent
cdfb1b86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!175
Resolve TMSS-207
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/TMSS/test/tmss_test_data_rest.py
+14
-7
14 additions, 7 deletions
SAS/TMSS/test/tmss_test_data_rest.py
with
14 additions
and
7 deletions
SAS/TMSS/test/tmss_test_data_rest.py
+
14
−
7
View file @
8ae7c4ac
...
@@ -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/
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment