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
8b63425e
Commit
8b63425e
authored
3 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
TMSS-1144
: added sap as parameter
parent
77da098c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!635
Resolve TMSS-1144
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/TMSS/backend/test/tmss_test_data_django_models.py
+6
-2
6 additions, 2 deletions
SAS/TMSS/backend/test/tmss_test_data_django_models.py
with
6 additions
and
2 deletions
SAS/TMSS/backend/test/tmss_test_data_django_models.py
+
6
−
2
View file @
8b63425e
...
@@ -425,7 +425,8 @@ def Dataproduct_test_data(producer: models.SubtaskOutput=None,
...
@@ -425,7 +425,8 @@ def Dataproduct_test_data(producer: models.SubtaskOutput=None,
specifications_doc
:
object
=
None
,
specifications_doc
:
object
=
None
,
specifications_template
:
models
.
DataproductSpecificationsTemplate
=
None
,
specifications_template
:
models
.
DataproductSpecificationsTemplate
=
None
,
feedback_doc
:
object
=
None
,
feedback_doc
:
object
=
None
,
feedback_template
:
models
.
DataproductFeedbackTemplate
=
None
)
->
dict
:
feedback_template
:
models
.
DataproductFeedbackTemplate
=
None
,
sap
:
models
.
SAP
=
None
)
->
dict
:
if
filename
is
None
:
if
filename
is
None
:
filename
=
"
my_file_%s.ext
"
%
uuid
.
uuid4
()
filename
=
"
my_file_%s.ext
"
%
uuid
.
uuid4
()
...
@@ -454,6 +455,9 @@ def Dataproduct_test_data(producer: models.SubtaskOutput=None,
...
@@ -454,6 +455,9 @@ def Dataproduct_test_data(producer: models.SubtaskOutput=None,
if
feedback_doc
is
None
:
if
feedback_doc
is
None
:
feedback_doc
=
get_default_json_object_for_schema
(
feedback_template
.
schema
)
feedback_doc
=
get_default_json_object_for_schema
(
feedback_template
.
schema
)
if
sap
is
None
:
sap
=
models
.
SAP
.
objects
.
create
(
**
SAP_test_data
())
return
{
"
filename
"
:
filename
,
return
{
"
filename
"
:
filename
,
"
directory
"
:
directory
,
"
directory
"
:
directory
,
"
dataformat
"
:
dataformat
,
"
dataformat
"
:
dataformat
,
...
@@ -467,7 +471,7 @@ def Dataproduct_test_data(producer: models.SubtaskOutput=None,
...
@@ -467,7 +471,7 @@ def Dataproduct_test_data(producer: models.SubtaskOutput=None,
"
size
"
:
123
,
"
size
"
:
123
,
"
feedback_doc
"
:
feedback_doc
,
"
feedback_doc
"
:
feedback_doc
,
"
feedback_template
"
:
feedback_template
,
"
feedback_template
"
:
feedback_template
,
"
sap
"
:
models
.
SAP
.
objects
.
create
(
**
SAP_test_data
())
,
"
sap
"
:
sap
,
"
global_identifier
"
:
models
.
SIPidentifier
.
objects
.
create
(
source
=
"
TMSS
"
)}
"
global_identifier
"
:
models
.
SIPidentifier
.
objects
.
create
(
source
=
"
TMSS
"
)}
def
AntennaSet_test_data
()
->
dict
:
def
AntennaSet_test_data
()
->
dict
:
...
...
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