Updagre tests

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-03-25 14:31:54 +01:00
parent 138077fa75
commit 12440232da
36 changed files with 449 additions and 20 deletions
+35
View File
@@ -0,0 +1,35 @@
meta {
name: Export ICS
type: http
seq: 1
}
get {
url: {{url}}/api/export/ics/{{userId}}
body: none
auth: inherit
}
vars:pre-request {
userId: 2398
}
assert {
res.status: eq 200
res.headers.content-type: contains "text/calendar"
}
settings {
encodeUrl: true
timeout: 0
}
docs {
# /export/ics/{userId} -- GET
Exporte les tâches d'un utilisateur au format iCalendar (.ics).
Retourne un fichier téléchargeable agenda_user_{id}.ics.
Entrée: userId (identifiant de l'utilisateur)
}