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
|
- name: Clone repository
|
||||||
run: git clone --revision ${{ gitea.sha }} --depth 1 ${{ gitea.server_url }}/${{ gitea.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
|
- name: Build Store testing container
|
||||||
working-directory: IoT-Systems
|
working-directory: IoT-Systems
|
||||||
run: docker build -t local/store/${{gitea.sha}} -f store/Dockerfile-test .
|
run: docker build -t local/store/${{gitea.sha}} -f store/Dockerfile-test .
|
||||||
|
|
||||||
- name: Run Store tests
|
- name: Run Store tests
|
||||||
working-directory: IoT-Systems
|
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
|
- name: Clean up containers
|
||||||
if: ${{always()}}
|
if: ${{always()}}
|
||||||
run: docker image rm local/store/${{gitea.sha}}
|
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:
|
integration-smoke-test:
|
||||||
name: Integration smoke testing
|
name: Integration smoke testing
|
||||||
runs-on: host-arch-x86_64
|
runs-on: host-arch-x86_64
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ class Datasource:
|
|||||||
Logger.debug("CONNECT TO SERVER")
|
Logger.debug("CONNECT TO SERVER")
|
||||||
async with websockets.connect(uri) as websocket:
|
async with websockets.connect(uri) as websocket:
|
||||||
self.connection_status = "Connected"
|
self.connection_status = "Connected"
|
||||||
self.websocket = websocket
|
self.websocket = websocket
|
||||||
try:
|
try:
|
||||||
while True:
|
while True:
|
||||||
data = await websocket.recv()
|
data = await websocket.recv()
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ WORKDIR /app
|
|||||||
COPY store/requirements.txt .
|
COPY store/requirements.txt .
|
||||||
|
|
||||||
RUN pip install --no-cache-dir -r 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 the entire application into the container
|
||||||
COPY store/. .
|
COPY store/. .
|
||||||
# Run the main.py script inside the container when it starts
|
# Run the main.py script inside the container when it starts
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
PYTHONPATH=$PWD python3 test/main_test.py
|
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,
|
"user_id": 123,
|
||||||
"data": [
|
"data": [
|
||||||
{
|
{
|
||||||
"road_state": "normal",
|
"road_state": "good",
|
||||||
"agent_data": {
|
"agent_data": {
|
||||||
"user_id": 999,
|
"user_id": 999,
|
||||||
"accelerometer": {
|
"accelerometer": {
|
||||||
|
|||||||
Reference in New Issue
Block a user