Skip to content
Snippets Groups Projects
Unverified Commit c1cd155a authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

publish: Add test for non-GET queries.

* tests/publish.scm ("non-GET query"): New test.
parent 247384d0
No related branches found
No related tags found
No related merge requests found
...@@ -483,4 +483,12 @@ (define %gzip-magic-bytes ...@@ -483,4 +483,12 @@ (define %gzip-magic-bytes
(let ((uri (publish-uri "/log/does-not-exist"))) (let ((uri (publish-uri "/log/does-not-exist")))
(response-code (http-get uri)))) (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") (test-end "publish")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment