helpers_test.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package helpers_test
  2. import (
  3. "net/http"
  4. "testing"
  5. . "github.com/onsi/ginkgo"
  6. . "github.com/onsi/gomega"
  7. "github.com/vladimirok5959/golang-utils/utils/http/helpers"
  8. )
  9. var _ = Describe("helpers", func() {
  10. Context("ClientIP", func() {
  11. It("return client IP", func() {
  12. Expect(helpers.ClientIP(&http.Request{
  13. RemoteAddr: "127.0.0.1",
  14. })).To(Equal("127.0.0.1"))
  15. Expect(helpers.ClientIP(&http.Request{
  16. RemoteAddr: "192.168.0.1,127.0.0.1",
  17. })).To(Equal("192.168.0.1"))
  18. Expect(helpers.ClientIP(&http.Request{
  19. RemoteAddr: "192.168.0.1, 127.0.0.1",
  20. })).To(Equal("192.168.0.1"))
  21. Expect(helpers.ClientIP(&http.Request{
  22. RemoteAddr: "192.168.0.50,192.168.0.1,127.0.0.1",
  23. })).To(Equal("192.168.0.50"))
  24. Expect(helpers.ClientIP(&http.Request{
  25. RemoteAddr: "192.168.0.50, 192.168.0.1, 127.0.0.1",
  26. })).To(Equal("192.168.0.50"))
  27. })
  28. })
  29. Context("ClientIPs", func() {
  30. It("return array of client IPs", func() {
  31. Expect(helpers.ClientIPs(&http.Request{
  32. RemoteAddr: "127.0.0.1",
  33. })).To(ConsistOf(
  34. "127.0.0.1",
  35. ))
  36. Expect(helpers.ClientIPs(&http.Request{
  37. RemoteAddr: "192.168.0.1,127.0.0.1",
  38. })).To(ConsistOf(
  39. "192.168.0.1", "127.0.0.1",
  40. ))
  41. Expect(helpers.ClientIPs(&http.Request{
  42. RemoteAddr: "192.168.0.1, 127.0.0.1",
  43. })).To(ConsistOf(
  44. "192.168.0.1", "127.0.0.1",
  45. ))
  46. Expect(helpers.ClientIPs(&http.Request{
  47. RemoteAddr: "192.168.0.50,192.168.0.1,127.0.0.1",
  48. })).To(ConsistOf(
  49. "192.168.0.50", "192.168.0.1", "127.0.0.1",
  50. ))
  51. Expect(helpers.ClientIPs(&http.Request{
  52. RemoteAddr: "192.168.0.50, 192.168.0.1, 127.0.0.1",
  53. })).To(ConsistOf(
  54. "192.168.0.50", "192.168.0.1", "127.0.0.1",
  55. ))
  56. })
  57. })
  58. Context("MinifyHtmlCode", func() {
  59. It("minify Html code", func() {
  60. Expect(helpers.MinifyHtmlCode(`
  61. <!doctype html>
  62. <html lang="uk">
  63. <head>
  64. <meta charset="utf-8" />
  65. </head>
  66. <body>
  67. Index
  68. </body>
  69. </html>
  70. `)).To(Equal(`<!doctype html><html lang="uk"><head><meta charset="utf-8" /></head><body>Index</body></html>`))
  71. Expect(helpers.MinifyHtmlCode(`
  72. <div>
  73. <a href="#">Link 1</a>, <a href="#">Link 2</a>
  74. </div>
  75. `)).To(Equal(`<div><a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  76. Expect(helpers.MinifyHtmlCode(`
  77. <div>
  78. <b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a>
  79. </div>
  80. `)).To(Equal(`<div><b>Contacts:</b> <a href="#">Link 1</a>, <a href="#">Link 2</a></div>`))
  81. })
  82. })
  83. })
  84. func TestSuite(t *testing.T) {
  85. RegisterFailHandler(Fail)
  86. RunSpecs(t, "helpers")
  87. }