nidus-sync/db/factory/comms.mailer.bob.go
Eli Ribble a0eee3a95f
Rework mailer database schema, add UUID to mailers
At this point, I sent out our first test mailers for Delta.
2026-03-02 23:27:55 +00:00

564 lines
16 KiB
Go

// Code generated by BobGen psql v0.42.5. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package factory
import (
"context"
"testing"
"time"
"github.com/Gleipnir-Technology/bob"
models "github.com/Gleipnir-Technology/nidus-sync/db/models"
"github.com/aarondl/opt/omit"
"github.com/google/uuid"
"github.com/jaswdr/faker/v2"
)
type CommsMailerMod interface {
Apply(context.Context, *CommsMailerTemplate)
}
type CommsMailerModFunc func(context.Context, *CommsMailerTemplate)
func (f CommsMailerModFunc) Apply(ctx context.Context, n *CommsMailerTemplate) {
f(ctx, n)
}
type CommsMailerModSlice []CommsMailerMod
func (mods CommsMailerModSlice) Apply(ctx context.Context, n *CommsMailerTemplate) {
for _, f := range mods {
f.Apply(ctx, n)
}
}
// CommsMailerTemplate is an object representing the database table.
// all columns are optional and should be set by mods
type CommsMailerTemplate struct {
AddressID func() int32
Created func() time.Time
ID func() int32
Recipient func() string
UUID func() uuid.UUID
r commsMailerR
f *Factory
alreadyPersisted bool
}
type commsMailerR struct {
Address *commsMailerRAddressR
ComplianceReportRequests []*commsMailerRComplianceReportRequestsR
}
type commsMailerRAddressR struct {
o *AddressTemplate
}
type commsMailerRComplianceReportRequestsR struct {
number int
o *ComplianceReportRequestTemplate
}
// Apply mods to the CommsMailerTemplate
func (o *CommsMailerTemplate) Apply(ctx context.Context, mods ...CommsMailerMod) {
for _, mod := range mods {
mod.Apply(ctx, o)
}
}
// setModelRels creates and sets the relationships on *models.CommsMailer
// according to the relationships in the template. Nothing is inserted into the db
func (t CommsMailerTemplate) setModelRels(o *models.CommsMailer) {
if t.r.Address != nil {
rel := t.r.Address.o.Build()
rel.R.Mailers = append(rel.R.Mailers, o)
o.AddressID = rel.ID // h2
o.R.Address = rel
}
if t.r.ComplianceReportRequests != nil {
rel := models.ComplianceReportRequestSlice{}
for _, r := range t.r.ComplianceReportRequests {
related := r.o.BuildMany(r.number)
for _, rel := range related {
rel.R.Mailers = append(rel.R.Mailers, o)
}
rel = append(rel, related...)
}
o.R.ComplianceReportRequests = rel
}
}
// BuildSetter returns an *models.CommsMailerSetter
// this does nothing with the relationship templates
func (o CommsMailerTemplate) BuildSetter() *models.CommsMailerSetter {
m := &models.CommsMailerSetter{}
if o.AddressID != nil {
val := o.AddressID()
m.AddressID = omit.From(val)
}
if o.Created != nil {
val := o.Created()
m.Created = omit.From(val)
}
if o.ID != nil {
val := o.ID()
m.ID = omit.From(val)
}
if o.Recipient != nil {
val := o.Recipient()
m.Recipient = omit.From(val)
}
if o.UUID != nil {
val := o.UUID()
m.UUID = omit.From(val)
}
return m
}
// BuildManySetter returns an []*models.CommsMailerSetter
// this does nothing with the relationship templates
func (o CommsMailerTemplate) BuildManySetter(number int) []*models.CommsMailerSetter {
m := make([]*models.CommsMailerSetter, number)
for i := range m {
m[i] = o.BuildSetter()
}
return m
}
// Build returns an *models.CommsMailer
// Related objects are also created and placed in the .R field
// NOTE: Objects are not inserted into the database. Use CommsMailerTemplate.Create
func (o CommsMailerTemplate) Build() *models.CommsMailer {
m := &models.CommsMailer{}
if o.AddressID != nil {
m.AddressID = o.AddressID()
}
if o.Created != nil {
m.Created = o.Created()
}
if o.ID != nil {
m.ID = o.ID()
}
if o.Recipient != nil {
m.Recipient = o.Recipient()
}
if o.UUID != nil {
m.UUID = o.UUID()
}
o.setModelRels(m)
return m
}
// BuildMany returns an models.CommsMailerSlice
// Related objects are also created and placed in the .R field
// NOTE: Objects are not inserted into the database. Use CommsMailerTemplate.CreateMany
func (o CommsMailerTemplate) BuildMany(number int) models.CommsMailerSlice {
m := make(models.CommsMailerSlice, number)
for i := range m {
m[i] = o.Build()
}
return m
}
func ensureCreatableCommsMailer(m *models.CommsMailerSetter) {
if !(m.AddressID.IsValue()) {
val := random_int32(nil)
m.AddressID = omit.From(val)
}
if !(m.Created.IsValue()) {
val := random_time_Time(nil)
m.Created = omit.From(val)
}
if !(m.Recipient.IsValue()) {
val := random_string(nil)
m.Recipient = omit.From(val)
}
if !(m.UUID.IsValue()) {
val := random_uuid_UUID(nil)
m.UUID = omit.From(val)
}
}
// insertOptRels creates and inserts any optional the relationships on *models.CommsMailer
// according to the relationships in the template.
// any required relationship should have already exist on the model
func (o *CommsMailerTemplate) insertOptRels(ctx context.Context, exec bob.Executor, m *models.CommsMailer) error {
var err error
return err
}
// Create builds a commsMailer and inserts it into the database
// Relations objects are also inserted and placed in the .R field
func (o *CommsMailerTemplate) Create(ctx context.Context, exec bob.Executor) (*models.CommsMailer, error) {
var err error
opt := o.BuildSetter()
ensureCreatableCommsMailer(opt)
if o.r.Address == nil {
CommsMailerMods.WithNewAddress().Apply(ctx, o)
}
var rel0 *models.Address
if o.r.Address.o.alreadyPersisted {
rel0 = o.r.Address.o.Build()
} else {
rel0, err = o.r.Address.o.Create(ctx, exec)
if err != nil {
return nil, err
}
}
opt.AddressID = omit.From(rel0.ID)
m, err := models.CommsMailers.Insert(opt).One(ctx, exec)
if err != nil {
return nil, err
}
m.R.Address = rel0
if err := o.insertOptRels(ctx, exec, m); err != nil {
return nil, err
}
return m, err
}
// MustCreate builds a commsMailer and inserts it into the database
// Relations objects are also inserted and placed in the .R field
// panics if an error occurs
func (o *CommsMailerTemplate) MustCreate(ctx context.Context, exec bob.Executor) *models.CommsMailer {
m, err := o.Create(ctx, exec)
if err != nil {
panic(err)
}
return m
}
// CreateOrFail builds a commsMailer and inserts it into the database
// Relations objects are also inserted and placed in the .R field
// It calls `tb.Fatal(err)` on the test/benchmark if an error occurs
func (o *CommsMailerTemplate) CreateOrFail(ctx context.Context, tb testing.TB, exec bob.Executor) *models.CommsMailer {
tb.Helper()
m, err := o.Create(ctx, exec)
if err != nil {
tb.Fatal(err)
return nil
}
return m
}
// CreateMany builds multiple commsMailers and inserts them into the database
// Relations objects are also inserted and placed in the .R field
func (o CommsMailerTemplate) CreateMany(ctx context.Context, exec bob.Executor, number int) (models.CommsMailerSlice, error) {
var err error
m := make(models.CommsMailerSlice, number)
for i := range m {
m[i], err = o.Create(ctx, exec)
if err != nil {
return nil, err
}
}
return m, nil
}
// MustCreateMany builds multiple commsMailers and inserts them into the database
// Relations objects are also inserted and placed in the .R field
// panics if an error occurs
func (o CommsMailerTemplate) MustCreateMany(ctx context.Context, exec bob.Executor, number int) models.CommsMailerSlice {
m, err := o.CreateMany(ctx, exec, number)
if err != nil {
panic(err)
}
return m
}
// CreateManyOrFail builds multiple commsMailers and inserts them into the database
// Relations objects are also inserted and placed in the .R field
// It calls `tb.Fatal(err)` on the test/benchmark if an error occurs
func (o CommsMailerTemplate) CreateManyOrFail(ctx context.Context, tb testing.TB, exec bob.Executor, number int) models.CommsMailerSlice {
tb.Helper()
m, err := o.CreateMany(ctx, exec, number)
if err != nil {
tb.Fatal(err)
return nil
}
return m
}
// CommsMailer has methods that act as mods for the CommsMailerTemplate
var CommsMailerMods commsMailerMods
type commsMailerMods struct{}
func (m commsMailerMods) RandomizeAllColumns(f *faker.Faker) CommsMailerMod {
return CommsMailerModSlice{
CommsMailerMods.RandomAddressID(f),
CommsMailerMods.RandomCreated(f),
CommsMailerMods.RandomID(f),
CommsMailerMods.RandomRecipient(f),
CommsMailerMods.RandomUUID(f),
}
}
// Set the model columns to this value
func (m commsMailerMods) AddressID(val int32) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.AddressID = func() int32 { return val }
})
}
// Set the Column from the function
func (m commsMailerMods) AddressIDFunc(f func() int32) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.AddressID = f
})
}
// Clear any values for the column
func (m commsMailerMods) UnsetAddressID() CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.AddressID = nil
})
}
// Generates a random value for the column using the given faker
// if faker is nil, a default faker is used
func (m commsMailerMods) RandomAddressID(f *faker.Faker) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.AddressID = func() int32 {
return random_int32(f)
}
})
}
// Set the model columns to this value
func (m commsMailerMods) Created(val time.Time) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.Created = func() time.Time { return val }
})
}
// Set the Column from the function
func (m commsMailerMods) CreatedFunc(f func() time.Time) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.Created = f
})
}
// Clear any values for the column
func (m commsMailerMods) UnsetCreated() CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.Created = nil
})
}
// Generates a random value for the column using the given faker
// if faker is nil, a default faker is used
func (m commsMailerMods) RandomCreated(f *faker.Faker) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.Created = func() time.Time {
return random_time_Time(f)
}
})
}
// Set the model columns to this value
func (m commsMailerMods) ID(val int32) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.ID = func() int32 { return val }
})
}
// Set the Column from the function
func (m commsMailerMods) IDFunc(f func() int32) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.ID = f
})
}
// Clear any values for the column
func (m commsMailerMods) UnsetID() CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.ID = nil
})
}
// Generates a random value for the column using the given faker
// if faker is nil, a default faker is used
func (m commsMailerMods) RandomID(f *faker.Faker) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.ID = func() int32 {
return random_int32(f)
}
})
}
// Set the model columns to this value
func (m commsMailerMods) Recipient(val string) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.Recipient = func() string { return val }
})
}
// Set the Column from the function
func (m commsMailerMods) RecipientFunc(f func() string) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.Recipient = f
})
}
// Clear any values for the column
func (m commsMailerMods) UnsetRecipient() CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.Recipient = nil
})
}
// Generates a random value for the column using the given faker
// if faker is nil, a default faker is used
func (m commsMailerMods) RandomRecipient(f *faker.Faker) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.Recipient = func() string {
return random_string(f)
}
})
}
// Set the model columns to this value
func (m commsMailerMods) UUID(val uuid.UUID) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.UUID = func() uuid.UUID { return val }
})
}
// Set the Column from the function
func (m commsMailerMods) UUIDFunc(f func() uuid.UUID) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.UUID = f
})
}
// Clear any values for the column
func (m commsMailerMods) UnsetUUID() CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.UUID = nil
})
}
// Generates a random value for the column using the given faker
// if faker is nil, a default faker is used
func (m commsMailerMods) RandomUUID(f *faker.Faker) CommsMailerMod {
return CommsMailerModFunc(func(_ context.Context, o *CommsMailerTemplate) {
o.UUID = func() uuid.UUID {
return random_uuid_UUID(f)
}
})
}
func (m commsMailerMods) WithParentsCascading() CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
if isDone, _ := commsMailerWithParentsCascadingCtx.Value(ctx); isDone {
return
}
ctx = commsMailerWithParentsCascadingCtx.WithValue(ctx, true)
{
related := o.f.NewAddressWithContext(ctx, AddressMods.WithParentsCascading())
m.WithAddress(related).Apply(ctx, o)
}
})
}
func (m commsMailerMods) WithAddress(rel *AddressTemplate) CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
o.r.Address = &commsMailerRAddressR{
o: rel,
}
})
}
func (m commsMailerMods) WithNewAddress(mods ...AddressMod) CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
related := o.f.NewAddressWithContext(ctx, mods...)
m.WithAddress(related).Apply(ctx, o)
})
}
func (m commsMailerMods) WithExistingAddress(em *models.Address) CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
o.r.Address = &commsMailerRAddressR{
o: o.f.FromExistingAddress(em),
}
})
}
func (m commsMailerMods) WithoutAddress() CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
o.r.Address = nil
})
}
func (m commsMailerMods) WithComplianceReportRequests(number int, related *ComplianceReportRequestTemplate) CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
o.r.ComplianceReportRequests = []*commsMailerRComplianceReportRequestsR{{
number: number,
o: related,
}}
})
}
func (m commsMailerMods) WithNewComplianceReportRequests(number int, mods ...ComplianceReportRequestMod) CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
related := o.f.NewComplianceReportRequestWithContext(ctx, mods...)
m.WithComplianceReportRequests(number, related).Apply(ctx, o)
})
}
func (m commsMailerMods) AddComplianceReportRequests(number int, related *ComplianceReportRequestTemplate) CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
o.r.ComplianceReportRequests = append(o.r.ComplianceReportRequests, &commsMailerRComplianceReportRequestsR{
number: number,
o: related,
})
})
}
func (m commsMailerMods) AddNewComplianceReportRequests(number int, mods ...ComplianceReportRequestMod) CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
related := o.f.NewComplianceReportRequestWithContext(ctx, mods...)
m.AddComplianceReportRequests(number, related).Apply(ctx, o)
})
}
func (m commsMailerMods) AddExistingComplianceReportRequests(existingModels ...*models.ComplianceReportRequest) CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
for _, em := range existingModels {
o.r.ComplianceReportRequests = append(o.r.ComplianceReportRequests, &commsMailerRComplianceReportRequestsR{
o: o.f.FromExistingComplianceReportRequest(em),
})
}
})
}
func (m commsMailerMods) WithoutComplianceReportRequests() CommsMailerMod {
return CommsMailerModFunc(func(ctx context.Context, o *CommsMailerTemplate) {
o.r.ComplianceReportRequests = nil
})
}