Browse Source

HandleImagePng tests

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

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

@@ -123,6 +123,31 @@ var _ = Describe("helpers", func() {
 		})
 		})
 	})
 	})
 
 
+	Context("HandleImagePng", func() {
+		BeforeEach(func() {
+			srv = httptest.NewServer(helpers.HandleImagePng("MyContent"))
+			client = srv.Client()
+		})
+
+		AfterEach(func() {
+			srv.Close()
+		})
+
+		It("handle file", func() {
+			resp, err := client.Get(srv.URL + "/")
+			Expect(err).To(Succeed())
+			defer resp.Body.Close()
+
+			Expect(resp.StatusCode).To(Equal(http.StatusOK))
+			Expect(resp.Header.Get("Content-Type")).To(Equal("image/png"))
+
+			body, err := io.ReadAll(resp.Body)
+			Expect(err).To(Succeed())
+
+			Expect(string(body)).To(Equal("MyContent"))
+		})
+	})
+
 	Context("MinifyHtmlCode", func() {
 	Context("MinifyHtmlCode", func() {
 		It("minify Html code", func() {
 		It("minify Html code", func() {
 			Expect(helpers.MinifyHtmlCode(`
 			Expect(helpers.MinifyHtmlCode(`