-
Notifications
You must be signed in to change notification settings - Fork 0
/
access_text_test.go
53 lines (47 loc) · 1.08 KB
/
access_text_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
package pgtalk
import (
"testing"
)
var (
ti = TableInfo{
Name: "things",
Schema: "public",
Alias: "t1",
}
ci = ColumnInfo{
tableInfo: ti,
columnName: "label",
}
)
func TestTextIn(t *testing.T) {
ta := NewTextAccess(ci, nil)
in := ta.In("a", "b")
sql := SQL(in)
if got, want := sql, "(t1.label IN ('a','b'))"; got != want {
t.Errorf("got [%v:%T] want [%v:%T]", got, got, want, want)
}
}
func TestTextLike(t *testing.T) {
ta := NewTextAccess(ci, nil)
in := ta.Like("*me")
sql := SQL(in)
if got, want := sql, "(t1.label LIKE '*me')"; got != want {
t.Errorf("got [%v:%T] want [%v:%T]", got, got, want, want)
}
}
func TestTextNotNull(t *testing.T) {
ta := NewTextAccess(ci, nil)
op := IsNotNull(ta)
sql := SQL(op)
if got, want := sql, "(t1.label IS NOT NULL)"; got != want {
t.Errorf("got [%v:%T] want [%v:%T]", got, got, want, want)
}
}
func TestTextEquals(t *testing.T) {
ta := NewTextAccess(ci, nil)
op := ta.Equals("me")
sql := SQL(op)
if got, want := sql, "(t1.label = 'me')"; got != want {
t.Errorf("got [%v:%T] want [%v:%T]", got, got, want, want)
}
}