-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql_test.go
264 lines (217 loc) · 6.16 KB
/
sql_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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
package belajar-go-database
import (
"context"
"database/sql"
"fmt"
"strconv"
"testing"
"time"
)
// exec sql adalah untuk insert, update, delete dengan tipe data yang sama
func TestExecSql(t *testing.T) {
db := GetConnection()
defer db.Close()
ctx := context.Background()
script := "INSERT INTO customer(id, name) VALUES('joko', 'Joko')"
_, err := db.ExecContext(ctx, script)
if err != nil {
panic(err)
}
fmt.Println("Success insert new customer")
}
// query sql adalah untuk select dengan tipe data yang sama
func TestQuerySql(t *testing.T) {
db := GetConnection()
defer db.Close()
ctx := context.Background()
script := "SELECT id, name FROM customer"
rows, err := db.QueryContext(ctx, script)
if err != nil {
panic(err)
}
defer rows.Close()
for rows.Next() {
var id, name string
err = rows.Scan(&id, &name)
if err != nil {
panic(err)
}
fmt.Println("Id:", id)
fmt.Println("Name:", name)
}
}
// query sql complex adalah untuk select dengan tipe data yang berbeda-beda
func TestQuerySqlComplex(t *testing.T) {
db := GetConnection()
defer db.Close()
ctx := context.Background()
script := "SELECT id, name, email, balance, rating, birth_date, married, created_at FROM customer"
rows, err := db.QueryContext(ctx, script)
if err != nil {
panic(err)
}
defer rows.Close()
for rows.Next() {
var id, name string
var email sql.NullString
var balance int32
var rating float64
var birthDate sql.NullTime
var createdAt time.Time
var married bool
err = rows.Scan(&id, &name, &email, &balance, &rating, &birthDate, &married, &createdAt)
if err != nil {
panic(err)
}
fmt.Println("================")
fmt.Println("Id:", id)
fmt.Println("Name:", name)
if email.Valid {
fmt.Println("Email:", email.String)
}
fmt.Println("Balance:", balance)
fmt.Println("Rating:", rating)
if birthDate.Valid {
fmt.Println("Birth Date:", birthDate.Time)
}
fmt.Println("Married:", married)
fmt.Println("Created At:", createdAt)
}
}
// test sql injection dengan username = admin'; # dan password = salah (tidak ada di database) akan berhasil login karena sql injection
func TestSqlInjection(t *testing.T) {
db := GetConnection()
defer db.Close()
ctx := context.Background()
username := "admin'; #"
password := "salah"
script := "SELECT username FROM user WHERE username = '" + username +
"' AND password = '" + password + "' LIMIT 1"
fmt.Println(script)
rows, err := db.QueryContext(ctx, script)
if err != nil {
panic(err)
}
defer rows.Close()
if rows.Next() {
var username string
err := rows.Scan(&username)
if err != nil {
panic(err)
}
fmt.Println("Sukses Login", username)
} else {
fmt.Println("Gagal Login")
}
}
// test sql injection safe dengan username = admin'; # dan password = salah (tidak ada di database) akan gagal login karena sql injection safe (menggunakan parameter) query sql complex
func TestSqlInjectionSafe(t *testing.T) {
db := GetConnection()
defer db.Close()
ctx := context.Background()
username := "admin'; #"
password := "salah"
script := "SELECT username FROM user WHERE username = ? AND password = ? LIMIT 1"
fmt.Println(script)
rows, err := db.QueryContext(ctx, script, username, password)
if err != nil {
panic(err)
}
defer rows.Close()
if rows.Next() {
var username string
err := rows.Scan(&username)
if err != nil {
panic(err)
}
fmt.Println("Sukses Login", username)
} else {
fmt.Println("Gagal Login")
}
}
// test sql injection safe dengan username = admin'; # dan password = salah (tidak ada di database) akan gagal login karena sql injection safe (menggunakan parameter) exec context sql
func TestExecSqlParameter(t *testing.T) {
db := GetConnection()
defer db.Close()
ctx := context.Background()
username := "eko'; DROP TABLE user; #"
password := "eko"
script := "INSERT INTO user(username, password) VALUES(?, ?)"
_, err := db.ExecContext(ctx, script, username, password)
if err != nil {
panic(err)
}
fmt.Println("Success insert new user")
}
// test auto increment last insert id maka id akan bertambah 1 dari id sebelumnya
func TestAutoIncrement(t *testing.T) {
db := GetConnection()
defer db.Close()
ctx := context.Background()
email := "eko@gmail.com"
comment := "Test komen"
script := "INSERT INTO comments(email, comment) VALUES(?, ?)"
result, err := db.ExecContext(ctx, script, email, comment)
if err != nil {
panic(err)
}
insertId, err := result.LastInsertId()
if err != nil {
panic(err)
}
fmt.Println("Success insert new comment with id", insertId)
}
// prepare statement digunakan jika kita menggunakan query yang sama berulang-ulang dengan parameter yang berbeda lebih baik menggunakan prepare statement karena lebih efisien dan lebih aman dari sql injection
func TestPrepareStatement(t *testing.T) {
db := GetConnection()
defer db.Close()
ctx := context.Background()
script := "INSERT INTO comments(email, comment) VALUES(?, ?)"
statement, err := db.PrepareContext(ctx, script)
if err != nil {
panic(err)
}
defer statement.Close()
for i := 0; i < 10; i++ {
email := "eko" + strconv.Itoa(i) + "@gmail.com"
comment := "Komentar ke " + strconv.Itoa(i)
result, err := statement.ExecContext(ctx, email, comment)
if err != nil {
panic(err)
}
id, err := result.LastInsertId()
if err != nil {
panic(err)
}
fmt.Println("Comment Id ", id)
}
}
// transaction adalah untuk melakukan beberapa query dalam satu transaksi yang sama jika salah satu query gagal maka semua query akan di rollback dan tidak ada yang di commit ke database jika semua query berhasil maka semua query akan di commit ke database
func TestTransaction(t *testing.T) {
db := GetConnection()
defer db.Close()
ctx := context.Background()
tx, err := db.Begin()
if err != nil {
panic(err)
}
script := "INSERT INTO comments(email, comment) VALUES(?, ?)"
// do transaction
for i := 0; i < 10; i++ {
email := "eko" + strconv.Itoa(i) + "@gmail.com"
comment := "Komentar ke " + strconv.Itoa(i)
result, err := tx.ExecContext(ctx, script, email, comment)
if err != nil {
panic(err)
}
id, err := result.LastInsertId()
if err != nil {
panic(err)
}
fmt.Println("Comment Id ", id)
}
err = tx.Rollback()
if err != nil {
panic(err)
}
}