me
/
guix
Archived
1
0
Fork 0

publish: Add test for non-GET queries.

* tests/publish.scm ("non-GET query"): New test.
master
Ludovic Courtès 2018-03-22 12:51:23 +01:00
parent 247384d069
commit c1cd155aa8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 0 deletions

View File

@ -483,4 +483,12 @@ FileSize: ~a~%"
(let ((uri (publish-uri "/log/does-not-exist")))
(response-code (http-get uri))))
(test-equal "non-GET query"
'(200 404)
(let ((path (string-append "/" (store-path-hash-part %item)
".narinfo")))
(map response-code
(list (http-get (publish-uri path))
(http-post (publish-uri path))))))
(test-end "publish")