2016-07-13 05:05:33 +02:00
|
|
|
{{- if .Table.IsJoinTable -}}
|
2016-07-14 05:31:44 +02:00
|
|
|
{{- else -}}
|
2016-09-14 10:08:30 +02:00
|
|
|
{{- $dot := . }}
|
|
|
|
{{- $table := .Table }}
|
|
|
|
{{- range .Table.ToManyRelationships -}}
|
2016-09-18 20:18:43 +02:00
|
|
|
{{- $rel := txtsFromToMany $dot.Tables $table .}}
|
2016-08-15 11:36:38 +02:00
|
|
|
func test{{$rel.LocalTable.NameGo}}ToMany{{$rel.Function.Name}}(t *testing.T) {
|
2016-09-14 10:08:30 +02:00
|
|
|
var err error
|
|
|
|
tx := MustTx(boil.Begin())
|
|
|
|
defer tx.Rollback()
|
2016-07-14 05:31:44 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
var a {{$rel.LocalTable.NameGo}}
|
|
|
|
var b, c {{$rel.ForeignTable.NameGo}}
|
2016-07-13 05:05:33 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
if err := a.Insert(tx); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2016-07-13 05:05:33 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
seed := randomize.NewSeed()
|
2016-09-17 09:02:03 +02:00
|
|
|
randomize.Struct(seed, &b, {{$rel.ForeignTable.NameSingular | camelCase}}DBTypes, false{{if not $rel.Function.UsesBytes}}, "{{.ForeignColumn}}"{{end}})
|
|
|
|
randomize.Struct(seed, &c, {{$rel.ForeignTable.NameSingular | camelCase}}DBTypes, false{{if not $rel.Function.UsesBytes}}, "{{.ForeignColumn}}"{{end}})
|
2016-09-14 10:08:30 +02:00
|
|
|
{{if .Nullable -}}
|
|
|
|
a.{{.Column | titleCase}}.Valid = true
|
|
|
|
{{- end}}
|
|
|
|
{{- if .ForeignColumnNullable -}}
|
|
|
|
b.{{.ForeignColumn | titleCase}}.Valid = true
|
|
|
|
c.{{.ForeignColumn | titleCase}}.Valid = true
|
|
|
|
{{- end}}
|
|
|
|
{{if not .ToJoinTable -}}
|
|
|
|
b.{{$rel.Function.ForeignAssignment}} = a.{{$rel.Function.LocalAssignment}}
|
|
|
|
c.{{$rel.Function.ForeignAssignment}} = a.{{$rel.Function.LocalAssignment}}
|
|
|
|
{{- end}}
|
|
|
|
if err = b.Insert(tx); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err = c.Insert(tx); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2016-07-14 05:31:44 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
{{if .ToJoinTable -}}
|
|
|
|
_, err = tx.Exec("insert into {{.JoinTable | $dot.SchemaTable}} ({{.JoinLocalColumn | $dot.Quotes}}, {{.JoinForeignColumn | $dot.Quotes}}) values {{if $dot.Dialect.IndexPlaceholders}}($1, $2){{else}}(?, ?){{end}}", a.{{$rel.LocalTable.ColumnNameGo}}, b.{{$rel.ForeignTable.ColumnNameGo}})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_, err = tx.Exec("insert into {{.JoinTable | $dot.SchemaTable}} ({{.JoinLocalColumn | $dot.Quotes}}, {{.JoinForeignColumn | $dot.Quotes}}) values {{if $dot.Dialect.IndexPlaceholders}}($1, $2){{else}}(?, ?){{end}}", a.{{$rel.LocalTable.ColumnNameGo}}, c.{{$rel.ForeignTable.ColumnNameGo}})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
{{end}}
|
2016-07-15 08:28:33 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
{{$varname := .ForeignTable | singular | camelCase -}}
|
|
|
|
{{$varname}}, err := a.{{$rel.Function.Name}}(tx).All()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2016-07-14 05:31:44 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
bFound, cFound := false, false
|
|
|
|
for _, v := range {{$varname}} {
|
2016-09-17 09:02:03 +02:00
|
|
|
{{if $rel.Function.UsesBytes -}}
|
2016-09-16 09:22:12 +02:00
|
|
|
if 0 == bytes.Compare(v.{{$rel.Function.ForeignAssignment}}, b.{{$rel.Function.ForeignAssignment}}) {
|
|
|
|
bFound = true
|
|
|
|
}
|
|
|
|
if 0 == bytes.Compare(v.{{$rel.Function.ForeignAssignment}}, c.{{$rel.Function.ForeignAssignment}}) {
|
|
|
|
cFound = true
|
|
|
|
}
|
|
|
|
{{else -}}
|
2016-09-14 10:08:30 +02:00
|
|
|
if v.{{$rel.Function.ForeignAssignment}} == b.{{$rel.Function.ForeignAssignment}} {
|
|
|
|
bFound = true
|
|
|
|
}
|
|
|
|
if v.{{$rel.Function.ForeignAssignment}} == c.{{$rel.Function.ForeignAssignment}} {
|
|
|
|
cFound = true
|
|
|
|
}
|
2016-09-16 09:22:12 +02:00
|
|
|
{{end -}}
|
2016-09-14 10:08:30 +02:00
|
|
|
}
|
2016-07-14 05:31:44 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
if !bFound {
|
|
|
|
t.Error("expected to find b")
|
|
|
|
}
|
|
|
|
if !cFound {
|
|
|
|
t.Error("expected to find c")
|
|
|
|
}
|
2016-07-14 05:31:44 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
slice := {{$rel.LocalTable.NameGo}}Slice{&a}
|
|
|
|
if err = a.L.Load{{$rel.Function.Name}}(tx, false, &slice); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if got := len(a.R.{{$rel.Function.Name}}); got != 2 {
|
|
|
|
t.Error("number of eager loaded records wrong, got:", got)
|
|
|
|
}
|
2016-08-16 09:30:08 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
a.R.{{$rel.Function.Name}} = nil
|
|
|
|
if err = a.L.Load{{$rel.Function.Name}}(tx, true, &a); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if got := len(a.R.{{$rel.Function.Name}}); got != 2 {
|
|
|
|
t.Error("number of eager loaded records wrong, got:", got)
|
|
|
|
}
|
2016-08-16 09:30:08 +02:00
|
|
|
|
2016-09-14 10:08:30 +02:00
|
|
|
if t.Failed() {
|
|
|
|
t.Logf("%#v", {{$varname}})
|
|
|
|
}
|
2016-07-13 05:05:33 +02:00
|
|
|
}
|
|
|
|
|
2016-09-18 08:50:31 +02:00
|
|
|
{{end -}}{{- /* range */ -}}
|
2016-07-13 05:05:33 +02:00
|
|
|
{{- end -}}{{- /* outer if join table */ -}}
|