123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- package common_test
- import (
- "fmt"
- "io"
- "io/ioutil"
- "net/url"
- "path/filepath"
- "testing"
- "time"
- . "github.com/onsi/ginkgo"
- . "github.com/onsi/gomega"
- "github.com/vladimirok5959/golang-sql/gosql/common"
- )
- var _ = Describe("common", func() {
- Context("fixQuery", func() {
- It("replace param for MySQL driver", func() {
- sql := "select id, name from users where id=$1"
- Expect(common.FixQuery(sql)).To(Equal("select id, name from users where id=?"))
- })
- It("replace all params for MySQL driver", func() {
- sql := "insert into users set name=$1 where id=$2"
- Expect(common.FixQuery(sql)).To(Equal("insert into users set name=? where id=?"))
- })
- })
- Context("log", func() {
- Context("time", func() {
- It("calculate one second", func() {
- str := common.Log(io.Discard, "Exec", time.Now().Add(time.Second*-1), nil, false, "")
- Expect(str).To(Equal("\x1b[0;33m[SQL] [func Exec] (empty) (nil) 1.000 ms\x1b[0m\n"))
- })
- })
- Context("format", func() {
- It("with func name", func() {
- str := common.Log(io.Discard, "Exec", time.Now(), nil, false, "")
- Expect(str).To(Equal("\x1b[0;33m[SQL] [func Exec] (empty) (nil) 0.000 ms\x1b[0m\n"))
- })
- It("with sql query", func() {
- str := common.Log(io.Discard, "Exec", time.Now(), nil, false, "select * from users")
- Expect(str).To(Equal("\x1b[0;33m[SQL] [func Exec] select * from users (empty) (nil) 0.000 ms\x1b[0m\n"))
- })
- It("with error message", func() {
- str := common.Log(io.Discard, "Exec", time.Now(), fmt.Errorf("Exec error"), false, "select * from users")
- Expect(str).To(Equal("\x1b[0;31m[SQL] [func Exec] select * from users (empty) (Exec error) 0.000 ms\x1b[0m\n"))
- })
- It("with transaction flag", func() {
- str := common.Log(io.Discard, "Exec", time.Now(), fmt.Errorf("Exec error"), true, "select * from users")
- Expect(str).To(Equal("\x1b[1;31m[SQL] [TX] [func Exec] select * from users (empty) (Exec error) 0.000 ms\x1b[0m\n"))
- })
- It("with sql query arguments", func() {
- str := common.Log(io.Discard, "Exec", time.Now(), fmt.Errorf("Exec error"), true, "select * from users where id=$1", 100)
- 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"))
- })
- })
- })
- Context("scans", func() {
- It("convert struct to array of pointers to this struct fields", func() {
- var row struct {
- ID int64
- Name string
- Value string
- }
- Expect(common.Scans(&row)).To(Equal([]any{
- &row.ID,
- &row.Name,
- &row.Value,
- }))
- })
- })
- Context("queryRowByIDString", func() {
- It("convert struct to SQL query", func() {
- var row struct {
- ID int64 `field:"id" table:"users"`
- Name string `field:"name"`
- Value string `field:"value"`
- }
- Expect(common.QueryRowByIDString(&row)).To(Equal(`SELECT id, name, value FROM users WHERE id = $1 LIMIT 1`))
- })
- })
- Context("rowExistsString", func() {
- It("convert struct to SQL query", func() {
- var row struct {
- ID int64 `field:"id" table:"users"`
- Name string `field:"name"`
- Value string `field:"value"`
- }
- Expect(common.RowExistsString(&row)).To(Equal(`SELECT 1 FROM users WHERE id = $1 LIMIT 1`))
- })
- })
- Context("deleteRowByIDString", func() {
- It("convert struct to SQL query", func() {
- var row struct {
- ID int64 `field:"id" table:"users"`
- Name string `field:"name"`
- Value string `field:"value"`
- }
- Expect(common.DeleteRowByIDString(&row)).To(Equal(`DELETE FROM users WHERE id = $1 LIMIT 1`))
- })
- })
- Context("ParseUrl", func() {
- Context("Success", func() {
- It("for MySQL", func() {
- // mysql://username:password@127.0.0.1:3306/database?parseTime=true
- // mysql://username:password@/database?socket=/var/run/mysqld/mysqld.sock
- url := "mysql://username:password@127.0.0.1:3306/database?parseTime=true"
- result, err := common.ParseUrl(url)
- Expect(err).To(Succeed())
- Expect(result.Scheme).To(Equal("mysql"))
- Expect(result.User.Username()).To(Equal("username"))
- password, whether := result.User.Password()
- Expect(password).To(Equal("password"))
- Expect(whether).To(BeTrue())
- Expect(result.Host).To(Equal("127.0.0.1:3306"))
- Expect(result.Path).To(Equal("/database"))
- Expect(result.RawQuery).To(Equal("parseTime=true"))
- })
- It("for PostgreSQL", func() {
- // postgres://username:password@127.0.0.1:5432/database?sslmode=disable
- // postgresql://username:password@127.0.0.1:5432/database?sslmode=disable
- url := "postgres://username:password@127.0.0.1:5432/database?sslmode=disable"
- result, err := common.ParseUrl(url)
- Expect(err).To(Succeed())
- Expect(result.Scheme).To(Equal("postgres"))
- Expect(result.User.Username()).To(Equal("username"))
- password, whether := result.User.Password()
- Expect(password).To(Equal("password"))
- Expect(whether).To(BeTrue())
- Expect(result.Host).To(Equal("127.0.0.1:5432"))
- Expect(result.Path).To(Equal("/database"))
- Expect(result.RawQuery).To(Equal("sslmode=disable"))
- })
- It("for SQLite", func() {
- // sqlite:///data/database.sqlite
- // sqlite3:///data/database.sqlite
- url := "sqlite:///data/database.sqlite"
- result, err := common.ParseUrl(url)
- Expect(err).To(Succeed())
- Expect(result.Scheme).To(Equal("sqlite"))
- Expect(result.Host).To(Equal(""))
- Expect(result.Path).To(Equal("/data/database.sqlite"))
- })
- })
- Context("Fail", func() {
- It("for empty", func() {
- _, err := common.ParseUrl("")
- Expect(err).NotTo(Succeed())
- Expect(err.Error()).To(Equal("protocol scheme is not defined"))
- })
- It("for else", func() {
- url := "12345"
- _, err := common.ParseUrl(url)
- Expect(err).NotTo(Succeed())
- Expect(err.Error()).To(Equal("protocol scheme is not defined"))
- })
- It("for not supported", func() {
- url := "example:///some-else"
- _, err := common.ParseUrl(url)
- Expect(err).NotTo(Succeed())
- Expect(err.Error()).To(Equal("unsupported protocol scheme: example"))
- })
- })
- })
- Context("OpenDB", func() {
- var migrationsDir string
- BeforeEach(func() {
- var err error
- migrationsDir, err = filepath.Abs("../../db/migrations")
- Expect(err).To(Succeed())
- })
- Context("Success", func() {
- // // Note: you need to up MySQL server for this test case
- // It("for MySQL", func() {
- // databaseURL, err := url.Parse("mysql://root:root@127.0.0.1:3306/gosql")
- // Expect(err).To(Succeed())
- // db, err := common.OpenDB(databaseURL, migrationsDir, false, false)
- // Expect(err).To(Succeed())
- // Expect(db.Close()).To(Succeed())
- // })
- // // Note: you need to up PostgreSQL server for this test case
- // It("for PostgreSQL", func() {
- // databaseURL, err := url.Parse("postgres://root:root@127.0.0.1:5432/gosql?sslmode=disable")
- // Expect(err).To(Succeed())
- // db, err := common.OpenDB(databaseURL, migrationsDir, false, false)
- // Expect(err).To(Succeed())
- // Expect(db.Close()).To(Succeed())
- // })
- It("for SQLite", func() {
- f, err := ioutil.TempFile("", "go-sqlite3-test-")
- Expect(err).To(Succeed())
- f.Close()
- databaseURL, err := url.Parse("sqlite://" + f.Name())
- Expect(err).To(Succeed())
- db, err := common.OpenDB(databaseURL, migrationsDir, false, false)
- Expect(err).To(Succeed())
- Expect(db.Close()).To(Succeed())
- })
- })
- })
- })
- func TestSuite(t *testing.T) {
- RegisterFailHandler(Fail)
- RunSpecs(t, "gosql/common")
- }
|