wp-go/model/relation_test.go

147 lines
3.2 KiB
Go
Raw Normal View History

2023-05-20 17:38:19 +00:00
package model
import (
"github.com/fthvgb1/wp-go/app/pkg/models"
"testing"
)
func postAuthorId(p *post) uint64 {
return p.PostAuthor
}
func postId(p *post) uint64 {
return p.Id
}
func userId(u *user) uint64 {
return u.Id
}
func metasPostId(m *models.PostMeta) uint64 {
return m.PostId
}
func PostAuthor() (func(any) []any, func(any, any), any, any, Relationship) {
var u user
var uu []user
return GetWithID[post](func(t *post) uint64 {
return t.PostAuthor
}),
SetHasOne(func(p *post, u *user) {
p.User = u
}, func(t *post) uint64 {
return t.PostAuthor
}, func(u *user) uint64 {
return u.Id
}),
&u, &uu,
Relationship{
2023-05-21 13:30:00 +00:00
RelationType: HasOne,
2023-05-20 17:38:19 +00:00
Table: "wp_users user",
ForeignKey: "ID",
Local: "post_author",
}
}
func PostMetas() (func(any) []any, func(any, any), any, any, Relationship) {
var u []models.PostMeta
return GetWithID(func(t *post) any {
return t.Id
}), SetHasMany(func(t *post, v *[]models.PostMeta) {
t.PostMeta = v
}, func(t *post) uint64 {
return t.Id
}, func(m *models.PostMeta) uint64 {
return m.PostId
}), &u, &u, Relationship{
2023-05-21 13:30:00 +00:00
RelationType: HasMany,
2023-05-20 17:38:19 +00:00
Table: "wp_postmeta meta",
ForeignKey: "post_id",
Local: "ID",
}
}
2023-05-24 12:41:24 +00:00
var term = RelationHasMany(func(m *post) uint64 {
return m.Id
}, func(p *models.TermTaxonomy) uint64 {
return p.TermTaxonomyId
}, func(m *post, i *[]models.TermTaxonomy) {
m.TermTaxonomy = i
}, Relationship{
RelationType: HasOne,
Table: "wp_term_taxonomy taxonomy",
ForeignKey: "term_taxonomy_id",
Local: "term_taxonomy_id",
Middle: &Relationship{
RelationType: HasMany,
Table: "wp_term_relationships",
ForeignKey: "ID",
Local: "object_id",
},
})
2023-05-20 17:38:19 +00:00
func Meta2() RelationFn {
return RelationHasMany(postId, metasPostId, func(m *post, i *[]models.PostMeta) {
m.PostMeta = i
}, Relationship{
RelationType: "hasMany",
Table: "wp_postmeta meta",
ForeignKey: "post_id",
Local: "ID",
})
}
func PostAuthor2() RelationFn {
2023-05-21 13:30:00 +00:00
return RelationHasOne(postAuthorId, userId, func(p *post, u *user) {
2023-05-20 17:38:19 +00:00
p.User = u
}, Relationship{
RelationType: "hasOne",
Table: "wp_users user",
ForeignKey: "ID",
Local: "post_author",
})
}
func TestGets2(t *testing.T) {
t.Run("one", func(t *testing.T) {
{
q := Conditions(
Where(SqlBuilder{{"posts.id = 190"}}),
WithCtx(&ctx),
WithFn(true, true, Conditions(
Fields("ID,user_login,user_pass"),
), PostAuthor2()),
Fields("posts.*"),
From("wp_posts posts"),
2023-05-24 12:41:24 +00:00
WithFn(true, false, nil, Meta2()),
WithFn(true, false, nil, term),
2023-05-20 17:38:19 +00:00
)
got, err := Gets[post](ctx, q)
_ = got
if err != nil {
t.Errorf("err:%v", err)
}
}
})
t.Run("many", func(t *testing.T) {
{
q := Conditions(
Where(SqlBuilder{{"posts.id", "in", ""}}),
2023-05-24 12:41:24 +00:00
In([]any{190, 3022, 291}),
2023-05-20 17:38:19 +00:00
WithCtx(&ctx),
WithFn(true, false, Conditions(
Fields("ID,user_login,user_pass"),
), PostAuthor2()),
Fields("posts.*"),
From("wp_posts posts"),
WithFn(true, false, nil, Meta2()),
2023-05-24 12:41:24 +00:00
WithFn(true, false, nil, term),
2023-05-20 17:38:19 +00:00
)
got, err := Finds[post](ctx, q)
_ = got
if err != nil {
t.Errorf("err:%v", err)
}
}
})
}