Browse Source

Tests for RespondAsMethodNotAllowed

Volodymyr Tkach 2 years ago
parent
commit
b5b3536c6d
1 changed files with 24 additions and 0 deletions
  1. 24 0
      utils/http/helpers/helpers_test.go

+ 24 - 0
utils/http/helpers/helpers_test.go

@@ -298,6 +298,30 @@ var _ = Describe("helpers", func() {
 				Expect(string(body)).To(MatchRegexp(`{"error":"MyError"}`))
 				Expect(string(body)).To(MatchRegexp(`{"error":"MyError"}`))
 			})
 			})
 		})
 		})
+
+		Context("RespondAsMethodNotAllowed", func() {
+			BeforeEach(func() {
+				var getTestHandler = func() http.HandlerFunc {
+					return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+						helpers.RespondAsMethodNotAllowed(w, r)
+					})
+				}
+
+				srv = httptest.NewServer(getTestHandler())
+				client = srv.Client()
+				resp, err = client.Get(srv.URL + "/")
+				Expect(err).To(Succeed())
+			})
+
+			AfterEach(func() {
+				Expect(resp.Body.Close()).To(Succeed())
+				srv.Close()
+			})
+
+			It("handle method not allowed", func() {
+				Expect(resp.StatusCode).To(Equal(http.StatusMethodNotAllowed))
+			})
+		})
 	})
 	})
 
 
 	Context("MinifyHtmlCode", func() {
 	Context("MinifyHtmlCode", func() {