-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark_test.go
211 lines (192 loc) · 5.5 KB
/
benchmark_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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package builder
import (
"testing"
)
// Common setup for benchmark tests
var (
benchBuilder = New()
benchFields = []string{"id", "name", "age", "sex", "birthday"}
benchTable = "user"
)
// BenchmarkSelect tests the performance of basic Select query building
func BenchmarkSelect(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchBuilder.Select(benchFields...).From(benchTable).Build()
}
}
// BenchmarkSelectWithWhere tests the performance of Select query building with Where conditions
func BenchmarkSelectWithWhere(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchBuilder.Select(benchFields...).From(benchTable).
Where(Eq("age", 25)).And(Eq("sex", "male")).
Build()
}
}
// BenchmarkSelectComplex tests the performance of complex Select query building
func BenchmarkSelectComplex(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchBuilder.Select(benchFields...).From(benchTable).
Where(Gt("age", 18)).
And(In("city_id", 1, 2, 3)).
Or(Between("salary", 5000, 10000)).
OrderBy(Desc("age"), Asc("name")).
Limit(0, 100).
Build()
}
}
// BenchmarkInsert tests the performance of basic Insert query building
func BenchmarkInsert(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchBuilder.Insert(benchTable, benchFields...).
Values([]interface{}{1, "John", 25, "male", "1998-01-01"}).
Build()
}
}
// BenchmarkInsertMultipleRows tests the performance of Insert query building with multiple rows
func BenchmarkInsertMultipleRows(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
values1 := []interface{}{1, "John", 25, "male", "1998-01-01"}
values2 := []interface{}{2, "Jane", 23, "female", "2000-01-01"}
values3 := []interface{}{3, "Bob", 30, "male", "1993-01-01"}
for i := 0; i < b.N; i++ {
benchBuilder.Insert(benchTable, benchFields...).
Values(values1, values2, values3).
Build()
}
}
// BenchmarkUpdate tests the performance of basic Update query building
func BenchmarkUpdate(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchBuilder.Update(benchTable,
NewFieldValue("name", "John Doe"),
NewFieldValue("age", 26),
).Where(Eq("id", 1)).Build()
}
}
// BenchmarkUpdateComplex tests the performance of complex Update query building
func BenchmarkUpdateComplex(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchBuilder.Update(benchTable,
NewFieldValue("name", "John Doe"),
NewFieldValue("age", 26),
NewFieldValue("updated_at", "2023-01-01"),
).Where(Eq("id", 1)).
And(Gt("age", 20)).
Or(In("status", "active", "pending")).
Build()
}
}
// BenchmarkDelete tests the performance of basic Delete query building
func BenchmarkDelete(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchBuilder.Delete(benchTable).Where(Eq("id", 1)).Build()
}
}
// BenchmarkDeleteComplex tests the performance of complex Delete query building
func BenchmarkDeleteComplex(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchBuilder.Delete(benchTable).
Where(Lt("created_at", "2020-01-01")).
And(Eq("status", "inactive")).
Or(In("category", "temp", "test")).
Build()
}
}
// BenchmarkRawSQL tests the performance of raw SQL building
func BenchmarkRawSQL(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
benchBuilder.Raw("SELECT * FROM user WHERE id = ?", 1).Build()
}
}
// BenchmarkDialectorMysql tests the performance of MySQL dialect
func BenchmarkDialectorMysql(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
builder := New()
builder.SetDialector(mysqlDialector)
for i := 0; i < b.N; i++ {
builder.Select(benchFields...).From(benchTable).
Where(Eq("id", 1)).
Build()
}
}
// BenchmarkDialectorPostgresql tests the performance of PostgreSQL dialect
func BenchmarkDialectorPostgresql(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
builder := New()
builder.SetDialector(postgresDialector)
for i := 0; i < b.N; i++ {
builder.Select(benchFields...).From(benchTable).
Where(Eq("id", 1)).
Build()
}
}
// BenchmarkDialectorSQLite tests the performance of SQLite dialect
func BenchmarkDialectorSQLite(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
builder := New()
builder.SetDialector(sqliteDialector)
for i := 0; i < b.N; i++ {
builder.Select(benchFields...).From(benchTable).
Where(Eq("id", 1)).
Build()
}
}
// BenchmarkConditionBuilding tests the performance of condition building
func BenchmarkConditionBuilding(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
Eq("id", 1)
Gt("age", 18)
Lt("age", 60)
Gte("salary", 5000)
Lte("salary", 10000)
In("status", "active", "pending", "reviewing")
NotIn("category", "deleted", "archived")
Between("created_at", "2020-01-01", "2023-01-01")
NotBetween("updated_at", "2022-01-01", "2022-12-31")
Like("name", "%John%")
NotLike("description", "%temp%")
}
}
// BenchmarkComplexConditionCombination tests the performance of complex condition combinations
func BenchmarkComplexConditionCombination(b *testing.B) {
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
condGroup := NewConditionGroup(
Eq("status", "active"),
Gt("age", 18),
)
condGroup2 := NewConditionGroup(
In("category", "premium", "standard"),
Between("created_at", "2020-01-01", "2023-01-01"),
)
benchBuilder.Select(benchFields...).From(benchTable).
Where(condGroup...).
Or(condGroup2...).
Build()
}
}