Skip to content

Commit

Permalink
Update launcher.xq
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucaterre authored Mar 11, 2024
1 parent 51c8366 commit ba178fe
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/launcher.xq
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ import module namespace initTests = "https://github.com/chartes/dots/initTests"
(: Lance les tests pour vérifier que la base du résolveur DTS est opérationnelle :)
initTests:check-value-response200("http://localhost:8080/api/dts"), (: le entrypoint doit renvoyer une réponse 200 :)
initTests:check-value-response200("http://localhost:8080/api/dts/collection"), (: le endpoint collection doit renvoyer une réponse 200 :)

(:
les endpoints navigation et document ne peuvent pas être opérationnels avant la création d'un projet-racine.
La réponse correctement paramétrée est donc une erreur 400
initTests:check-value-response400("http://localhost:8080/api/dts/navigation"),
initTests:check-value-response400("http://localhost:8080/api/dts/document") (: les endpoints navigation et document ne peuvent pas être opérationnels avant la création d'un projet-racine. La réponse correctement paramétrée est donc une erreur 400 :)
initTests:check-value-response400("http://localhost:8080/api/dts/document")
:)

0 comments on commit ba178fe

Please sign in to comment.