Browse Source

Add HandleImageJpeg func

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

+ 5 - 0
utils/http/helpers/helpers.go

@@ -20,6 +20,7 @@ import (
 // func ClientIPs(r *http.Request) []string
 // func HandleAppStatus() http.Handler
 // func HandleFile(data, contentType string) http.Handler
+// func HandleImageJpeg(data string) http.Handler
 // func HandleImagePng(data string) http.Handler
 // func HandleTextCss(data string) http.Handler
 // func HandleTextJavaScript(data string) http.Handler
@@ -114,6 +115,10 @@ func HandleFile(data, contentType string) http.Handler {
 	})
 }
 
+func HandleImageJpeg(data string) http.Handler {
+	return HandleFile(data, "image/jpeg")
+}
+
 func HandleImagePng(data string) http.Handler {
 	return HandleFile(data, "image/png")
 }

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

@@ -124,6 +124,30 @@ var _ = Describe("helpers", func() {
 			})
 		})
 
+		Context("HandleImageJpeg", func() {
+			BeforeEach(func() {
+				srv = httptest.NewServer(helpers.HandleImageJpeg("MyContent"))
+				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 image jpeg", func() {
+				Expect(resp.StatusCode).To(Equal(http.StatusOK))
+				Expect(resp.Header.Get("Content-Type")).To(Equal("image/jpeg"))
+
+				body, err := io.ReadAll(resp.Body)
+				Expect(err).To(Succeed())
+
+				Expect(string(body)).To(Equal("MyContent"))
+			})
+		})
+
 		Context("HandleImagePng", func() {
 			BeforeEach(func() {
 				srv = httptest.NewServer(helpers.HandleImagePng("MyContent"))