aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Grote2023-06-26 23:42:28 +0200
committerMichael Grote2023-06-26 23:42:28 +0200
commit310a6540b690934dbb540260d69e41e725003bee (patch)
tree81da0e7a014e2f2808251ecc93718d6a1ae5175e
parent07826d05c4e515b90f2fd8c6cefbc1562d1047ea (diff)
ci: add tests
-rw-r--r--.drone.yml44
1 files changed, 44 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index 5111293..beef902 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -93,3 +93,47 @@ steps:
when:
event:
- tag
+
+---
+kind: pipeline
+type: docker
+name: selfhosted
+depends_on:
+ - selfhosted
+ - dockerhub
+
+ - name: test
+ image: registry.mgrote.net/python-api-server:latest
+ environment:
+ MAX_CONTENT_LENGTH: 50
+ UPLOAD_DIRECTORY: /uploads
+ AUTH_TOKEN: myuploadtoken
+ ENABLE_WEBSERVER: false
+ commands:
+ - # führe Script nach Fehlern weiter aus
+ - set +e
+ - export TOKEN=myuploadtoken
+ - export URL="localhost:5000"
+ - mkdir -p tests
+ - echo -e Test: normaler Upload
+ - echo content > tests/file
+ - curl -X POST -H "token: $TOKEN" -F "file=@tests/file" $URL/upload | jq
+ - echo -e Test: leerer Upload
+ - curl -X POST -H "token: $TOKEN" $URL/upload | jq
+ - echo -e Test: fehlerhafter Dateiname Upload
+ - touch ./tests/'hallo\welt.txt'
+ - curl -X POST -H "token: $TOKEN" -F "file=@tests/hallo\welt.txt" $URL/upload | jq
+ - echo -e Test: List Files
+ - curl -H "token: $TOKEN" $URL/list | jq
+ - echo -e Test: download Datei
+ - wget $URL/download/file -o ./tests/file
+ - ls -lah ./tests/file
+ - echo -e Test: download nicht vorhandene Datei
+ - wget $URL/download/file2
+ - echo -e Test: lösche Datei
+ - curl -X DELETE -H "token: $TOKEN" $URL/delete/file | jq
+ - echo -e Test: lösche nicht vorhandene Datei
+ - curl -X DELETE -H "token: $TOKEN" $URL/delete/file2 | jq
+ - echo -e Test: check health
+ - curl $URL/health
+ - rm -rf tests