From c1cd155aa8afa17e60491c85e8f226f99257d395 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Thu, 22 Mar 2018 12:51:23 +0100
Subject: [PATCH] publish: Add test for non-GET queries.

* tests/publish.scm ("non-GET query"): New test.
---
 tests/publish.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tests/publish.scm b/tests/publish.scm
index 8c88a8c93d5..a4a52a4efe7 100644
--- a/tests/publish.scm
+++ b/tests/publish.scm
@@ -483,4 +483,12 @@ (define %gzip-magic-bytes
   (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")
-- 
GitLab