mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 05:07:44 +08:00
77 lines
2.4 KiB
Go
77 lines
2.4 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gdb_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/v2/container/gtype"
|
|
"github.com/gogf/gf/v2/database/gdb"
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
)
|
|
|
|
// MyDriver is a custom database driver, which is used for testing only.
|
|
// For simplifying the unit testing case purpose, MyDriver struct inherits the mysql driver
|
|
// gdb.DriverMysql and overwrites its function DoCommit.
|
|
// So if there's any sql execution, it goes through MyDriver.DoCommit firstly and
|
|
// then gdb.DriverMysql.DoCommit.
|
|
// You can call it sql "HOOK" or "HiJack" as your will.
|
|
type MyDriver struct {
|
|
*gdb.DriverMysql
|
|
}
|
|
|
|
var (
|
|
customDriverName = "MyDriver"
|
|
latestSqlString = gtype.NewString() // For simplifying unit testing only.
|
|
)
|
|
|
|
// New creates and returns a database object for mysql.
|
|
// It implements the interface of gdb.Driver for extra database driver installation.
|
|
func (d *MyDriver) New(core *gdb.Core, node *gdb.ConfigNode) (gdb.DB, error) {
|
|
return &MyDriver{
|
|
&gdb.DriverMysql{
|
|
Core: core,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// DoCommit handles the sql before posts it to database.
|
|
// It here overwrites the same method of gdb.DriverMysql and makes some custom changes.
|
|
func (d *MyDriver) DoCommit(ctx context.Context, link gdb.Link, sql string, args []interface{}) (newSql string, newArgs []interface{}, err error) {
|
|
latestSqlString.Set(sql)
|
|
return d.DriverMysql.DoCommit(ctx, link, sql, args)
|
|
}
|
|
|
|
func init() {
|
|
// It here registers my custom driver in package initialization function "init".
|
|
// You can later use this type in the database configuration.
|
|
gdb.Register(customDriverName, &MyDriver{})
|
|
}
|
|
|
|
func Test_Custom_Driver(t *testing.T) {
|
|
gdb.AddConfigNode("driver-test", gdb.ConfigNode{
|
|
Host: "127.0.0.1",
|
|
Port: "3306",
|
|
User: TestDbUser,
|
|
Pass: TestDbPass,
|
|
Name: "test",
|
|
Type: customDriverName,
|
|
Role: "master",
|
|
Charset: "utf8",
|
|
})
|
|
gtest.C(t, func(t *gtest.T) {
|
|
t.Assert(latestSqlString.Val(), "")
|
|
sqlString := "select 10000"
|
|
value, err := g.DB("driver-test").GetValue(ctx, sqlString)
|
|
t.AssertNil(err)
|
|
t.Assert(value, 10000)
|
|
t.Assert(latestSqlString.Val(), sqlString)
|
|
})
|
|
}
|