helpers_test.go 7.5 KB

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