Compare commits
8 Commits
project/sh
...
23a11ec102
| Author | SHA1 | Date | |
|---|---|---|---|
| 23a11ec102 | |||
| ad3c336ecf | |||
| 5c3010dcfe | |||
| 712691f3d2 | |||
| f5486f0469 | |||
| 51fca8436a | |||
| c5f6fbf7af | |||
|
|
7b02884b10 |
@@ -28,27 +28,18 @@ jobs:
|
||||
- name: Clone repository
|
||||
run: git clone --revision ${{ gitea.sha }} --depth 1 ${{ gitea.server_url }}/${{ gitea.repository }}
|
||||
|
||||
- name: Start postgres_db container for testing
|
||||
working-directory: IoT-Systems
|
||||
run: docker-compose up -d postgres_db
|
||||
|
||||
- name: Build Store testing container
|
||||
working-directory: IoT-Systems
|
||||
run: docker build -t local/store/${{gitea.sha}} -f store/Dockerfile-test .
|
||||
|
||||
- name: Run Store tests
|
||||
working-directory: IoT-Systems
|
||||
run: docker run --network host --rm -it local/store/${{gitea.sha}}
|
||||
run: docker run --rm -it local/store/${{gitea.sha}}
|
||||
|
||||
- name: Clean up containers
|
||||
if: ${{always()}}
|
||||
run: docker image rm local/store/${{gitea.sha}}
|
||||
|
||||
- name: Clean up docker-compose
|
||||
if: ${{always()}}
|
||||
working-directory: IoT-Systems
|
||||
run: docker-compose down -v --remove-orphans
|
||||
|
||||
integration-smoke-test:
|
||||
name: Integration smoke testing
|
||||
runs-on: host-arch-x86_64
|
||||
|
||||
@@ -53,7 +53,7 @@ class Datasource:
|
||||
Logger.debug("CONNECT TO SERVER")
|
||||
async with websockets.connect(uri) as websocket:
|
||||
self.connection_status = "Connected"
|
||||
self.websocket = websocket
|
||||
self.websocket = websocket
|
||||
try:
|
||||
while True:
|
||||
data = await websocket.recv()
|
||||
|
||||
@@ -6,7 +6,6 @@ WORKDIR /app
|
||||
COPY store/requirements.txt .
|
||||
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN pip install --root-user-action ignore --no-cache-dir pytest httpx
|
||||
# Copy the entire application into the container
|
||||
COPY store/. .
|
||||
# Run the main.py script inside the container when it starts
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
PYTHONPATH=$PWD python3 test/main_test.py
|
||||
PYTHONPATH=$PWD python3 -m pytest test_db.py
|
||||
|
||||
@@ -15,7 +15,7 @@ def test_create_processed_agent_data():
|
||||
"user_id": 123,
|
||||
"data": [
|
||||
{
|
||||
"road_state": "normal",
|
||||
"road_state": "good",
|
||||
"agent_data": {
|
||||
"user_id": 999,
|
||||
"accelerometer": {
|
||||
|
||||
Reference in New Issue
Block a user