wp-go/model/query_test.go

434 lines
10 KiB
Go
Raw Normal View History

2023-01-12 12:42:16 +00:00
package model
2022-11-05 14:40:02 +00:00
import (
2022-11-07 08:08:15 +00:00
"context"
2023-01-12 12:42:16 +00:00
"github/fthvgb1/wp-go/internal/config"
"github/fthvgb1/wp-go/internal/db"
wp2 "github/fthvgb1/wp-go/internal/models"
2022-11-05 14:40:02 +00:00
"reflect"
"testing"
)
2022-11-07 08:08:15 +00:00
var ctx = context.Background()
2022-11-05 14:40:02 +00:00
func init() {
2022-11-05 14:44:35 +00:00
err := config.InitConfig("../config.yaml")
if err != nil {
panic(err)
}
err = db.InitDb()
if err != nil {
panic(err)
}
2022-11-07 08:08:15 +00:00
InitDB(db.NewSqlxDb(db.Db))
2022-11-05 14:40:02 +00:00
}
func TestFind(t *testing.T) {
type args struct {
where ParseWhere
fields string
group string
order SqlBuilder
join SqlBuilder
having SqlBuilder
limit int
in [][]any
}
2022-11-06 04:04:41 +00:00
type posts struct {
2023-01-12 10:17:34 +00:00
wp2.Posts
2022-11-06 04:04:41 +00:00
N int `db:"n"`
}
2022-11-05 14:40:02 +00:00
tests := []struct {
name string
args args
2022-11-06 04:04:41 +00:00
wantR []posts
2022-11-05 14:40:02 +00:00
wantErr bool
}{
2022-11-06 04:04:41 +00:00
{
name: "in,orderBy",
args: args{
where: SqlBuilder{{
"post_status", "publish",
}, {"ID", "in", ""}},
fields: "*",
group: "",
order: SqlBuilder{{"ID", "desc"}},
join: nil,
having: nil,
limit: 0,
in: [][]any{{1, 2, 3, 4}},
},
wantR: func() []posts {
2022-11-07 08:08:15 +00:00
r, err := Select[posts](ctx, "select * from "+posts{}.Table()+" where post_status='publish' and ID in (1,2,3,4) order by ID desc")
2022-11-06 04:04:41 +00:00
if err != nil {
panic(err)
}
return r
}(),
wantErr: false,
},
{
name: "or",
args: args{
where: SqlBuilder{{
"and", "ID", "=", "1", "int",
}, {"or", "ID", "=", "2", "int"}},
fields: "*",
group: "",
order: nil,
join: nil,
having: nil,
limit: 0,
in: nil,
},
wantR: func() []posts {
2022-11-07 08:08:15 +00:00
r, err := Select[posts](ctx, "select * from "+posts{}.Table()+" where (ID=1 or ID=2)")
2022-11-06 04:04:41 +00:00
if err != nil {
panic(err)
}
return r
}(),
},
{
name: "group,having",
args: args{
where: SqlBuilder{
{"ID", "<", "1000", "int"},
},
fields: "post_status,count(*) n",
group: "post_status",
order: nil,
join: nil,
having: SqlBuilder{
{"n", ">", "1"},
},
limit: 0,
in: nil,
},
wantR: func() []posts {
2023-01-12 10:17:34 +00:00
r, err := Select[posts](ctx, "select post_status,count(*) n from "+wp2.Posts{}.Table()+" where ID<1000 group by post_status having n>1")
2022-11-06 04:04:41 +00:00
if err != nil {
panic(err)
}
return r
}(),
},
{
name: "or、多个in",
args: args{
where: SqlBuilder{
{"and", "ID", "in", "", "", "or", "ID", "in", "", ""},
{"or", "post_status", "=", "publish", "", "and", "post_status", "=", "closed", ""},
},
fields: "*",
group: "",
order: nil,
join: nil,
having: nil,
limit: 0,
in: [][]any{{1, 2, 3}, {4, 5, 6}},
},
wantR: func() []posts {
2022-11-07 08:08:15 +00:00
r, err := Select[posts](ctx, "select * from "+posts{}.Table()+" where (ID in (1,2,3) or ID in (4,5,6)) or (post_status='publish' and post_status='closed')")
2022-11-06 04:04:41 +00:00
if err != nil {
panic(err)
}
return r
}(),
},
2022-11-17 09:34:03 +00:00
{
name: "all",
args: args{
where: SqlBuilder{
{"b.user_login", "in", ""},
{"and", "a.post_type", "=", "post", "", "or", "a.post_type", "=", "page", ""},
{"a.comment_count", ">", "0", "int"},
{"a.post_status", "publish"},
{"e.name", "in", ""},
{"d.taxonomy", "category"},
},
fields: "post_author,count(*) n",
group: "a.post_author",
order: SqlBuilder{{"n", "desc"}},
join: SqlBuilder{
2023-01-12 10:17:34 +00:00
{"a", "left join", wp2.Users{}.Table() + " b", "a.post_author=b.ID"},
2022-11-17 09:34:03 +00:00
{"left join", "wp_term_relationships c", "a.Id=c.object_id"},
2023-01-12 10:17:34 +00:00
{"left join", wp2.TermTaxonomy{}.Table() + " d", "c.term_taxonomy_id=d.term_taxonomy_id"},
{"left join", wp2.Terms{}.Table() + " e", "d.term_id=e.term_id"},
2022-11-17 09:34:03 +00:00
},
having: SqlBuilder{{"n", ">", "0", "int"}},
limit: 10,
in: [][]any{{"test", "test2"}, {"web", "golang", "php"}},
},
wantR: func() []posts {
r, err := Select[posts](ctx, "select post_author,count(*) n from wp_posts a left join wp_users b on a.post_author=b.ID left join wp_term_relationships c on a.Id=c.object_id left join wp_term_taxonomy d on c.term_taxonomy_id=d.term_taxonomy_id left join wp_terms e on d.term_id=e.term_id where b.user_login in ('test','test2') and b.user_status=0 and (a.post_type='post' or a.post_type='page') and a.comment_count>0 and a.post_status='publish' and e.name in ('web','golang','php') and d.taxonomy='category' group by post_author having n > 0 order by n desc limit 10")
if err != nil {
panic(err)
}
return r
}(),
wantErr: false,
},
2022-11-05 14:40:02 +00:00
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2022-11-07 08:08:15 +00:00
gotR, err := Find[posts](ctx, tt.args.where, tt.args.fields, tt.args.group, tt.args.order, tt.args.join, tt.args.having, tt.args.limit, tt.args.in...)
2022-11-05 14:40:02 +00:00
if (err != nil) != tt.wantErr {
t.Errorf("Find() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(gotR, tt.wantR) {
t.Errorf("Find() gotR = %v, want %v", gotR, tt.wantR)
}
})
}
}
func TestFindOneById(t *testing.T) {
type args struct {
id int
}
2022-11-06 04:04:41 +00:00
2022-11-05 14:40:02 +00:00
tests := []struct {
name string
args args
2023-01-12 10:17:34 +00:00
want wp2.Posts
2022-11-05 14:40:02 +00:00
wantErr bool
}{
{
name: "t1",
args: args{
1,
},
2023-01-12 10:17:34 +00:00
want: func() wp2.Posts {
r, err := Get[wp2.Posts](ctx, "select * from "+wp2.Posts{}.Table()+" where ID=?", 1)
2022-11-06 04:04:41 +00:00
if err != nil {
panic(err)
}
return r
}(),
2022-11-05 14:40:02 +00:00
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2023-01-12 10:17:34 +00:00
got, err := FindOneById[wp2.Posts](ctx, tt.args.id)
2022-11-05 14:40:02 +00:00
if (err != nil) != tt.wantErr {
t.Errorf("FindOneById() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("FindOneById() got = %v, want %v", got, tt.want)
}
})
}
}
func TestFirstOne(t *testing.T) {
type args struct {
where ParseWhere
fields string
order SqlBuilder
in [][]any
}
tests := []struct {
name string
args args
2023-01-12 10:17:34 +00:00
want wp2.Posts
2022-11-05 14:40:02 +00:00
wantErr bool
}{
{
name: "t1",
args: args{
where: SqlBuilder{{"post_status", "publish"}},
fields: "*",
order: SqlBuilder{{"ID", "desc"}},
in: nil,
},
wantErr: false,
2023-01-12 10:17:34 +00:00
want: func() wp2.Posts {
r, err := Get[wp2.Posts](ctx, "select * from "+wp2.Posts{}.Table()+" where post_status='publish' order by ID desc limit 1")
2022-11-06 04:04:41 +00:00
if err != nil {
panic(err)
}
return r
}(),
2022-11-05 14:40:02 +00:00
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2023-01-12 10:17:34 +00:00
got, err := FirstOne[wp2.Posts](ctx, tt.args.where, tt.args.fields, tt.args.order, tt.args.in...)
2022-11-05 14:40:02 +00:00
if (err != nil) != tt.wantErr {
t.Errorf("FirstOne() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("FirstOne() got = %v, want %v", got, tt.want)
}
})
}
}
func TestGet(t *testing.T) {
type args struct {
sql string
params []any
}
tests := []struct {
name string
args args
2023-01-12 10:17:34 +00:00
wantR wp2.Posts
2022-11-05 14:40:02 +00:00
wantErr bool
}{
{},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2023-01-12 10:17:34 +00:00
gotR, err := Get[wp2.Posts](ctx, tt.args.sql, tt.args.params...)
2022-11-05 14:40:02 +00:00
if (err != nil) != tt.wantErr {
t.Errorf("Get() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(gotR, tt.wantR) {
t.Errorf("Get() gotR = %v, want %v", gotR, tt.wantR)
}
})
}
}
func TestLastOne(t *testing.T) {
type args struct {
where ParseWhere
fields string
in [][]any
}
tests := []struct {
name string
args args
2023-01-12 10:17:34 +00:00
want wp2.Posts
2022-11-05 14:40:02 +00:00
wantErr bool
}{
2022-11-06 04:04:41 +00:00
{
name: "t1",
args: args{
where: SqlBuilder{{
"post_status", "publish",
}},
fields: "*",
in: nil,
},
2023-01-12 10:17:34 +00:00
want: func() wp2.Posts {
r, err := Get[wp2.Posts](ctx, "select * from "+wp2.Posts{}.Table()+" where post_status='publish' order by "+wp2.Posts{}.PrimaryKey()+" desc limit 1")
2022-11-06 04:04:41 +00:00
if err != nil {
panic(err)
}
return r
}(),
},
2022-11-05 14:40:02 +00:00
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2023-01-12 10:17:34 +00:00
got, err := LastOne[wp2.Posts](ctx, tt.args.where, tt.args.fields, tt.args.in...)
2022-11-05 14:40:02 +00:00
if (err != nil) != tt.wantErr {
t.Errorf("LastOne() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("LastOne() got = %v, want %v", got, tt.want)
}
})
}
}
func TestSelect(t *testing.T) {
type args struct {
sql string
params []any
}
tests := []struct {
name string
args args
2023-01-12 10:17:34 +00:00
want []wp2.Posts
2022-11-05 14:40:02 +00:00
wantErr bool
}{
{},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2023-01-12 10:17:34 +00:00
got, err := Select[wp2.Posts](ctx, tt.args.sql, tt.args.params...)
2022-11-05 14:40:02 +00:00
if (err != nil) != tt.wantErr {
t.Errorf("Select() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("Select() got = %v, want %v", got, tt.want)
}
})
}
}
func TestSimpleFind(t *testing.T) {
type args struct {
where ParseWhere
fields string
in [][]any
}
tests := []struct {
name string
args args
2023-01-12 10:17:34 +00:00
want []wp2.Posts
2022-11-05 14:40:02 +00:00
wantErr bool
}{
{},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2023-01-12 10:17:34 +00:00
got, err := SimpleFind[wp2.Posts](ctx, tt.args.where, tt.args.fields, tt.args.in...)
2022-11-05 14:40:02 +00:00
if (err != nil) != tt.wantErr {
t.Errorf("SimpleFind() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("SimpleFind() got = %v, want %v", got, tt.want)
}
})
}
}
func TestSimplePagination(t *testing.T) {
type args struct {
where ParseWhere
fields string
group string
page int
pageSize int
order SqlBuilder
join SqlBuilder
having SqlBuilder
in [][]any
}
tests := []struct {
name string
args args
2023-01-12 10:17:34 +00:00
wantR []wp2.Posts
2022-11-05 14:40:02 +00:00
wantTotal int
wantErr bool
}{
{},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2023-01-12 10:17:34 +00:00
gotR, gotTotal, err := SimplePagination[wp2.Posts](ctx, tt.args.where, tt.args.fields, tt.args.group, tt.args.page, tt.args.pageSize, tt.args.order, tt.args.join, tt.args.having, tt.args.in...)
2022-11-05 14:40:02 +00:00
if (err != nil) != tt.wantErr {
t.Errorf("SimplePagination() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(gotR, tt.wantR) {
t.Errorf("SimplePagination() gotR = %v, want %v", gotR, tt.wantR)
}
if gotTotal != tt.wantTotal {
t.Errorf("SimplePagination() gotTotal = %v, want %v", gotTotal, tt.wantTotal)
}
})
}
}