Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.editor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
beat
beat.editor
Commits
8cee4655
Commit
8cee4655
authored
6 years ago
by
Flavio TARSETTI
Browse files
Options
Downloads
Patches
Plain Diff
[test] updated and refactored tests
parent
a469913c
No related branches found
No related tags found
1 merge request
!55
Reusable widget short description
Pipeline
#27638
passed
6 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
beat/editor/test/test_editors.py
+30
-32
30 additions, 32 deletions
beat/editor/test/test_editors.py
with
30 additions
and
32 deletions
beat/editor/test/test_editors.py
+
30
−
32
View file @
8cee4655
...
...
@@ -58,30 +58,28 @@ class MockAssetEditor(AbstractAssetEditor):
def
set_dataformat_model
(
self
,
model
):
self
.
dataformat_model
=
model
def
load_json
(
self
,
json_object
,
widget_type
):
def
load_json
(
self
,
json_object
):
"""
Load the json object passed as parameter
"""
if
widget_type
==
"
field
"
:
for
name
,
type_
in
json_object
.
items
():
field
=
FieldWidget
(
self
.
dataformat_model
)
field
.
format_name
=
name
field
.
format_type
=
type_
self
.
layout
().
addWidget
(
field
)
elif
widget_type
==
"
description
"
:
short_text
=
json_object
[
"
short_description
"
]
self
.
description
.
form_description
.
setText
(
short_text
)
def
dump_json
(
self
,
widget_type
):
for
name
,
type_
in
json_object
[
"
field
"
].
items
():
field
=
FieldWidget
(
self
.
dataformat_model
)
field
.
format_name
=
name
field
.
format_type
=
type_
self
.
layout
().
addWidget
(
field
)
short_text
=
json_object
[
"
description
"
]
self
.
description
.
form_description
.
setText
(
short_text
)
def
dump_json
(
self
):
"""
Returns the json representation of the asset
"""
json_data
=
{}
if
widget_type
==
"
field
"
:
field_list
=
self
.
findChildren
(
FieldWidget
)
for
field
in
field_list
:
json_data
[
field
.
format_name
]
=
field
.
format_type
elif
widget_type
==
"
description
"
:
json_data
[
"
short_description
"
]
=
self
.
description
.
short_description
()
field_list
=
self
.
findChildren
(
FieldWidget
)
json_data
[
"
field
"
]
=
{}
for
field
in
field_list
:
json_data
[
"
field
"
][
field
.
format_name
]
=
field
.
format_type
json_data
[
"
description
"
]
=
self
.
description
.
short_description
()
return
json_data
...
...
@@ -95,13 +93,16 @@ class TestMockEditor:
"""
Test that the mock editor works correctly
"""
def
test_json_load_and_dump_field_widget
(
self
,
qtbot
,
dataformat_model
):
json_reference
=
{
"
value32
"
:
"
float32
"
,
"
value64
"
:
"
float64
"
}
json_reference
=
{
"
field
"
:
{
"
value32
"
:
"
float32
"
,
"
value64
"
:
"
float64
"
},
"
description
"
:
"
Short description test
"
,
}
widget
=
MockAssetEditor
()
widget
.
set_dataformat_model
(
dataformat_model
)
widget
.
load_json
(
json_reference
,
"
field
"
)
widget
.
load_json
(
json_reference
)
assert
widget
.
dump_json
(
"
field
"
)
==
json_reference
assert
widget
.
dump_json
()
==
json_reference
def
test_dataformat_creation_field_widget
(
self
,
qtbot
,
dataformat_model
):
widget
=
MockAssetEditor
()
...
...
@@ -117,7 +118,10 @@ class TestMockEditor:
field
.
format_name
=
"
value32
"
field
.
format_type
=
"
float32
"
assert
widget
.
dump_json
(
"
field
"
)
==
{
"
value32
"
:
"
float32
"
}
assert
widget
.
dump_json
()
==
{
"
field
"
:
{
"
value32
"
:
"
float32
"
},
"
description
"
:
""
,
}
qtbot
.
mouseClick
(
widget
.
add_field_button
,
QtCore
.
Qt
.
LeftButton
)
fields
=
widget
.
findChildren
(
FieldWidget
)
...
...
@@ -129,13 +133,7 @@ class TestMockEditor:
field
.
format_name
=
"
value64
"
field
.
format_type
=
"
float64
"
assert
widget
.
dump_json
(
"
field
"
)
==
{
"
value32
"
:
"
float32
"
,
"
value64
"
:
"
float64
"
}
def
test_json_load_and_dump_description_widget
(
self
,
qtbot
):
json_reference
=
{
"
short_description
"
:
"
Short description test
"
}
widget
=
MockAssetEditor
()
widget
.
set_dataformat_model
(
dataformat_model
)
widget
.
load_json
(
json_reference
,
"
description
"
)
assert
widget
.
dump_json
(
"
description
"
)
==
json_reference
assert
widget
.
dump_json
()
==
{
"
field
"
:
{
"
value32
"
:
"
float32
"
,
"
value64
"
:
"
float64
"
},
"
description
"
:
""
,
}
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