mirror of
https://github.com/go-micro/go-micro.git
synced 2025-06-12 22:07:47 +02:00
fix: add more
This commit is contained in:
69
store/mysql/mysql_test.go
Normal file
69
store/mysql/mysql_test.go
Normal file
@ -0,0 +1,69 @@
|
||||
//go:build integration
|
||||
// +build integration
|
||||
|
||||
package mysql
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"os"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
_ "github.com/go-sql-driver/mysql"
|
||||
"go-micro.dev/v5/store"
|
||||
)
|
||||
|
||||
var (
|
||||
sqlStoreT store.Store
|
||||
)
|
||||
|
||||
func TestMain(m *testing.M) {
|
||||
if tr := os.Getenv("TRAVIS"); len(tr) > 0 {
|
||||
os.Exit(0)
|
||||
}
|
||||
|
||||
sqlStoreT = NewMysqlStore(
|
||||
store.Database("testMicro"),
|
||||
store.Nodes("root:123@(127.0.0.1:3306)/test?charset=utf8&parseTime=true&loc=Asia%2FShanghai"),
|
||||
)
|
||||
os.Exit(m.Run())
|
||||
}
|
||||
|
||||
func TestWrite(t *testing.T) {
|
||||
err := sqlStoreT.Write(
|
||||
&store.Record{
|
||||
Key: "test",
|
||||
Value: []byte("foo2"),
|
||||
Expiry: time.Second * 200,
|
||||
},
|
||||
)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
||||
func TestDelete(t *testing.T) {
|
||||
err := sqlStoreT.Delete("test")
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
||||
func TestRead(t *testing.T) {
|
||||
records, err := sqlStoreT.Read("test")
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
|
||||
t.Log(string(records[0].Value))
|
||||
}
|
||||
|
||||
func TestList(t *testing.T) {
|
||||
records, err := sqlStoreT.List()
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
} else {
|
||||
beauty, _ := json.Marshal(records)
|
||||
t.Log(string(beauty))
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user