package helpers_test import ( "fmt" "io" "net/http" "net/http/httptest" "testing" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "github.com/vladimirok5959/golang-utils/utils/http/helpers" ) var _ = Describe("helpers", func() { Context("ClientIP", func() { It("return client IP", func() { Expect(helpers.ClientIP(&http.Request{ RemoteAddr: "127.0.0.1", })).To(Equal("127.0.0.1")) Expect(helpers.ClientIP(&http.Request{ RemoteAddr: "192.168.0.1,127.0.0.1", })).To(Equal("192.168.0.1")) Expect(helpers.ClientIP(&http.Request{ RemoteAddr: "192.168.0.1, 127.0.0.1", })).To(Equal("192.168.0.1")) Expect(helpers.ClientIP(&http.Request{ RemoteAddr: "192.168.0.50,192.168.0.1,127.0.0.1", })).To(Equal("192.168.0.50")) Expect(helpers.ClientIP(&http.Request{ RemoteAddr: "192.168.0.50, 192.168.0.1, 127.0.0.1", })).To(Equal("192.168.0.50")) }) }) Context("ClientIPs", func() { It("return array of client IPs", func() { Expect(helpers.ClientIPs(&http.Request{ RemoteAddr: "127.0.0.1", })).To(ConsistOf( "127.0.0.1", )) Expect(helpers.ClientIPs(&http.Request{ RemoteAddr: "192.168.0.1,127.0.0.1", })).To(ConsistOf( "192.168.0.1", "127.0.0.1", )) Expect(helpers.ClientIPs(&http.Request{ RemoteAddr: "192.168.0.1, 127.0.0.1", })).To(ConsistOf( "192.168.0.1", "127.0.0.1", )) Expect(helpers.ClientIPs(&http.Request{ RemoteAddr: "192.168.0.50,192.168.0.1,127.0.0.1", })).To(ConsistOf( "192.168.0.50", "192.168.0.1", "127.0.0.1", )) Expect(helpers.ClientIPs(&http.Request{ RemoteAddr: "192.168.0.50, 192.168.0.1, 127.0.0.1", })).To(ConsistOf( "192.168.0.50", "192.168.0.1", "127.0.0.1", )) }) }) Context("Handles", func() { var srv *httptest.Server var client *http.Client var resp *http.Response var err error Context("HandleAppStatus", func() { BeforeEach(func() { srv = httptest.NewServer(helpers.HandleAppStatus()) 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 app status", func() { Expect(resp.StatusCode).To(Equal(http.StatusOK)) Expect(resp.Header.Get("Content-Type")).To(Equal("application/json")) body, err := io.ReadAll(resp.Body) Expect(err).To(Succeed()) Expect(string(body)).To(MatchRegexp(`{"memory":{"alloc":[0-9]+,"num_gc":[0-9]+,"sys":[0-9]+,"total_alloc":[0-9]+},"routines":[0-9]+}`)) }) }) Context("HandleFile", func() { BeforeEach(func() { srv = httptest.NewServer(helpers.HandleFile("MyContent", "my/type")) 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 file", func() { Expect(resp.StatusCode).To(Equal(http.StatusOK)) Expect(resp.Header.Get("Content-Type")).To(Equal("my/type")) body, err := io.ReadAll(resp.Body) Expect(err).To(Succeed()) Expect(string(body)).To(Equal("MyContent")) }) }) 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")) 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 png", func() { 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("HandleTextCss", func() { BeforeEach(func() { srv = httptest.NewServer(helpers.HandleTextCss("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 text css", func() { Expect(resp.StatusCode).To(Equal(http.StatusOK)) Expect(resp.Header.Get("Content-Type")).To(Equal("text/css")) body, err := io.ReadAll(resp.Body) Expect(err).To(Succeed()) Expect(string(body)).To(Equal("MyContent")) }) }) Context("HandleTextJavaScript", func() { BeforeEach(func() { srv = httptest.NewServer(helpers.HandleTextJavaScript("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 text javascript", func() { Expect(resp.StatusCode).To(Equal(http.StatusOK)) Expect(resp.Header.Get("Content-Type")).To(Equal("text/javascript")) body, err := io.ReadAll(resp.Body) Expect(err).To(Succeed()) Expect(string(body)).To(Equal("MyContent")) }) }) Context("HandleTextPlain", func() { BeforeEach(func() { srv = httptest.NewServer(helpers.HandleTextPlain("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 text plain", func() { Expect(resp.StatusCode).To(Equal(http.StatusOK)) Expect(resp.Header.Get("Content-Type")).To(Equal("text/plain")) body, err := io.ReadAll(resp.Body) Expect(err).To(Succeed()) Expect(string(body)).To(Equal("MyContent")) }) }) Context("HandleTextXml", func() { BeforeEach(func() { srv = httptest.NewServer(helpers.HandleTextXml("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 text xml", func() { Expect(resp.StatusCode).To(Equal(http.StatusOK)) Expect(resp.Header.Get("Content-Type")).To(Equal("text/xml")) body, err := io.ReadAll(resp.Body) Expect(err).To(Succeed()) Expect(string(body)).To(Equal("MyContent")) }) }) Context("RespondAsBadRequest", func() { BeforeEach(func() { var handler = func() http.HandlerFunc { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { helpers.RespondAsBadRequest(w, r, fmt.Errorf("MyError")) }) } srv = httptest.NewServer(handler()) 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 bad request", func() { Expect(resp.StatusCode).To(Equal(http.StatusBadRequest)) Expect(resp.Header.Get("Content-Type")).To(Equal("application/json")) body, err := io.ReadAll(resp.Body) Expect(err).To(Succeed()) Expect(string(body)).To(MatchRegexp(`{"error":"MyError"}`)) }) }) Context("RespondAsInternalServerError", func() { BeforeEach(func() { var handler = func() http.HandlerFunc { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { helpers.RespondAsInternalServerError(w, r) }) } srv = httptest.NewServer(handler()) 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.StatusInternalServerError)) }) }) Context("RespondAsMethodNotAllowed", func() { BeforeEach(func() { var handler = func() http.HandlerFunc { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { helpers.RespondAsMethodNotAllowed(w, r) }) } srv = httptest.NewServer(handler()) 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() { It("minify Html code", func() { Expect(helpers.MinifyHtmlCode(` Index `)).To(Equal(`Index`)) Expect(helpers.MinifyHtmlCode(`
Link 1, Link 2
`)).To(Equal(`
Link 1, Link 2
`)) Expect(helpers.MinifyHtmlCode(`
Contacts: Link 1, Link 2
`)).To(Equal(`
Contacts: Link 1, Link 2
`)) }) }) }) func TestSuite(t *testing.T) { RegisterFailHandler(Fail) RunSpecs(t, "helpers") }