helpers_test.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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("MinifyHtmlCode", func() {
  82. It("minify Html code", func() {
  83. Expect(helpers.MinifyHtmlCode(`
  84. <!doctype html>
  85. <html lang="uk">
  86. <head>
  87. <meta charset="utf-8" />
  88. </head>
  89. <body>
  90. Index
  91. </body>
  92. </html>
  93. `)).To(Equal(`<!doctype html><html lang="uk"><head><meta charset="utf-8" /></head><body>Index</body></html>`))
  94. Expect(helpers.MinifyHtmlCode(`
  95. <div>
  96. <a href="#">Link 1</a>, <a href="#">Link 2</a>
  97. </div>
  98. `)).To(Equal(`<div><a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  99. Expect(helpers.MinifyHtmlCode(`
  100. <div>
  101. <b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a>
  102. </div>
  103. `)).To(Equal(`<div><b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  104. })
  105. })
  106. })
  107. func TestSuite(t *testing.T) {
  108. RegisterFailHandler(Fail)
  109. RunSpecs(t, "helpers")
  110. }