Compare commits

..

1 Commits

Author SHA1 Message Date
0a37d45eb6 [P] Integrate MapView testing into CI pipeline
Some checks failed
Component testing / Hub testing (push) Successful in 13s
Component testing / Store testing (push) Successful in 35s
Component testing / MapView testing (push) Failing after 2m55s
Component testing / Integration smoke testing (push) Has been skipped
2026-03-31 11:36:28 +03:00
4 changed files with 13 additions and 58 deletions

View File

@@ -58,11 +58,15 @@ jobs:
- name: Build MapView testing container
working-directory: IoT-Systems
run: docker build -t local/mapview -f MapView/Dockerfile-test .
run: docker build -t local/mapview/${{gitea.sha}} -f MapView/Dockerfile-test .
- name: Run MapView tests
working-directory: IoT-Systems
run: docker run --rm -it -v $PWD/MapView:/app:ro local/mapview
run: docker run --rm -it local/mapview/${{gitea.sha}}
- name: Clean up containers
if: ${{always()}}
run: docker image rm local/mapview/${{gitea.sha}}
integration-smoke-test:
name: Integration smoke testing

View File

@@ -4,11 +4,11 @@ FROM python:latest
WORKDIR /app
# Copy the requirements.txt file and install dependencies
COPY MapView/requirements.txt .
RUN sed -i 's/==.*//' requirements.txt
RUN apt update && apt install -y libgl-dev libsdl1.2-dev
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --root-user-action ignore --no-cache-dir python-unittest kivy[base] pygame
RUN pip install --root-user-action ignore --no-cache-dir unittest
# Copy the entire application into the container
COPY MapView/. .
# Run the main.py script inside the container when it starts
#CMD ["uvicorn", "main:app", "--host", "0.0.0.0"]
CMD ["./test-entry.sh"]

View File

@@ -39,11 +39,7 @@ class Datasource:
self.connection_status = None
self._new_points = []
self._active_markers = []
try:
asyncio.ensure_future(self.connect_to_server())
except RuntimeError:
Logger.info("No event loop detected, running in offline mode")
def get_new_points(self):
Logger.debug(self._new_points)

View File

@@ -3,6 +3,7 @@ import sys
from unittest.mock import Mock
sys.modules['lineMapLayer'] = Mock()
sys.modules['datasource'] = Mock()
sys.modules['config'] = Mock()
from main import get_lat_lon, MapViewApp
@@ -78,52 +79,6 @@ class TestMapLatLonToProcessedAgentData(unittest.TestCase):
result = self.instance.map_lat_lon_to_processed_agent_data(50.45, 30.52)
self.assertIsNotNone(result)
self.assertEqual(result, marker)
def test_marker_is_close_enough(self):
marker = Mock()
marker.latitude = 30.521
marker.longitude = 50.452
self.instance._active_markers = [marker]
result = self.instance.map_lat_lon_to_processed_agent_data(50.45, 30.52)
self.assertIsNotNone(result)
self.assertEqual(result, marker)
def test_marker_is_too_far(self):
marker = Mock()
marker.latitude = 30.524
marker.longitude = 50.454
self.instance._active_markers = [marker]
result = self.instance.map_lat_lon_to_processed_agent_data(50.45, 30.52)
self.assertIsNone(result)
def test_return_closer_marker(self):
marker1 = Mock()
marker1.latitude = 30.521
marker1.longitude = 50.451
marker2 = Mock()
marker2.latitude = 30.524
marker2.longitude = 50.454
self.instance._active_markers = [marker1, marker2]
result = self.instance.map_lat_lon_to_processed_agent_data(50.452, 30.522)
self.assertIsNotNone(result)
self.assertEqual(result, marker1)
result = self.instance.map_lat_lon_to_processed_agent_data(50.453, 30.523)
self.assertIsNotNone(result)
self.assertEqual(result, marker2)
result = self.instance.map_lat_lon_to_processed_agent_data(50.459, 30.529)
self.assertIsNone(result)
def test_empty_markers(self):
self.instance._active_markers = []