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
200e8f0c
Commit
200e8f0c
authored
4 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
TMSS-190
: added specifications_template argument
parent
d7df49df
No related branches found
No related tags found
1 merge request
!252
Resolve TMSS-190
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/TMSS/test/tmss_test_data_django_models.py
+9
-3
9 additions, 3 deletions
SAS/TMSS/test/tmss_test_data_django_models.py
with
9 additions
and
3 deletions
SAS/TMSS/test/tmss_test_data_django_models.py
+
9
−
3
View file @
200e8f0c
...
@@ -237,20 +237,26 @@ def SchedulingUnitBlueprint_test_data(name='my_scheduling_unit_blueprint', requi
...
@@ -237,20 +237,26 @@ def SchedulingUnitBlueprint_test_data(name='my_scheduling_unit_blueprint', requi
"
do_cancel
"
:
False
,
"
do_cancel
"
:
False
,
"
draft
"
:
models
.
SchedulingUnitDraft
.
objects
.
create
(
**
SchedulingUnitDraft_test_data
())
}
"
draft
"
:
models
.
SchedulingUnitDraft
.
objects
.
create
(
**
SchedulingUnitDraft_test_data
())
}
def
TaskBlueprint_test_data
(
name
=
'
my_task_blueprint
'
,
task_draft
:
models
.
TaskDraft
=
None
,
scheduling_unit_blueprint
:
models
.
SchedulingUnitBlueprint
=
None
)
->
dict
:
def
TaskBlueprint_test_data
(
name
=
'
my_task_blueprint
'
,
task_draft
:
models
.
TaskDraft
=
None
,
scheduling_unit_blueprint
:
models
.
SchedulingUnitBlueprint
=
None
,
specifications_template
:
models
.
TaskTemplate
=
None
,
specifications_doc
:
dict
=
None
)
->
dict
:
if
task_draft
is
None
:
if
task_draft
is
None
:
task_draft
=
models
.
TaskDraft
.
objects
.
create
(
**
TaskDraft_test_data
())
task_draft
=
models
.
TaskDraft
.
objects
.
create
(
**
TaskDraft_test_data
())
if
specifications_template
is
None
:
specifications_template
=
task_draft
.
specifications_template
if
specifications_doc
is
None
:
specifications_doc
=
get_default_json_object_for_schema
(
specifications_template
.
schema
)
if
scheduling_unit_blueprint
is
None
:
if
scheduling_unit_blueprint
is
None
:
scheduling_unit_blueprint
=
models
.
SchedulingUnitBlueprint
.
objects
.
create
(
**
SchedulingUnitBlueprint_test_data
())
scheduling_unit_blueprint
=
models
.
SchedulingUnitBlueprint
.
objects
.
create
(
**
SchedulingUnitBlueprint_test_data
())
return
{
"
name
"
:
name
,
return
{
"
name
"
:
name
,
"
description
"
:
""
,
"
description
"
:
""
,
"
tags
"
:
[],
"
tags
"
:
[],
"
specifications_doc
"
:
task_draft
.
specifications_doc
,
"
specifications_doc
"
:
specifications_doc
,
"
do_cancel
"
:
False
,
"
do_cancel
"
:
False
,
"
draft
"
:
task_draft
,
"
draft
"
:
task_draft
,
"
specifications_template
"
:
task_draft
.
specifications_template
,
"
specifications_template
"
:
specifications_template
,
"
scheduling_unit_blueprint
"
:
scheduling_unit_blueprint
}
"
scheduling_unit_blueprint
"
:
scheduling_unit_blueprint
}
def
TaskRelationBlueprint_test_data
(
producer
:
models
.
TaskBlueprint
=
None
,
consumer
:
models
.
TaskBlueprint
=
None
)
->
dict
:
def
TaskRelationBlueprint_test_data
(
producer
:
models
.
TaskBlueprint
=
None
,
consumer
:
models
.
TaskBlueprint
=
None
)
->
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