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
@@ -0,0 +1,36 @@
meta {
name: Update profile photo
type: http
seq: 2
}
post {
url: {{url}}/api/profile-photo
body: multipartForm
auth: inherit
}
body:multipart-form {
photo: @file(photo.jpg)
}
assert {
res.status: eq 200
res.body.profile_photo_path: isDefined
}
settings {
encodeUrl: true
timeout: 0
}
docs {
# /profile-photo -- POST
Met à jour la photo de profil de l'utilisateur connecté.
L'ancienne photo est supprimée si elle existe.
Authentification requise.
Entrée: photo (fichier image jpeg/png/jpg/gif, max 2MB)
}