test(postgres): fixed to use new ORM Generic
Some checks failed
Gitea Build Check / Build (push) Failing after 1m15s

Signed-off-by: SoXX <soxx@fenpa.ws>
This commit is contained in:
SoXX 2024-06-25 15:00:44 +02:00
parent d8f338332b
commit 07b69f6c18
4 changed files with 7 additions and 6 deletions

View File

@ -1,9 +1,10 @@
package models package models
import ( import (
"gorm.io/gorm"
"testing" "testing"
"time" "time"
"gorm.io/gorm"
) )
func TestBaseModel_BeforeCreate(t *testing.T) { func TestBaseModel_BeforeCreate(t *testing.T) {
@ -41,8 +42,8 @@ func TestBaseModel_BeforeCreate(t *testing.T) {
} }
for _, tt := range tests { for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) { t.Run(tt.name, func(t *testing.T) {
base := &BaseModel{ base := &BaseModel[AnthrovePostID]{
ID: tt.fields.ID, ID: AnthrovePostID(tt.fields.ID),
CreatedAt: tt.fields.CreatedAt, CreatedAt: tt.fields.CreatedAt,
UpdatedAt: tt.fields.UpdatedAt, UpdatedAt: tt.fields.UpdatedAt,
DeletedAt: tt.fields.DeletedAt, DeletedAt: tt.fields.DeletedAt,

View File

@ -4,7 +4,7 @@ import "testing"
func TestPost_TableName(t *testing.T) { func TestPost_TableName(t *testing.T) {
type fields struct { type fields struct {
BaseModel BaseModel BaseModel BaseModel[AnthrovePostID]
Rating Rating Rating Rating
Tags []Tag Tags []Tag
Favorites []UserFavorites Favorites []UserFavorites

View File

@ -4,7 +4,7 @@ import "testing"
func TestSource_TableName(t *testing.T) { func TestSource_TableName(t *testing.T) {
type fields struct { type fields struct {
BaseModel BaseModel BaseModel BaseModel[AnthroveSourceID]
DisplayName string DisplayName string
Domain string Domain string
Icon string Icon string

View File

@ -4,7 +4,7 @@ import "testing"
func TestUser_TableName(t *testing.T) { func TestUser_TableName(t *testing.T) {
type fields struct { type fields struct {
BaseModel BaseModel BaseModel BaseModel[AnthroveUserID]
Favorites []UserFavorites Favorites []UserFavorites
Sources []UserSource Sources []UserSource
} }