mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-04-13 04:30:54 +02:00
253 lines
6.0 KiB
Go
253 lines
6.0 KiB
Go
package daos_test
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/pocketbase/dbx"
|
|
"github.com/pocketbase/pocketbase/models"
|
|
"github.com/pocketbase/pocketbase/models/schema"
|
|
"github.com/pocketbase/pocketbase/tests"
|
|
"github.com/pocketbase/pocketbase/tools/list"
|
|
"github.com/pocketbase/pocketbase/tools/types"
|
|
)
|
|
|
|
func TestSyncRecordTableSchema(t *testing.T) {
|
|
app, _ := tests.NewTestApp()
|
|
defer app.Cleanup()
|
|
|
|
oldCollection, err := app.Dao().FindCollectionByNameOrId("demo2")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
updatedCollection, err := app.Dao().FindCollectionByNameOrId("demo2")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
updatedCollection.Name = "demo_renamed"
|
|
updatedCollection.Schema.RemoveField(updatedCollection.Schema.GetFieldByName("active").Id)
|
|
updatedCollection.Schema.AddField(
|
|
&schema.SchemaField{
|
|
Name: "new_field",
|
|
Type: schema.FieldTypeEmail,
|
|
},
|
|
)
|
|
updatedCollection.Schema.AddField(
|
|
&schema.SchemaField{
|
|
Id: updatedCollection.Schema.GetFieldByName("title").Id,
|
|
Name: "title_renamed",
|
|
Type: schema.FieldTypeEmail,
|
|
},
|
|
)
|
|
|
|
scenarios := []struct {
|
|
newCollection *models.Collection
|
|
oldCollection *models.Collection
|
|
expectedTableName string
|
|
expectedColumns []string
|
|
}{
|
|
// new base collection
|
|
{
|
|
&models.Collection{
|
|
Name: "new_table",
|
|
Schema: schema.NewSchema(
|
|
&schema.SchemaField{
|
|
Name: "test",
|
|
Type: schema.FieldTypeText,
|
|
},
|
|
),
|
|
},
|
|
nil,
|
|
"new_table",
|
|
[]string{"id", "created", "updated", "test"},
|
|
},
|
|
// new auth collection
|
|
{
|
|
&models.Collection{
|
|
Name: "new_table_auth",
|
|
Type: models.CollectionTypeAuth,
|
|
Schema: schema.NewSchema(
|
|
&schema.SchemaField{
|
|
Name: "test",
|
|
Type: schema.FieldTypeText,
|
|
},
|
|
),
|
|
},
|
|
nil,
|
|
"new_table_auth",
|
|
[]string{
|
|
"id", "created", "updated", "test",
|
|
"username", "email", "verified", "emailVisibility",
|
|
"tokenKey", "passwordHash", "lastResetSentAt", "lastVerificationSentAt",
|
|
},
|
|
},
|
|
// no changes
|
|
{
|
|
oldCollection,
|
|
oldCollection,
|
|
"demo3",
|
|
[]string{"id", "created", "updated", "title", "active"},
|
|
},
|
|
// renamed table, deleted column, renamed columnd and new column
|
|
{
|
|
updatedCollection,
|
|
oldCollection,
|
|
"demo_renamed",
|
|
[]string{"id", "created", "updated", "title_renamed", "new_field"},
|
|
},
|
|
}
|
|
|
|
for i, scenario := range scenarios {
|
|
err := app.Dao().SyncRecordTableSchema(scenario.newCollection, scenario.oldCollection)
|
|
if err != nil {
|
|
t.Errorf("(%d) %v", i, err)
|
|
continue
|
|
}
|
|
|
|
if !app.Dao().HasTable(scenario.newCollection.Name) {
|
|
t.Errorf("(%d) Expected table %s to exist", i, scenario.newCollection.Name)
|
|
}
|
|
|
|
cols, _ := app.Dao().GetTableColumns(scenario.newCollection.Name)
|
|
if len(cols) != len(scenario.expectedColumns) {
|
|
t.Errorf("(%d) Expected columns %v, got %v", i, scenario.expectedColumns, cols)
|
|
}
|
|
|
|
for _, c := range cols {
|
|
if !list.ExistInSlice(c, scenario.expectedColumns) {
|
|
t.Errorf("(%d) Couldn't find column %s in %v", i, c, scenario.expectedColumns)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestSingleVsMultipleValuesNormalization(t *testing.T) {
|
|
app, _ := tests.NewTestApp()
|
|
defer app.Cleanup()
|
|
|
|
collection, err := app.Dao().FindCollectionByNameOrId("demo1")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// mock field changes
|
|
{
|
|
selectOneField := collection.Schema.GetFieldByName("select_one")
|
|
opt := selectOneField.Options.(*schema.SelectOptions)
|
|
opt.MaxSelect = 2
|
|
}
|
|
{
|
|
selectManyField := collection.Schema.GetFieldByName("select_many")
|
|
opt := selectManyField.Options.(*schema.SelectOptions)
|
|
opt.MaxSelect = 1
|
|
}
|
|
{
|
|
|
|
fileOneField := collection.Schema.GetFieldByName("file_one")
|
|
opt := fileOneField.Options.(*schema.FileOptions)
|
|
opt.MaxSelect = 2
|
|
}
|
|
{
|
|
fileManyField := collection.Schema.GetFieldByName("file_many")
|
|
opt := fileManyField.Options.(*schema.FileOptions)
|
|
opt.MaxSelect = 1
|
|
|
|
}
|
|
{
|
|
relOneField := collection.Schema.GetFieldByName("rel_one")
|
|
opt := relOneField.Options.(*schema.RelationOptions)
|
|
opt.MaxSelect = types.Pointer(2)
|
|
}
|
|
{
|
|
relManyField := collection.Schema.GetFieldByName("rel_many")
|
|
opt := relManyField.Options.(*schema.RelationOptions)
|
|
opt.MaxSelect = types.Pointer(1)
|
|
}
|
|
|
|
if err := app.Dao().SaveCollection(collection); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
type expectation struct {
|
|
SelectOne string `db:"select_one"`
|
|
SelectMany string `db:"select_many"`
|
|
FileOne string `db:"file_one"`
|
|
FileMany string `db:"file_many"`
|
|
RelOne string `db:"rel_one"`
|
|
RelMany string `db:"rel_many"`
|
|
}
|
|
|
|
scenarios := []struct {
|
|
recordId string
|
|
expected expectation
|
|
}{
|
|
{
|
|
"imy661ixudk5izi",
|
|
expectation{
|
|
SelectOne: `[]`,
|
|
SelectMany: ``,
|
|
FileOne: `[]`,
|
|
FileMany: ``,
|
|
RelOne: `[]`,
|
|
RelMany: ``,
|
|
},
|
|
},
|
|
{
|
|
"al1h9ijdeojtsjy",
|
|
expectation{
|
|
SelectOne: `["optionB"]`,
|
|
SelectMany: `optionB`,
|
|
FileOne: `["300_Jsjq7RdBgA.png"]`,
|
|
FileMany: ``,
|
|
RelOne: `["84nmscqy84lsi1t"]`,
|
|
RelMany: `oap640cot4yru2s`,
|
|
},
|
|
},
|
|
{
|
|
"84nmscqy84lsi1t",
|
|
expectation{
|
|
SelectOne: `["optionB"]`,
|
|
SelectMany: `optionC`,
|
|
FileOne: `["test_d61b33QdDU.txt"]`,
|
|
FileMany: `test_tC1Yc87DfC.txt`,
|
|
RelOne: `[]`,
|
|
RelMany: `oap640cot4yru2s`,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
result := new(expectation)
|
|
|
|
err := app.Dao().DB().Select(
|
|
"select_one",
|
|
"select_many",
|
|
"file_one",
|
|
"file_many",
|
|
"rel_one",
|
|
"rel_many",
|
|
).From(collection.Name).Where(dbx.HashExp{"id": s.recordId}).One(result)
|
|
if err != nil {
|
|
t.Errorf("[%s] Failed to load record: %v", s.recordId, err)
|
|
continue
|
|
}
|
|
|
|
encodedResult, err := json.Marshal(result)
|
|
if err != nil {
|
|
t.Errorf("[%s] Failed to encode result: %v", s.recordId, err)
|
|
continue
|
|
}
|
|
|
|
encodedExpectation, err := json.Marshal(s.expected)
|
|
if err != nil {
|
|
t.Errorf("[%s] Failed to encode expectation: %v", s.recordId, err)
|
|
continue
|
|
}
|
|
|
|
if !bytes.EqualFold(encodedExpectation, encodedResult) {
|
|
t.Errorf("[%s] Expected \n%s, \ngot \n%s", s.recordId, encodedExpectation, encodedResult)
|
|
}
|
|
}
|
|
}
|