helpers_test.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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 image png", 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("HandleTextCss", func() {
  120. BeforeEach(func() {
  121. srv = httptest.NewServer(helpers.HandleTextCss("MyContent"))
  122. client = srv.Client()
  123. })
  124. AfterEach(func() {
  125. srv.Close()
  126. })
  127. It("handle text css", func() {
  128. resp, err := client.Get(srv.URL + "/")
  129. Expect(err).To(Succeed())
  130. defer resp.Body.Close()
  131. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  132. Expect(resp.Header.Get("Content-Type")).To(Equal("text/css"))
  133. body, err := io.ReadAll(resp.Body)
  134. Expect(err).To(Succeed())
  135. Expect(string(body)).To(Equal("MyContent"))
  136. })
  137. })
  138. Context("HandleTextJavaScript", func() {
  139. BeforeEach(func() {
  140. srv = httptest.NewServer(helpers.HandleTextJavaScript("MyContent"))
  141. client = srv.Client()
  142. })
  143. AfterEach(func() {
  144. srv.Close()
  145. })
  146. It("handle text javascript", func() {
  147. resp, err := client.Get(srv.URL + "/")
  148. Expect(err).To(Succeed())
  149. defer resp.Body.Close()
  150. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  151. Expect(resp.Header.Get("Content-Type")).To(Equal("text/javascript"))
  152. body, err := io.ReadAll(resp.Body)
  153. Expect(err).To(Succeed())
  154. Expect(string(body)).To(Equal("MyContent"))
  155. })
  156. })
  157. Context("HandleTextPlain", func() {
  158. BeforeEach(func() {
  159. srv = httptest.NewServer(helpers.HandleTextPlain("MyContent"))
  160. client = srv.Client()
  161. })
  162. AfterEach(func() {
  163. srv.Close()
  164. })
  165. It("handle text plain", func() {
  166. resp, err := client.Get(srv.URL + "/")
  167. Expect(err).To(Succeed())
  168. defer resp.Body.Close()
  169. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  170. Expect(resp.Header.Get("Content-Type")).To(Equal("text/plain"))
  171. body, err := io.ReadAll(resp.Body)
  172. Expect(err).To(Succeed())
  173. Expect(string(body)).To(Equal("MyContent"))
  174. })
  175. })
  176. Context("HandleTextXml", func() {
  177. BeforeEach(func() {
  178. srv = httptest.NewServer(helpers.HandleTextXml("MyContent"))
  179. client = srv.Client()
  180. })
  181. AfterEach(func() {
  182. srv.Close()
  183. })
  184. It("handle text xml", func() {
  185. resp, err := client.Get(srv.URL + "/")
  186. Expect(err).To(Succeed())
  187. defer resp.Body.Close()
  188. Expect(resp.StatusCode).To(Equal(http.StatusOK))
  189. Expect(resp.Header.Get("Content-Type")).To(Equal("text/xml"))
  190. body, err := io.ReadAll(resp.Body)
  191. Expect(err).To(Succeed())
  192. Expect(string(body)).To(Equal("MyContent"))
  193. })
  194. })
  195. Context("MinifyHtmlCode", func() {
  196. It("minify Html code", func() {
  197. Expect(helpers.MinifyHtmlCode(`
  198. <!doctype html>
  199. <html lang="uk">
  200. <head>
  201. <meta charset="utf-8" />
  202. </head>
  203. <body>
  204. Index
  205. </body>
  206. </html>
  207. `)).To(Equal(`<!doctype html><html lang="uk"><head><meta charset="utf-8" /></head><body>Index</body></html>`))
  208. Expect(helpers.MinifyHtmlCode(`
  209. <div>
  210. <a href="#">Link 1</a>, <a href="#">Link 2</a>
  211. </div>
  212. `)).To(Equal(`<div><a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  213. Expect(helpers.MinifyHtmlCode(`
  214. <div>
  215. <b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a>
  216. </div>
  217. `)).To(Equal(`<div><b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  218. })
  219. })
  220. })
  221. func TestSuite(t *testing.T) {
  222. RegisterFailHandler(Fail)
  223. RunSpecs(t, "helpers")
  224. }