Create integration tests

This commit is contained in:
Alexandertp 2024-08-14 10:59:53 +02:00
parent 1813458652
commit cefd3bf596

8
API/integration-tests.sh Normal file
View File

@ -0,0 +1,8 @@
USER_ID=`curl -X POST http://localhost:5287/api/Users -d '{"Email":"hej@example.com","Username":"Gamer","Password":"Gamer123!"}' --header 'Content-Type: application/json'`
TOKEN=`curl -X POST http://localhost:5287/api/Users/login -d '{"Email":"hej@example.com","Password":"Gamer123!"}' --header 'Content-Type: application/json'`
curl http://localhost:5287/api/Users/$USER_ID
curl -X DELETE http://localhost:5287/api/Users/$USER_ID