mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-11-24 17:07:00 +02:00
259 lines
6.9 KiB
Go
259 lines
6.9 KiB
Go
package daos_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/pocketbase/pocketbase/daos"
|
|
"github.com/pocketbase/pocketbase/models"
|
|
"github.com/pocketbase/pocketbase/tests"
|
|
"github.com/pocketbase/pocketbase/tools/list"
|
|
)
|
|
|
|
func TestExpandRecords(t *testing.T) {
|
|
app, _ := tests.NewTestApp()
|
|
defer app.Cleanup()
|
|
|
|
col, _ := app.Dao().FindCollectionByNameOrId("demo4")
|
|
|
|
scenarios := []struct {
|
|
recordIds []string
|
|
expands []string
|
|
fetchFunc daos.ExpandFetchFunc
|
|
expectExpandProps int
|
|
expectError bool
|
|
}{
|
|
// empty records
|
|
{
|
|
[]string{},
|
|
[]string{"onerel", "manyrels.onerel.manyrels"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
0,
|
|
false,
|
|
},
|
|
// empty expand
|
|
{
|
|
[]string{"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b", "df55c8ff-45ef-4c82-8aed-6e2183fe1125"},
|
|
[]string{},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
0,
|
|
false,
|
|
},
|
|
// empty fetchFunc
|
|
{
|
|
[]string{"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b", "df55c8ff-45ef-4c82-8aed-6e2183fe1125"},
|
|
[]string{"onerel", "manyrels.onerel.manyrels"},
|
|
nil,
|
|
0,
|
|
true,
|
|
},
|
|
// fetchFunc with error
|
|
{
|
|
[]string{"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b", "df55c8ff-45ef-4c82-8aed-6e2183fe1125"},
|
|
[]string{"onerel", "manyrels.onerel.manyrels"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return nil, errors.New("test error")
|
|
},
|
|
0,
|
|
true,
|
|
},
|
|
// invalid missing first level expand
|
|
{
|
|
[]string{"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b", "df55c8ff-45ef-4c82-8aed-6e2183fe1125"},
|
|
[]string{"invalid"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
0,
|
|
true,
|
|
},
|
|
// invalid missing second level expand
|
|
{
|
|
[]string{"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b", "df55c8ff-45ef-4c82-8aed-6e2183fe1125"},
|
|
[]string{"manyrels.invalid"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
0,
|
|
true,
|
|
},
|
|
// expand normalizations
|
|
{
|
|
[]string{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
"df55c8ff-45ef-4c82-8aed-6e2183fe1125",
|
|
"b84cd893-7119-43c9-8505-3c4e22da28a9",
|
|
"054f9f24-0a0a-4e09-87b1-bc7ff2b336a2",
|
|
},
|
|
[]string{"manyrels.onerel.manyrels.onerel", "manyrels.onerel", "onerel", "onerel.", " onerel ", ""},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
9,
|
|
false,
|
|
},
|
|
// single expand
|
|
{
|
|
[]string{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
"df55c8ff-45ef-4c82-8aed-6e2183fe1125",
|
|
"b84cd893-7119-43c9-8505-3c4e22da28a9", // no manyrels
|
|
"054f9f24-0a0a-4e09-87b1-bc7ff2b336a2", // no manyrels
|
|
},
|
|
[]string{"manyrels"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
2,
|
|
false,
|
|
},
|
|
// maxExpandDepth reached
|
|
{
|
|
[]string{"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b"},
|
|
[]string{"manyrels.onerel.manyrels.onerel.manyrels.onerel.manyrels.onerel.manyrels"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
6,
|
|
false,
|
|
},
|
|
}
|
|
|
|
for i, s := range scenarios {
|
|
ids := list.ToUniqueStringSlice(s.recordIds)
|
|
records, _ := app.Dao().FindRecordsByIds(col, ids, nil)
|
|
err := app.Dao().ExpandRecords(records, s.expands, s.fetchFunc)
|
|
|
|
hasErr := err != nil
|
|
if hasErr != s.expectError {
|
|
t.Errorf("(%d) Expected hasErr to be %v, got %v (%v)", i, s.expectError, hasErr, err)
|
|
}
|
|
|
|
encoded, _ := json.Marshal(records)
|
|
encodedStr := string(encoded)
|
|
totalExpandProps := strings.Count(encodedStr, "@expand")
|
|
|
|
if s.expectExpandProps != totalExpandProps {
|
|
t.Errorf("(%d) Expected %d @expand props in %v, got %d", i, s.expectExpandProps, encodedStr, totalExpandProps)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestExpandRecord(t *testing.T) {
|
|
app, _ := tests.NewTestApp()
|
|
defer app.Cleanup()
|
|
|
|
col, _ := app.Dao().FindCollectionByNameOrId("demo4")
|
|
|
|
scenarios := []struct {
|
|
recordId string
|
|
expands []string
|
|
fetchFunc daos.ExpandFetchFunc
|
|
expectExpandProps int
|
|
expectError bool
|
|
}{
|
|
// empty expand
|
|
{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
[]string{},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
0,
|
|
false,
|
|
},
|
|
// empty fetchFunc
|
|
{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
[]string{"onerel", "manyrels.onerel.manyrels"},
|
|
nil,
|
|
0,
|
|
true,
|
|
},
|
|
// fetchFunc with error
|
|
{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
[]string{"onerel", "manyrels.onerel.manyrels"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return nil, errors.New("test error")
|
|
},
|
|
0,
|
|
true,
|
|
},
|
|
// invalid missing first level expand
|
|
{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
[]string{"invalid"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
0,
|
|
true,
|
|
},
|
|
// invalid missing second level expand
|
|
{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
[]string{"manyrels.invalid"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
0,
|
|
true,
|
|
},
|
|
// expand normalizations
|
|
{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
[]string{"manyrels.onerel.manyrels", "manyrels.onerel", "onerel", " onerel "},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
3,
|
|
false,
|
|
},
|
|
// single expand
|
|
{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
[]string{"manyrels"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
1,
|
|
false,
|
|
},
|
|
// maxExpandDepth reached
|
|
{
|
|
"b8ba58f9-e2d7-42a0-b0e7-a11efd98236b",
|
|
[]string{"manyrels.onerel.manyrels.onerel.manyrels.onerel.manyrels.onerel.manyrels"},
|
|
func(c *models.Collection, ids []string) ([]*models.Record, error) {
|
|
return app.Dao().FindRecordsByIds(c, ids, nil)
|
|
},
|
|
6,
|
|
false,
|
|
},
|
|
}
|
|
|
|
for i, s := range scenarios {
|
|
record, _ := app.Dao().FindFirstRecordByData(col, "id", s.recordId)
|
|
err := app.Dao().ExpandRecord(record, s.expands, s.fetchFunc)
|
|
|
|
hasErr := err != nil
|
|
if hasErr != s.expectError {
|
|
t.Errorf("(%d) Expected hasErr to be %v, got %v (%v)", i, s.expectError, hasErr, err)
|
|
}
|
|
|
|
encoded, _ := json.Marshal(record)
|
|
encodedStr := string(encoded)
|
|
totalExpandProps := strings.Count(encodedStr, "@expand")
|
|
|
|
if s.expectExpandProps != totalExpandProps {
|
|
t.Errorf("(%d) Expected %d @expand props in %v, got %d", i, s.expectExpandProps, encodedStr, totalExpandProps)
|
|
}
|
|
}
|
|
}
|