helpers_test.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  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. var resp *http.Response
  15. var err error
  16. Context("ClientIP", func() {
  17. It("return client IP", func() {
  18. Expect(helpers.ClientIP(&http.Request{
  19. RemoteAddr: "127.0.0.1",
  20. })).To(Equal("127.0.0.1"))
  21. Expect(helpers.ClientIP(&http.Request{
  22. RemoteAddr: "192.168.0.1,127.0.0.1",
  23. })).To(Equal("192.168.0.1"))
  24. Expect(helpers.ClientIP(&http.Request{
  25. RemoteAddr: "192.168.0.1, 127.0.0.1",
  26. })).To(Equal("192.168.0.1"))
  27. Expect(helpers.ClientIP(&http.Request{
  28. RemoteAddr: "192.168.0.50,192.168.0.1,127.0.0.1",
  29. })).To(Equal("192.168.0.50"))
  30. Expect(helpers.ClientIP(&http.Request{
  31. RemoteAddr: "192.168.0.50, 192.168.0.1, 127.0.0.1",
  32. })).To(Equal("192.168.0.50"))
  33. })
  34. })
  35. Context("ClientIPs", func() {
  36. It("return array of client IPs", func() {
  37. Expect(helpers.ClientIPs(&http.Request{
  38. RemoteAddr: "127.0.0.1",
  39. })).To(ConsistOf(
  40. "127.0.0.1",
  41. ))
  42. Expect(helpers.ClientIPs(&http.Request{
  43. RemoteAddr: "192.168.0.1,127.0.0.1",
  44. })).To(ConsistOf(
  45. "192.168.0.1", "127.0.0.1",
  46. ))
  47. Expect(helpers.ClientIPs(&http.Request{
  48. RemoteAddr: "192.168.0.1, 127.0.0.1",
  49. })).To(ConsistOf(
  50. "192.168.0.1", "127.0.0.1",
  51. ))
  52. Expect(helpers.ClientIPs(&http.Request{
  53. RemoteAddr: "192.168.0.50,192.168.0.1,127.0.0.1",
  54. })).To(ConsistOf(
  55. "192.168.0.50", "192.168.0.1", "127.0.0.1",
  56. ))
  57. Expect(helpers.ClientIPs(&http.Request{
  58. RemoteAddr: "192.168.0.50, 192.168.0.1, 127.0.0.1",
  59. })).To(ConsistOf(
  60. "192.168.0.50", "192.168.0.1", "127.0.0.1",
  61. ))
  62. })
  63. })
  64. Context("HandleAppStatus", func() {
  65. BeforeEach(func() {
  66. srv = httptest.NewServer(helpers.HandleAppStatus())
  67. client = srv.Client()
  68. resp, err = client.Get(srv.URL + "/")
  69. Expect(err).To(Succeed())
  70. })
  71. AfterEach(func() {
  72. resp.Body.Close()
  73. srv.Close()
  74. })
  75. It("handle app status", func() {
  76. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  77. Expect(resp.Header.Get("Content-Type")).To(Equal("application/json"))
  78. body, err := io.ReadAll(resp.Body)
  79. Expect(err).To(Succeed())
  80. Expect(string(body)).To(MatchRegexp(`{"memory":{"alloc":[0-9]+,"num_gc":[0-9]+,"sys":[0-9]+,"total_alloc":[0-9]+},"routines":[0-9]+}`))
  81. })
  82. })
  83. Context("HandleFile", func() {
  84. BeforeEach(func() {
  85. srv = httptest.NewServer(helpers.HandleFile("MyContent", "my/type"))
  86. client = srv.Client()
  87. resp, err = client.Get(srv.URL + "/")
  88. Expect(err).To(Succeed())
  89. })
  90. AfterEach(func() {
  91. resp.Body.Close()
  92. srv.Close()
  93. })
  94. It("handle file", func() {
  95. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  96. Expect(resp.Header.Get("Content-Type")).To(Equal("my/type"))
  97. body, err := io.ReadAll(resp.Body)
  98. Expect(err).To(Succeed())
  99. Expect(string(body)).To(Equal("MyContent"))
  100. })
  101. })
  102. Context("HandleImagePng", func() {
  103. BeforeEach(func() {
  104. srv = httptest.NewServer(helpers.HandleImagePng("MyContent"))
  105. client = srv.Client()
  106. resp, err = client.Get(srv.URL + "/")
  107. Expect(err).To(Succeed())
  108. })
  109. AfterEach(func() {
  110. resp.Body.Close()
  111. srv.Close()
  112. })
  113. It("handle image png", func() {
  114. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  115. Expect(resp.Header.Get("Content-Type")).To(Equal("image/png"))
  116. body, err := io.ReadAll(resp.Body)
  117. Expect(err).To(Succeed())
  118. Expect(string(body)).To(Equal("MyContent"))
  119. })
  120. })
  121. Context("HandleTextCss", func() {
  122. BeforeEach(func() {
  123. srv = httptest.NewServer(helpers.HandleTextCss("MyContent"))
  124. client = srv.Client()
  125. resp, err = client.Get(srv.URL + "/")
  126. Expect(err).To(Succeed())
  127. })
  128. AfterEach(func() {
  129. resp.Body.Close()
  130. srv.Close()
  131. })
  132. It("handle text css", func() {
  133. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  134. Expect(resp.Header.Get("Content-Type")).To(Equal("text/css"))
  135. body, err := io.ReadAll(resp.Body)
  136. Expect(err).To(Succeed())
  137. Expect(string(body)).To(Equal("MyContent"))
  138. })
  139. })
  140. Context("HandleTextJavaScript", func() {
  141. BeforeEach(func() {
  142. srv = httptest.NewServer(helpers.HandleTextJavaScript("MyContent"))
  143. client = srv.Client()
  144. resp, err = client.Get(srv.URL + "/")
  145. Expect(err).To(Succeed())
  146. })
  147. AfterEach(func() {
  148. resp.Body.Close()
  149. srv.Close()
  150. })
  151. It("handle text javascript", func() {
  152. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  153. Expect(resp.Header.Get("Content-Type")).To(Equal("text/javascript"))
  154. body, err := io.ReadAll(resp.Body)
  155. Expect(err).To(Succeed())
  156. Expect(string(body)).To(Equal("MyContent"))
  157. })
  158. })
  159. Context("HandleTextPlain", func() {
  160. BeforeEach(func() {
  161. srv = httptest.NewServer(helpers.HandleTextPlain("MyContent"))
  162. client = srv.Client()
  163. resp, err = client.Get(srv.URL + "/")
  164. Expect(err).To(Succeed())
  165. })
  166. AfterEach(func() {
  167. resp.Body.Close()
  168. srv.Close()
  169. })
  170. It("handle text plain", func() {
  171. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  172. Expect(resp.Header.Get("Content-Type")).To(Equal("text/plain"))
  173. body, err := io.ReadAll(resp.Body)
  174. Expect(err).To(Succeed())
  175. Expect(string(body)).To(Equal("MyContent"))
  176. })
  177. })
  178. Context("HandleTextXml", func() {
  179. BeforeEach(func() {
  180. srv = httptest.NewServer(helpers.HandleTextXml("MyContent"))
  181. client = srv.Client()
  182. resp, err = client.Get(srv.URL + "/")
  183. Expect(err).To(Succeed())
  184. })
  185. AfterEach(func() {
  186. resp.Body.Close()
  187. srv.Close()
  188. })
  189. It("handle text xml", func() {
  190. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  191. Expect(resp.Header.Get("Content-Type")).To(Equal("text/xml"))
  192. body, err := io.ReadAll(resp.Body)
  193. Expect(err).To(Succeed())
  194. Expect(string(body)).To(Equal("MyContent"))
  195. })
  196. })
  197. Context("MinifyHtmlCode", func() {
  198. It("minify Html code", func() {
  199. Expect(helpers.MinifyHtmlCode(`
  200. <!doctype html>
  201. <html lang="uk">
  202. <head>
  203. <meta charset="utf-8" />
  204. </head>
  205. <body>
  206. Index
  207. </body>
  208. </html>
  209. `)).To(Equal(`<!doctype html><html lang="uk"><head><meta charset="utf-8" /></head><body>Index</body></html>`))
  210. Expect(helpers.MinifyHtmlCode(`
  211. <div>
  212. <a href="#">Link 1</a>, <a href="#">Link 2</a>
  213. </div>
  214. `)).To(Equal(`<div><a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  215. Expect(helpers.MinifyHtmlCode(`
  216. <div>
  217. <b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a>
  218. </div>
  219. `)).To(Equal(`<div><b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  220. })
  221. })
  222. })
  223. func TestSuite(t *testing.T) {
  224. RegisterFailHandler(Fail)
  225. RunSpecs(t, "helpers")
  226. }