代码拉取完成,页面将自动刷新
package gosql
import (
"strconv"
"testing"
)
func mapInsert(t *testing.T, id int64) int64 {
id, err := Table("users").Create(map[string]interface{}{
"id": id,
"name": "test" + strconv.Itoa(int(id)),
"status": 1,
"created_at": "2018-07-11 11:58:21",
"updated_at": "2018-07-11 11:58:21",
})
if err != nil {
t.Error(err)
}
if id <= 0 {
t.Error("map insert error")
}
return id
}
func TestMapper_Create(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
mapInsert(t, 1)
})
}
func TestMapper_Update(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
id := mapInsert(t, 1)
affected, err := Table("users").Where("id = ?", id).Update(map[string]interface{}{
"name": "fifsky",
})
if err != nil {
t.Error(err)
}
if affected <= 0 {
t.Error("map update error")
}
})
}
func TestMapper_Delete(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
{
id := mapInsert(t, 1)
affected, err := Table("users").Where("id = ?", id).Delete()
if err != nil {
t.Error(err)
}
if affected <= 0 {
t.Error("map delete error")
}
}
{
mapInsert(t, 2)
affected, err := Table("users").Delete()
if err != nil {
t.Error(err)
}
if affected <= 0 {
t.Error("map delete error")
}
}
})
}
func TestMapper_Count(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
{
id := mapInsert(t, 1)
num, err := Table("users").Where("id = ?", id).Count()
if err != nil {
t.Error(err)
}
if num != 1 {
t.Error("map count error")
}
}
{
mapInsert(t, 2)
mapInsert(t, 3)
num, err := Table("users").Count()
if err != nil {
t.Error(err)
}
if num <= 0 {
t.Error("map count error")
}
}
})
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。