helpers_test.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package helpers_test
  2. import (
  3. "io"
  4. "net/http"
  5. "net/http/httptest"
  6. "testing"
  7. . "github.com/onsi/ginkgo"
  8. . "github.com/onsi/gomega"
  9. "github.com/vladimirok5959/golang-utils/utils/http/helpers"
  10. )
  11. var _ = Describe("helpers", func() {
  12. var srv *httptest.Server
  13. var client *http.Client
  14. Context("ClientIP", func() {
  15. It("return client IP", func() {
  16. Expect(helpers.ClientIP(&http.Request{
  17. RemoteAddr: "127.0.0.1",
  18. })).To(Equal("127.0.0.1"))
  19. Expect(helpers.ClientIP(&http.Request{
  20. RemoteAddr: "192.168.0.1,127.0.0.1",
  21. })).To(Equal("192.168.0.1"))
  22. Expect(helpers.ClientIP(&http.Request{
  23. RemoteAddr: "192.168.0.1, 127.0.0.1",
  24. })).To(Equal("192.168.0.1"))
  25. Expect(helpers.ClientIP(&http.Request{
  26. RemoteAddr: "192.168.0.50,192.168.0.1,127.0.0.1",
  27. })).To(Equal("192.168.0.50"))
  28. Expect(helpers.ClientIP(&http.Request{
  29. RemoteAddr: "192.168.0.50, 192.168.0.1, 127.0.0.1",
  30. })).To(Equal("192.168.0.50"))
  31. })
  32. })
  33. Context("ClientIPs", func() {
  34. It("return array of client IPs", func() {
  35. Expect(helpers.ClientIPs(&http.Request{
  36. RemoteAddr: "127.0.0.1",
  37. })).To(ConsistOf(
  38. "127.0.0.1",
  39. ))
  40. Expect(helpers.ClientIPs(&http.Request{
  41. RemoteAddr: "192.168.0.1,127.0.0.1",
  42. })).To(ConsistOf(
  43. "192.168.0.1", "127.0.0.1",
  44. ))
  45. Expect(helpers.ClientIPs(&http.Request{
  46. RemoteAddr: "192.168.0.1, 127.0.0.1",
  47. })).To(ConsistOf(
  48. "192.168.0.1", "127.0.0.1",
  49. ))
  50. Expect(helpers.ClientIPs(&http.Request{
  51. RemoteAddr: "192.168.0.50,192.168.0.1,127.0.0.1",
  52. })).To(ConsistOf(
  53. "192.168.0.50", "192.168.0.1", "127.0.0.1",
  54. ))
  55. Expect(helpers.ClientIPs(&http.Request{
  56. RemoteAddr: "192.168.0.50, 192.168.0.1, 127.0.0.1",
  57. })).To(ConsistOf(
  58. "192.168.0.50", "192.168.0.1", "127.0.0.1",
  59. ))
  60. })
  61. })
  62. Context("HandleAppStatus", func() {
  63. BeforeEach(func() {
  64. srv = httptest.NewServer(helpers.HandleAppStatus())
  65. client = srv.Client()
  66. })
  67. AfterEach(func() {
  68. srv.Close()
  69. })
  70. It("handle app status", func() {
  71. resp, err := client.Get(srv.URL + "/")
  72. Expect(err).To(Succeed())
  73. defer resp.Body.Close()
  74. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  75. Expect(resp.Header.Get("Content-Type")).To(Equal("application/json"))
  76. body, err := io.ReadAll(resp.Body)
  77. Expect(err).To(Succeed())
  78. Expect(string(body)).To(MatchRegexp(`{"memory":{"alloc":[0-9]+,"num_gc":[0-9]+,"sys":[0-9]+,"total_alloc":[0-9]+},"routines":[0-9]+}`))
  79. })
  80. })
  81. Context("HandleFile", func() {
  82. BeforeEach(func() {
  83. srv = httptest.NewServer(helpers.HandleFile("MyContent", "my/type"))
  84. client = srv.Client()
  85. })
  86. AfterEach(func() {
  87. srv.Close()
  88. })
  89. It("handle file", func() {
  90. resp, err := client.Get(srv.URL + "/")
  91. Expect(err).To(Succeed())
  92. defer resp.Body.Close()
  93. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  94. Expect(resp.Header.Get("Content-Type")).To(Equal("my/type"))
  95. body, err := io.ReadAll(resp.Body)
  96. Expect(err).To(Succeed())
  97. Expect(string(body)).To(Equal("MyContent"))
  98. })
  99. })
  100. Context("HandleImagePng", func() {
  101. BeforeEach(func() {
  102. srv = httptest.NewServer(helpers.HandleImagePng("MyContent"))
  103. client = srv.Client()
  104. })
  105. AfterEach(func() {
  106. srv.Close()
  107. })
  108. It("handle file", func() {
  109. resp, err := client.Get(srv.URL + "/")
  110. Expect(err).To(Succeed())
  111. defer resp.Body.Close()
  112. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  113. Expect(resp.Header.Get("Content-Type")).To(Equal("image/png"))
  114. body, err := io.ReadAll(resp.Body)
  115. Expect(err).To(Succeed())
  116. Expect(string(body)).To(Equal("MyContent"))
  117. })
  118. })
  119. Context("MinifyHtmlCode", func() {
  120. It("minify Html code", func() {
  121. Expect(helpers.MinifyHtmlCode(`
  122. <!doctype html>
  123. <html lang="uk">
  124. <head>
  125. <meta charset="utf-8" />
  126. </head>
  127. <body>
  128. Index
  129. </body>
  130. </html>
  131. `)).To(Equal(`<!doctype html><html lang="uk"><head><meta charset="utf-8" /></head><body>Index</body></html>`))
  132. Expect(helpers.MinifyHtmlCode(`
  133. <div>
  134. <a href="#">Link 1</a>, <a href="#">Link 2</a>
  135. </div>
  136. `)).To(Equal(`<div><a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  137. Expect(helpers.MinifyHtmlCode(`
  138. <div>
  139. <b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a>
  140. </div>
  141. `)).To(Equal(`<div><b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  142. })
  143. })
  144. })
  145. func TestSuite(t *testing.T) {
  146. RegisterFailHandler(Fail)
  147. RunSpecs(t, "helpers")
  148. }