Volodymyr Tkach 2 years ago
parent
commit
c53fa508e1
2 changed files with 16 additions and 0 deletions
  1. 6 0
      utils/http/helpers/helpers.go
  2. 10 0
      utils/http/helpers/helpers_test.go

+ 6 - 0
utils/http/helpers/helpers.go

@@ -10,6 +10,7 @@ import (
 	"os"
 	"regexp"
 	"runtime"
+	"strconv"
 	"strings"
 	"time"
 
@@ -26,6 +27,7 @@ import (
 // func HandleTextJavaScript(data string) http.Handler
 // func HandleTextPlain(data string) http.Handler
 // func HandleTextXml(data string) http.Handler
+// func IntToStr(value int64) string
 // func Md5Hash(str []byte) string
 // func MinifyHtmlCode(str string) string
 // func MinifyHtmlJsCode(str string) string
@@ -150,6 +152,10 @@ func HandleTextXml(data string) http.Handler {
 	return HandleFile(data, "text/xml")
 }
 
+func IntToStr(value int64) string {
+	return strconv.FormatInt(value, 10)
+}
+
 func Md5Hash(str []byte) string {
 	h := md5.New()
 	if _, err := h.Write(str); err != nil {

+ 10 - 0
utils/http/helpers/helpers_test.go

@@ -291,6 +291,16 @@ var _ = Describe("helpers", func() {
 			})
 		})
 
+		Context("IntToStr", func() {
+			It("convert int to string", func() {
+				Expect(helpers.IntToStr(1)).To(Equal("1"))
+				Expect(helpers.IntToStr(5)).To(Equal("5"))
+				Expect(helpers.IntToStr(50)).To(Equal("50"))
+				Expect(helpers.IntToStr(100)).To(Equal("100"))
+				Expect(helpers.IntToStr(1000)).To(Equal("1000"))
+			})
+		})
+
 		Context("RespondAsBadRequest", func() {
 			BeforeEach(func() {
 				var handler = func() http.HandlerFunc {