Files
music_library/test/prod.hurl
T
Claudio Ortolina 57dfd3d33d Remove ErrorTracker
Doesn't work with recent LiveView releases, and seems to be maintained
very slowly despite incoming PRs to fix the issues.
2025-10-03 10:15:23 +03:00

45 lines
935 B
Plaintext

# Make sure application enforces https
GET http://music-library.claudio-ortolina.org
HTTP 302
Location: https://music-library.claudio-ortolina.org/
# API requires a valid token
# GET latest record
GET https://music-library.claudio-ortolina.org/api/collection/latest
Content-Type: application/json
HTTP 401
GET https://music-library.claudio-ortolina.org/api/collection/latest
Content-Type: application/json
Authorization: Bearer {{api_token}}
HTTP 200
[Asserts]
# Record data is returned - one property is enough
jsonpath "$.title" != null
[Captures]
cover-url: jsonpath "$.cover_url"
# GET cover image
GET {{cover-url}}
HTTP 401
GET {{cover-url}}
Authorization: Bearer {{api_token}}
HTTP 200
# Dev routes are behind authentication
# Live Dashboard
GET https://music-library.claudio-ortolina.org/dev/dashboard
HTTP 302
Location: /login
# Oban
GET https://music-library.claudio-ortolina.org/dev/oban
HTTP 302
Location: /login