-
Notifications
You must be signed in to change notification settings - Fork 2
/
query_test.go
146 lines (136 loc) · 5.41 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
//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",
},
} {
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 '' AS grouper, MD5(CONCAT((extract(epoch from date_trunc('milliseconds', when))::DECIMAL * 1000000)::BIGINT::TEXT, content::TEXT, id::TEXT)) AS hash, CONCAT(id::TEXT) as primary_key
FROM "testSchema"."testTable") AS eachrow GROUP BY grouper, primary_key ORDER BY primary_key`),
},
{
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 '' AS grouper, MD5(CONCAT((extract(epoch from date_trunc('milliseconds', when))::DECIMAL * 1000000)::BIGINT::TEXT, content::TEXT, id::TEXT)) AS hash, CONCAT(content::TEXT, id::TEXT) as primary_key
FROM "testSchema"."testTable") AS eachrow GROUP BY grouper, primary_key ORDER BY primary_key`),
},
} {
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 '' AS grouper, MD5(CONCAT((extract(epoch from date_trunc('milliseconds', when))::DECIMAL * 1000000)::BIGINT::TEXT, content::TEXT, id::TEXT)) AS hash, CONCAT(id::TEXT) as primary_key
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 GROUP BY grouper, primary_key ORDER BY primary_key`),
},
{
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 '' AS grouper, MD5(CONCAT((extract(epoch from date_trunc('milliseconds', when))::DECIMAL * 1000000)::BIGINT::TEXT, content::TEXT, id::TEXT)) AS hash, CONCAT(content::TEXT, id::TEXT) as primary_key
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 GROUP BY grouper, primary_key ORDER BY primary_key`),
},
} {
t.Run(tc.name, func(t *testing.T) {
require.Equal(t, tc.expectedQuery, buildSparseHashQuery(tc.config, tc.schemaName, tc.tableName, tc.columns, 10))
})
}
}