common_test.go 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. package common_test
  2. import (
  3. "fmt"
  4. "io"
  5. "io/ioutil"
  6. "net/url"
  7. "path/filepath"
  8. "testing"
  9. "time"
  10. . "github.com/onsi/ginkgo"
  11. . "github.com/onsi/gomega"
  12. "github.com/vladimirok5959/golang-sql/gosql/common"
  13. )
  14. var _ = Describe("common", func() {
  15. Context("fixQuery", func() {
  16. It("replace param for MySQL driver", func() {
  17. sql := "select id, name from users where id=$1"
  18. Expect(common.FixQuery(sql)).To(Equal("select id, name from users where id=?"))
  19. })
  20. It("replace all params for MySQL driver", func() {
  21. sql := "insert into users set name=$1 where id=$2"
  22. Expect(common.FixQuery(sql)).To(Equal("insert into users set name=? where id=?"))
  23. })
  24. })
  25. Context("log", func() {
  26. Context("time", func() {
  27. It("calculate one second", func() {
  28. str := common.Log(io.Discard, "Exec", time.Now().Add(time.Second*-1), nil, false, "")
  29. Expect(str).To(Equal("\x1b[0;33m[SQL] [func Exec] (empty) (nil) 1.000 ms\x1b[0m\n"))
  30. })
  31. })
  32. Context("format", func() {
  33. It("with func name", func() {
  34. str := common.Log(io.Discard, "Exec", time.Now(), nil, false, "")
  35. Expect(str).To(Equal("\x1b[0;33m[SQL] [func Exec] (empty) (nil) 0.000 ms\x1b[0m\n"))
  36. })
  37. It("with sql query", func() {
  38. str := common.Log(io.Discard, "Exec", time.Now(), nil, false, "select * from users")
  39. Expect(str).To(Equal("\x1b[0;33m[SQL] [func Exec] select * from users (empty) (nil) 0.000 ms\x1b[0m\n"))
  40. })
  41. It("with error message", func() {
  42. str := common.Log(io.Discard, "Exec", time.Now(), fmt.Errorf("Exec error"), false, "select * from users")
  43. Expect(str).To(Equal("\x1b[0;31m[SQL] [func Exec] select * from users (empty) (Exec error) 0.000 ms\x1b[0m\n"))
  44. })
  45. It("with transaction flag", func() {
  46. str := common.Log(io.Discard, "Exec", time.Now(), fmt.Errorf("Exec error"), true, "select * from users")
  47. Expect(str).To(Equal("\x1b[1;31m[SQL] [TX] [func Exec] select * from users (empty) (Exec error) 0.000 ms\x1b[0m\n"))
  48. })
  49. It("with sql query arguments", func() {
  50. str := common.Log(io.Discard, "Exec", time.Now(), fmt.Errorf("Exec error"), true, "select * from users where id=$1", 100)
  51. Expect(str).To(Equal("\x1b[1;31m[SQL] [TX] [func Exec] select * from users where id=$1 ([100]) (Exec error) 0.000 ms\x1b[0m\n"))
  52. })
  53. })
  54. })
  55. Context("scans", func() {
  56. It("convert struct to array of pointers to this struct fields", func() {
  57. var row struct {
  58. ID int64
  59. Name string
  60. Value string
  61. }
  62. Expect(common.Scans(&row)).To(Equal([]any{
  63. &row.ID,
  64. &row.Name,
  65. &row.Value,
  66. }))
  67. })
  68. })
  69. Context("queryRowByIDString", func() {
  70. It("convert struct to SQL query", func() {
  71. var row struct {
  72. ID int64 `field:"id" table:"users"`
  73. Name string `field:"name"`
  74. Value string `field:"value"`
  75. }
  76. Expect(common.QueryRowByIDString(&row)).To(Equal(`SELECT id, name, value FROM users WHERE id = $1 LIMIT 1`))
  77. })
  78. })
  79. Context("rowExistsString", func() {
  80. It("convert struct to SQL query", func() {
  81. var row struct {
  82. ID int64 `field:"id" table:"users"`
  83. Name string `field:"name"`
  84. Value string `field:"value"`
  85. }
  86. Expect(common.RowExistsString(&row)).To(Equal(`SELECT 1 FROM users WHERE id = $1 LIMIT 1`))
  87. })
  88. })
  89. Context("deleteRowByIDString", func() {
  90. It("convert struct to SQL query", func() {
  91. var row struct {
  92. ID int64 `field:"id" table:"users"`
  93. Name string `field:"name"`
  94. Value string `field:"value"`
  95. }
  96. Expect(common.DeleteRowByIDString(&row)).To(Equal(`DELETE FROM users WHERE id = $1 LIMIT 1`))
  97. })
  98. })
  99. Context("ParseUrl", func() {
  100. Context("Success", func() {
  101. It("for MySQL", func() {
  102. // mysql://username:password@127.0.0.1:3306/database?parseTime=true
  103. // mysql://username:password@/database?socket=/var/run/mysqld/mysqld.sock
  104. url := "mysql://username:password@127.0.0.1:3306/database?parseTime=true"
  105. result, err := common.ParseUrl(url)
  106. Expect(err).To(Succeed())
  107. Expect(result.Scheme).To(Equal("mysql"))
  108. Expect(result.User.Username()).To(Equal("username"))
  109. password, whether := result.User.Password()
  110. Expect(password).To(Equal("password"))
  111. Expect(whether).To(BeTrue())
  112. Expect(result.Host).To(Equal("127.0.0.1:3306"))
  113. Expect(result.Path).To(Equal("/database"))
  114. Expect(result.RawQuery).To(Equal("parseTime=true"))
  115. })
  116. It("for PostgreSQL", func() {
  117. // postgres://username:password@127.0.0.1:5432/database?sslmode=disable
  118. // postgresql://username:password@127.0.0.1:5432/database?sslmode=disable
  119. url := "postgres://username:password@127.0.0.1:5432/database?sslmode=disable"
  120. result, err := common.ParseUrl(url)
  121. Expect(err).To(Succeed())
  122. Expect(result.Scheme).To(Equal("postgres"))
  123. Expect(result.User.Username()).To(Equal("username"))
  124. password, whether := result.User.Password()
  125. Expect(password).To(Equal("password"))
  126. Expect(whether).To(BeTrue())
  127. Expect(result.Host).To(Equal("127.0.0.1:5432"))
  128. Expect(result.Path).To(Equal("/database"))
  129. Expect(result.RawQuery).To(Equal("sslmode=disable"))
  130. })
  131. It("for SQLite", func() {
  132. // sqlite:///data/database.sqlite
  133. // sqlite3:///data/database.sqlite
  134. url := "sqlite:///data/database.sqlite"
  135. result, err := common.ParseUrl(url)
  136. Expect(err).To(Succeed())
  137. Expect(result.Scheme).To(Equal("sqlite"))
  138. Expect(result.Host).To(Equal(""))
  139. Expect(result.Path).To(Equal("/data/database.sqlite"))
  140. })
  141. })
  142. Context("Fail", func() {
  143. It("for empty", func() {
  144. _, err := common.ParseUrl("")
  145. Expect(err).NotTo(Succeed())
  146. Expect(err.Error()).To(Equal("protocol scheme is not defined"))
  147. })
  148. It("for else", func() {
  149. url := "12345"
  150. _, err := common.ParseUrl(url)
  151. Expect(err).NotTo(Succeed())
  152. Expect(err.Error()).To(Equal("protocol scheme is not defined"))
  153. })
  154. It("for not supported", func() {
  155. url := "example:///some-else"
  156. _, err := common.ParseUrl(url)
  157. Expect(err).NotTo(Succeed())
  158. Expect(err.Error()).To(Equal("unsupported protocol scheme: example"))
  159. })
  160. })
  161. })
  162. Context("OpenDB", func() {
  163. var migrationsDir string
  164. BeforeEach(func() {
  165. var err error
  166. migrationsDir, err = filepath.Abs("../../db/migrations")
  167. Expect(err).To(Succeed())
  168. })
  169. Context("Success", func() {
  170. // // Note: you need to up MySQL server for this test case
  171. // It("for MySQL", func() {
  172. // databaseURL, err := url.Parse("mysql://root:root@127.0.0.1:3306/gosql")
  173. // Expect(err).To(Succeed())
  174. // db, err := common.OpenDB(databaseURL, migrationsDir, false, false)
  175. // Expect(err).To(Succeed())
  176. // Expect(db.Close()).To(Succeed())
  177. // })
  178. // // Note: you need to up PostgreSQL server for this test case
  179. // It("for PostgreSQL", func() {
  180. // databaseURL, err := url.Parse("postgres://root:root@127.0.0.1:5432/gosql?sslmode=disable")
  181. // Expect(err).To(Succeed())
  182. // db, err := common.OpenDB(databaseURL, migrationsDir, false, false)
  183. // Expect(err).To(Succeed())
  184. // Expect(db.Close()).To(Succeed())
  185. // })
  186. It("for SQLite", func() {
  187. f, err := ioutil.TempFile("", "go-sqlite3-test-")
  188. Expect(err).To(Succeed())
  189. f.Close()
  190. databaseURL, err := url.Parse("sqlite://" + f.Name())
  191. Expect(err).To(Succeed())
  192. db, err := common.OpenDB(databaseURL, migrationsDir, false, false)
  193. Expect(err).To(Succeed())
  194. Expect(db.Close()).To(Succeed())
  195. })
  196. })
  197. })
  198. })
  199. func TestSuite(t *testing.T) {
  200. RegisterFailHandler(Fail)
  201. RunSpecs(t, "gosql/common")
  202. }