forked from jinzhu/gorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_test.go
52 lines (42 loc) · 1.29 KB
/
search_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
package gorm
import (
"fmt"
"reflect"
"testing"
)
func TestCloneSearch(t *testing.T) {
s := new(search)
s.Where("name = ?", "jinzhu").Order("name").Attrs("name", "jinzhu").Select("name, age")
s1 := s.clone()
s1.Where("age = ?", 20).Order("age").Attrs("email", "[email protected]").Select("email")
if reflect.DeepEqual(s.whereConditions, s1.whereConditions) {
t.Errorf("Where should be copied")
}
if reflect.DeepEqual(s.orders, s1.orders) {
t.Errorf("Order should be copied")
}
if reflect.DeepEqual(s.initAttrs, s1.initAttrs) {
t.Errorf("InitAttrs should be copied")
}
if reflect.DeepEqual(s.Select, s1.Select) {
t.Errorf("selectStr should be copied")
}
}
func TestWhereCloneCorruption(t *testing.T) {
for whereCount := 1; whereCount <= 8; whereCount++ {
t.Run(fmt.Sprintf("w=%d", whereCount), func(t *testing.T) {
s := new(search)
for w := 0; w < whereCount; w++ {
s = s.clone().Where(fmt.Sprintf("w%d = ?", w), fmt.Sprintf("value%d", w))
}
if len(s.whereConditions) != whereCount {
t.Errorf("s: where count should be %d", whereCount)
}
q1 := s.clone().Where("finalThing = ?", "THING1")
q2 := s.clone().Where("finalThing = ?", "THING2")
if reflect.DeepEqual(q1.whereConditions, q2.whereConditions) {
t.Errorf("Where conditions should be different")
}
})
}
}