Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
LOFAR2.0
tango
Commits
ab049682
Commit
ab049682
authored
2 years ago
by
Stefano Di Frischia
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-1030
: create unittest for configuration
parent
9d86d405
No related branches found
No related tags found
1 merge request
!468
Resolve L2SS-1030 "Create configuration device"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tangostationcontrol/tangostationcontrol/test/common/test_configuration.py
+54
-0
54 additions, 0 deletions
...rol/tangostationcontrol/test/common/test_configuration.py
with
54 additions
and
0 deletions
tangostationcontrol/tangostationcontrol/test/common/test_configuration.py
0 → 100644
+
54
−
0
View file @
ab049682
# -*- coding: utf-8 -*-
#
# This file is part of the LOFAR 2.0 Station Software
#
#
#
# Distributed under the terms of the APACHE license.
# See LICENSE.txt for more info.
from
tangostationcontrol.common.configuration
import
query_to_tuples
,
add_to_devices_dict
,
add_to_attrs_dict
,
add_to_server_dict
from
tangostationcontrol.test
import
base
class
TestDbDataConversion
(
base
.
TestCase
):
def
test_query_to_tuples
(
self
):
"""
Test whether Tango DB data are correctly converted into tuples
"""
raw_result
=
[
'
device1
'
,
'
property_name1
'
,
'
value1
'
,
'
device1
'
,
'
property_name2
'
,
'
value2
'
]
num_col
=
3
record1
=
(
'
device1
'
,
'
property_name1
'
,
'
value1
'
)
record2
=
(
'
device1
'
,
'
property_name2
'
,
'
value2
'
)
expected_result
=
[
record1
,
record2
]
self
.
assertEqual
(
query_to_tuples
(
raw_result
,
num_col
),
expected_result
)
def
test_add_to_devices_dict
(
self
):
"""
Test whether data retrieved from DB are correctly inserted into devices dictionary
"""
data
=
[(
'
device1
'
,
'
property_name1
'
,
'
value1
'
),
(
'
device1
'
,
'
property_name2
'
,
'
value2
'
)]
expected_result
=
{
'
device1
'
:
{
'
properties
'
:
{
'
property_name1
'
:
[
'
value1
'
],
'
property_name2
'
:
[
'
value2
'
]}}}
self
.
assertEqual
(
add_to_devices_dict
({},
data
),
expected_result
)
def
test_add_to_attrs_dict
(
self
):
"""
Test whether data retrieved from DB are correctly inserted into attributes dictionary
"""
# Two attributes
data_2attrs
=
[(
'
device1
'
,
'
attribute1
'
,
'
attr_property_name1
'
,
'
value1
'
),
(
'
device1
'
,
'
attribute2
'
,
'
attr_property_name1
'
,
'
value2
'
)]
expected_result
=
{
'
device1
'
:
{
'
attribute_properties
'
:
{
'
attribute1
'
:
{
'
attr_property_name1
'
:
[
'
value1
'
]},
'
attribute2
'
:
{
'
attr_property_name1
'
:
[
'
value2
'
]}}}}
self
.
assertEqual
(
add_to_attrs_dict
({},
data_2attrs
),
expected_result
)
# One attribute, two property values
data_1attr
=
[(
'
device1
'
,
'
attribute1
'
,
'
attr_property_name1
'
,
'
value1
'
),
(
'
device1
'
,
'
attribute1
'
,
'
attr_property_name1
'
,
'
value2
'
)]
expected_result
=
{
'
device1
'
:
{
'
attribute_properties
'
:
{
'
attribute1
'
:
{
'
attr_property_name1
'
:
[
'
value1
'
,
'
value2
'
]}}}}
self
.
assertEqual
(
add_to_attrs_dict
({},
data_1attr
),
expected_result
)
def
test_add_to_server_dict
(
self
):
"""
Test whether data retrieved from DB are correctly inserted into server dictionary
"""
data
=
[(
'
server_name/server_instance
'
,
'
server_class
'
,
'
device1
'
)]
devices_dict
=
{
'
device1
'
:
{
'
properties
'
:
{
'
property_name1
'
:
[
'
value1
'
],
'
property_name2
'
:
[
'
value2
'
]}}}
expected_result
=
{
'
server_name
'
:
{
'
server_instance
'
:
{
'
server_class
'
:
{
'
device1
'
:
{
'
properties
'
:
{
'
property_name1
'
:
[
'
value1
'
],
'
property_name2
'
:
[
'
value2
'
]}}}}}}
self
.
assertEqual
(
add_to_server_dict
({},
devices_dict
,
data
),
expected_result
)
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