Skip to content
Snippets Groups Projects
Commit 9f49efa8 authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-470: Add APSCT, APSPU and Docker devices to integration tests

parent a3f998b6
No related branches found
No related tags found
1 merge request!176L2SS-470: Fix boot
...@@ -15,7 +15,7 @@ cd "$LOFAR20_DIR/docker-compose" || exit 1 ...@@ -15,7 +15,7 @@ cd "$LOFAR20_DIR/docker-compose" || exit 1
make build make build
# Start and stop sequence # Start and stop sequence
make stop device-boot device-sdp device-recv device-sst device-unb2 device-xst sdptr-sim recv-sim unb2-sim apsct-sim apspu-sim make stop device-boot device-docker device-apsct device-apspu device-sdp device-recv device-sst device-unb2 device-xst sdptr-sim recv-sim unb2-sim apsct-sim apspu-sim
make start databaseds dsconfig elk make start databaseds dsconfig elk
# Give dsconfig and databaseds time to start # Give dsconfig and databaseds time to start
...@@ -32,7 +32,7 @@ make start sdptr-sim recv-sim unb2-sim apsct-sim apspu-sim ...@@ -32,7 +32,7 @@ make start sdptr-sim recv-sim unb2-sim apsct-sim apspu-sim
# Give the simulators time to start # Give the simulators time to start
sleep 5 sleep 5
make start device-boot device-sdp device-recv device-sst device-unb2 device-xst make start device-boot device-docker device-apsct device-apspu device-sdp device-recv device-sst device-unb2 device-xst
# Give devices time to restart # Give devices time to restart
# TODO(Corne Lukken): Use a nicer more reliable mechanism # TODO(Corne Lukken): Use a nicer more reliable mechanism
......
# -*- 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 .base import AbstractTestBases
class TestDeviceAPSCT(AbstractTestBases.TestDeviceBase):
def setUp(self):
super().setUp("STAT/APSCT/1")
# -*- 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 .base import AbstractTestBases
class TestDeviceAPSPU(AbstractTestBases.TestDeviceBase):
def setUp(self):
super().setUp("STAT/APSPU/1")
# -*- 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 .base import AbstractTestBases
class TestDeviceDocker(AbstractTestBases.TestDeviceBase):
def setUp(self):
super().setUp("STAT/Docker/1")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment