-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsert_test.go
164 lines (135 loc) · 4.1 KB
/
insert_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package test
import (
"fmt"
"os"
"strconv"
"strings"
"testing"
"github.com/google/uuid"
"gorm.io/gorm/clause"
)
func TestInsertRaw(t *testing.T) {
var customer_name = "customer_name2"
var address = "address1"
var city = "city1"
var state = "state1"
var zip = "zip1"
var age = 10
var schemaName = os.Getenv("USER")
db := getDb(t)
// NOTE: Anonymous parameters only, passed by order
checkTxError(t,
db.Exec(fmt.Sprintf(`INSERT INTO %s.CUSTOMERS
(customer_id,customer_name,address,city,state,zip_code,age) VALUES
(customers_s.nextval,:1,:2,:3,:4,:5,:6)`, schemaName),
customer_name, address, city, state, zip, age))
}
func TestInsertModel(t *testing.T) {
c := getCustomerWithSequenceButNotReturning("TestInsertModel")
db := getDb(t)
tx := checkTxError(t, db.Create(&c))
var rowsExpected int64 = 1
if tx.RowsAffected != rowsExpected {
t.Errorf("%d rows affected, %d expected", tx.RowsAffected, rowsExpected)
}
}
func TestInsertModels(t *testing.T) {
count := 4
batchId := uuid.NewString()
cs := make([]CustomerWithSequenceButNotReturning, count)
for i := 0; i < count; i++ {
cs[i] = getCustomerWithSequenceButNotReturning(fmt.Sprintf("TestInsertModels:batch-%s:", batchId))
}
db := getDb(t)
tx := checkTxError(t, db.Create(&cs).Clauses(clause.Returning{}))
if tx.RowsAffected != int64(count) {
t.Errorf("batch insert %d rows affected, %d expected", tx.RowsAffected, count)
}
}
func TestInsertModelsWithReturningClause(t *testing.T) {
count := 4
batchId := uuid.NewString()
cs := make([]CustomerWithSequenceButNotReturning, count)
for i := 0; i < count; i++ {
cs[i] = getCustomerWithSequenceButNotReturning(fmt.Sprintf("TestInsertModels:batch-%s:", batchId))
}
db := getDb(t)
tx := checkTxError(t, db.Clauses(clause.Returning{
Columns: []clause.Column{
{Name: "CUSTOMER_ID"},
},
}).Create(&cs))
// NOT SUPPORTED NOW
// var rowsExpected = int64(count)
// if tx.RowsAffected != rowsExpected {
// t.Errorf("batch insert %d rows affected, %d expected", tx.RowsAffected, rowsExpected)
// }
ids := make([]string, count)
for i := 0; i < count; i++ {
cid := cs[i].CustomerID
ids[i] = strconv.FormatInt(cid, 10)
if cid == 0 {
t.Errorf("not returning created value: %s", tx.Error)
}
}
t.Logf("created: %s", strings.Join(ids, ","))
}
func TestInsertModelsWithCallbacks(t *testing.T) {
count := 4
batchId := uuid.NewString()
cs := make([]CustomerWithHook, count)
for i := 0; i < count; i++ {
cs[i] = getCustomerWithHook(fmt.Sprintf("TestInsertModels:batch-%s:", batchId))
}
db := getDb(t)
tx := checkTxError(t, db.Create(&cs))
// NOT SUPPORTED NOW
// var rowsExpected = int64(count)
// if tx.RowsAffected != rowsExpected {
// t.Errorf("batch insert %d rows affected, %d expected", tx.RowsAffected, rowsExpected)
// }
ids := make([]string, count)
for i := 0; i < count; i++ {
if !strings.HasPrefix(cs[i].State, "HOOK") {
t.Errorf("not returning created value: %s", tx.Error)
}
}
t.Logf("created: %s", strings.Join(ids, ","))
}
func TestInsertModelWithAutoReturning(t *testing.T) {
c := getCustomer("TestInsertModelReturning")
db := getDb(t)
checkTxError(t, db.Create(&c))
// NOT SUPPORTED NOW
// var rowsExpected int64 = 1
// if tx.RowsAffected != rowsExpected {
// t.Errorf("%d rows affected, %d expected", tx.RowsAffected, rowsExpected)
// }
if c.CustomerID <= 0 {
t.Errorf("create failed or not returning new id")
}
t.Logf("created: %d", c.CustomerID)
}
func TestInsertModelsWithAutoReturning(t *testing.T) {
count := 4
batchId := uuid.NewString()
cs := make([]Customer, count)
for i := 0; i < count; i++ {
cs[i] = getCustomer(fmt.Sprintf("TestInsertModelsReturning:batch-%s:", batchId))
}
db := getDb(t)
tx := checkTxError(t, db.Create(&cs))
// NOT SUPPORTED NOW
// if tx.RowsAffected != int64(count) {
// t.Errorf("batch insert %d rows affected, %d expected", tx.RowsAffected, count)
// }
ids := make([]string, count)
for i := 0; i < count; i++ {
cid := cs[i].CustomerID
ids[i] = strconv.FormatInt(cid, 10)
if cid == 0 {
t.Errorf("not returning created value: %s", tx.Error)
}
}
t.Logf("created: %s", strings.Join(ids, ","))
}