forked from cjfinnell/pgverify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
query_test.go
198 lines (188 loc) · 6.96 KB
/
query_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
//nolint:testpackage // unit test for internals, *_test pattern not appropriate
package pgverify
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestBuildGetTablesQuery(t *testing.T) {
for _, tc := range []struct {
name string
includeSchemas []string
excludeSchemas []string
includeTables []string
excludeTables []string
expectedQuery string
}{
{
name: "no filters",
expectedQuery: "SELECT table_schema, table_name FROM information_schema.tables WHERE table_type != 'VIEW'",
},
} {
t.Run(tc.name, func(t *testing.T) {
require.Equal(t, tc.expectedQuery, buildGetTablesQuery(tc.includeSchemas, tc.excludeSchemas, tc.includeTables, tc.excludeTables))
})
}
}
func TestBuildFullHashQuery(t *testing.T) {
for _, tc := range []struct {
name string
config Config
schemaName string
tableName string
columns []column
primaryColumnNamesString string
expectedQuery string
}{
{
name: "happy path",
config: Config{TimestampPrecision: TimestampPrecisionMilliseconds},
schemaName: "testSchema",
tableName: "testTable",
columns: []column{
{name: "id", dataType: "uuid", constraints: []string{"PRIMARY KEY", "another constraint"}},
{name: "content", dataType: "text"},
{name: "when", dataType: "timestamp with time zone"},
},
primaryColumnNamesString: "id",
expectedQuery: formatQuery(`
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT("content"::TEXT, "id"::TEXT, (extract(epoch from date_trunc('milliseconds', "when"))::DECIMAL * 1000000)::BIGINT::TEXT)) AS hash
FROM "testSchema"."testTable"
ORDER BY CONCAT("id"::TEXT)
) as eachhash`),
},
{
name: "multi-column primary key",
config: Config{TimestampPrecision: TimestampPrecisionMilliseconds},
schemaName: "testSchema",
tableName: "testTable",
columns: []column{
{name: "id", dataType: "uuid", constraints: []string{"PRIMARY KEY", "another constraint"}},
{name: "content", dataType: "text", constraints: []string{"PRIMARY KEY"}},
{name: "when", dataType: "timestamp with time zone"},
},
primaryColumnNamesString: "id, content",
expectedQuery: formatQuery(`
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT("content"::TEXT, "id"::TEXT, (extract(epoch from date_trunc('milliseconds', "when"))::DECIMAL * 1000000)::BIGINT::TEXT)) AS hash
FROM "testSchema"."testTable"
ORDER BY CONCAT("content"::TEXT, "id"::TEXT)
) as eachhash`),
},
{
name: "multi-column hashed primary key",
config: Config{TimestampPrecision: TimestampPrecisionMilliseconds, HashPrimaryKeys: true},
schemaName: "testSchema",
tableName: "testTable",
columns: []column{
{name: "id", dataType: "uuid", constraints: []string{"PRIMARY KEY", "another constraint"}},
{name: "content", dataType: "text", constraints: []string{"PRIMARY KEY"}},
{name: "when", dataType: "timestamp with time zone"},
},
primaryColumnNamesString: "id, content",
expectedQuery: formatQuery(`
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT("content"::TEXT, "id"::TEXT, (extract(epoch from date_trunc('milliseconds', "when"))::DECIMAL * 1000000)::BIGINT::TEXT)) AS hash
FROM "testSchema"."testTable"
ORDER BY MD5(CONCAT("content"::TEXT, "id"::TEXT))
) as eachhash`),
},
} {
t.Run(tc.name, func(t *testing.T) {
require.Equal(t, tc.expectedQuery, buildFullHashQuery(tc.config, tc.schemaName, tc.tableName, tc.columns))
})
}
}
func TestBuildSparseHashQuery(t *testing.T) {
for _, tc := range []struct {
name string
config Config
schemaName string
tableName string
columns []column
expectedQuery string
}{
{
name: "happy path",
config: Config{TimestampPrecision: TimestampPrecisionMilliseconds},
schemaName: "testSchema",
tableName: "testTable",
columns: []column{
{name: "id", dataType: "uuid", constraints: []string{"PRIMARY KEY", "another constraint"}},
{name: "content", dataType: "text"},
{name: "when", dataType: "timestamp with time zone"},
},
expectedQuery: formatQuery(`
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT("content"::TEXT, "id"::TEXT, (extract(epoch from date_trunc('milliseconds', "when"))::DECIMAL * 1000000)::BIGINT::TEXT)) AS hash
FROM "testSchema"."testTable"
WHERE id in (
SELECT id
FROM "testSchema"."testTable"
WHERE ('x' || substr(md5(CONCAT("id"::TEXT)),1,16))::bit(64)::bigint % 10 = 0
)
ORDER BY CONCAT("id"::TEXT)
) AS eachrow`),
},
{
name: "multi-column primary key",
config: Config{TimestampPrecision: TimestampPrecisionMilliseconds},
schemaName: "testSchema",
tableName: "testTable",
columns: []column{
{name: "id", dataType: "uuid", constraints: []string{"PRIMARY KEY", "another constraint"}},
{name: "content", dataType: "text", constraints: []string{"PRIMARY KEY"}},
{name: "when", dataType: "timestamp with time zone"},
},
expectedQuery: formatQuery(`
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT("content"::TEXT, "id"::TEXT, (extract(epoch from date_trunc('milliseconds', "when"))::DECIMAL * 1000000)::BIGINT::TEXT)) AS hash
FROM "testSchema"."testTable"
WHERE content in (
SELECT content
FROM "testSchema"."testTable"
WHERE ('x' || substr(md5(CONCAT("content"::TEXT, "id"::TEXT)),1,16))::bit(64)::bigint % 10 = 0
) AND id in (
SELECT id
FROM "testSchema"."testTable"
WHERE ('x' || substr(md5(CONCAT("content"::TEXT, "id"::TEXT)),1,16))::bit(64)::bigint % 10 = 0
) ORDER BY CONCAT("content"::TEXT, "id"::TEXT)
) AS eachrow`),
},
{
name: "multi-column hashed primary key",
config: Config{TimestampPrecision: TimestampPrecisionMilliseconds, HashPrimaryKeys: true},
schemaName: "testSchema",
tableName: "testTable",
columns: []column{
{name: "id", dataType: "uuid", constraints: []string{"PRIMARY KEY", "another constraint"}},
{name: "content", dataType: "text", constraints: []string{"PRIMARY KEY"}},
{name: "when", dataType: "timestamp with time zone"},
},
expectedQuery: formatQuery(`
SELECT md5(string_agg(hash, ''))
FROM (
SELECT MD5(CONCAT("content"::TEXT, "id"::TEXT, (extract(epoch from date_trunc('milliseconds', "when"))::DECIMAL * 1000000)::BIGINT::TEXT)) AS hash
FROM "testSchema"."testTable"
WHERE content in (
SELECT content
FROM "testSchema"."testTable"
WHERE ('x' || substr(md5(CONCAT("content"::TEXT, "id"::TEXT)),1,16))::bit(64)::bigint % 10 = 0
) AND id in (
SELECT id
FROM "testSchema"."testTable"
WHERE ('x' || substr(md5(CONCAT("content"::TEXT, "id"::TEXT)),1,16))::bit(64)::bigint % 10 = 0
) ORDER BY MD5(CONCAT("content"::TEXT, "id"::TEXT))
) AS eachrow`),
},
} {
t.Run(tc.name, func(t *testing.T) {
require.Equal(t, tc.expectedQuery, buildSparseHashQuery(tc.config, tc.schemaName, tc.tableName, tc.columns, 10))
})
}
}