intimate/store_test.go
eson 9d7c2e1e54 1.修改build.sh
2.删除hunter包引用和使用
2020-08-17 14:38:00 +08:00

43 lines
1.0 KiB
Go

package intimate
import (
"testing"
)
func TestStoreInsert(t *testing.T) {
}
func TestStoreInsertCase1(t *testing.T) {
// extractorURI := "root:@tcp(127.0.0.1:4000)/intimate_extractor?charset=utf8"
// db, err := sql.Open("mysql", extractorURI)
// defer db.Close()
// if err != nil {
// t.Error(err)
// }
// insertsql := "insert into anchor_info(uid, platform, anchor_name, platform_url) values(?,?,?,?)"
// _, err = db.Exec(insertsql, string(uuid.NewV4().String()), "1", "1", "1")
// t.Error(err, len(uuid.NewV4().String()))
}
func TestStorePopCase1(t *testing.T) {
// store := NewSourceStore("source_openrec")
// source, err := store.Pop(string(TTOpenrecRanking))
// if err != nil {
// t.Error(err)
// }
// t.Error(source.GetOperator())
// t.Error(gjson.Valid(source.GetSource().String))
// result := gjson.Parse(source.GetSource().String)
// if result.IsArray() {
// for _, User := range result.Array() {
// t.Error(User.Get("channel.id").String())
// }
// } else {
// t.Error("array error")
// }
}