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
8494f1f0
Commit
8494f1f0
authored
2 years ago
by
Stefano Di Frischia
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-937
: update setup antennafield
parent
3f258cbe
No related branches found
No related tags found
1 merge request
!424
Resolve L2SS-937 "Restore recv cluster integration test"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tangostationcontrol/tangostationcontrol/integration_test/recv_cluster/test_recv_cluster.py
+15
-5
15 additions, 5 deletions
...ontrol/integration_test/recv_cluster/test_recv_cluster.py
with
15 additions
and
5 deletions
tangostationcontrol/tangostationcontrol/integration_test/recv_cluster/test_recv_cluster.py
+
15
−
5
View file @
8494f1f0
...
...
@@ -16,13 +16,15 @@ from tango import DevState
from
tangostationcontrol.integration_test
import
base
from
tangostationcontrol.integration_test.device_proxy
import
TestDeviceProxy
from
tangostationcontrol.devices.antennafield
import
AntennaQuality
,
AntennaUse
logger
=
logging
.
getLogger
()
class
TestRecvCluster
(
base
.
IntegrationTestCase
):
POINTING_DIRECTION
=
numpy
.
array
([[
"
J2000
"
,
"
0deg
"
,
"
0deg
"
]]
*
96
).
flatten
()
NR_TILES
=
48
POINTING_DIRECTION
=
numpy
.
array
([[
"
J2000
"
,
"
0deg
"
,
"
0deg
"
]]
*
NR_TILES
).
flatten
()
def
setUp
(
self
):
...
...
@@ -48,10 +50,17 @@ class TestRecvCluster(base.IntegrationTestCase):
self
.
assertTrue
(
proxy
.
state
()
is
DevState
.
ON
)
for
proxy
in
antenna_field_proxies
:
proxy
.
off
()
self
.
assertTrue
(
proxy
.
state
()
is
DevState
.
OFF
)
proxy
.
warm_boot
()
proxy
.
set_defaults
()
# setup AntennaField
NR_TILES
=
48
antennafield_proxy
=
TestDeviceProxy
(
f
"
STAT/AntennaField/
{
i
}
"
)
control_mapping
=
[[
1
,
i
]
for
i
in
range
(
NR_TILES
)]
antenna_qualities
=
numpy
.
array
([
AntennaQuality
.
OK
]
*
96
)
antenna_use
=
numpy
.
array
([
AntennaUse
.
AUTO
]
*
96
)
antennafield_proxy
.
put_property
({
"
RECV_devices
"
:
[
f
"
STAT/RECV/
{
i
}
"
],
"
Control_to_RECV_mapping
"
:
numpy
.
array
(
control_mapping
).
flatten
(),
'
Antenna_Quality
'
:
antenna_qualities
,
'
Antenna_Use
'
:
antenna_use
})
antennafield_proxy
.
off
()
antennafield_proxy
.
boot
()
self
.
assertTrue
(
proxy
.
state
()
is
DevState
.
ON
)
for
proxy
in
beam_proxies
:
...
...
@@ -59,6 +68,7 @@ class TestRecvCluster(base.IntegrationTestCase):
self
.
assertTrue
(
proxy
.
state
()
is
DevState
.
OFF
)
proxy
.
warm_boot
()
proxy
.
set_defaults
()
proxy
.
Tracking_enabled_RW
=
False
self
.
assertTrue
(
proxy
.
state
()
is
DevState
.
ON
)
results
=
[]
...
...
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