This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
forked from smithoss/gonymizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
args_builder_test.go
179 lines (161 loc) · 3.72 KB
/
args_builder_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
package gonymizer
import (
"github.com/stretchr/testify/assert"
"testing"
)
var emptyList = []string{}
const no_oids_flag = false
const oids_flag_present = true
func TestMinimalDumpArgs(t *testing.T) {
conf := GetDbConf()
args := CreateDumpArgs(
conf,
TestCreateFile,
TestSchemaPrefix,
emptyList,
emptyList,
emptyList,
emptyList,
no_oids_flag,
)
expected_args := []string{
"--no-owner",
"-f", "testing/output.TestCreateFile.sql",
"postgres://user:password@test_host/db_name?sslmode=disable",
}
assert.Equal(t, expected_args, args, "they should be equal")
}
func TestCanProvideSchemas(t *testing.T) {
conf := GetDbConf()
args := CreateDumpArgs(
conf,
TestCreateFile,
TestSchemaPrefix,
emptyList,
emptyList,
emptyList,
[]string{"schema1", "schema2"},
no_oids_flag,
)
expected_args := []string{
"--no-owner",
"--schema=schema1",
"--schema=schema2",
"-f", "testing/output.TestCreateFile.sql",
"postgres://user:password@test_host/db_name?sslmode=disable",
}
assert.Equal(t, expected_args, args, "they should be equal")
}
func TestSchemaPrefixAddsWildcard(t *testing.T) {
conf := GetDbConf()
args := CreateDumpArgs(
conf,
TestCreateFile,
"company_",
emptyList,
emptyList,
emptyList,
[]string{"company"},
no_oids_flag,
)
expected_args := []string{
"--no-owner",
"--schema=company_*",
"-f", "testing/output.TestCreateFile.sql",
"postgres://user:password@test_host/db_name?sslmode=disable",
}
assert.Equal(t, expected_args, args, "they should be equal")
}
func TestCanExcludeSchemas(t *testing.T) {
conf := GetDbConf()
args := CreateDumpArgs(
conf,
TestCreateFile,
TestSchemaPrefix,
emptyList,
emptyList,
[]string{"bad-schema1", "bad-schema2", "bad-schema3"},
emptyList,
no_oids_flag,
)
expected_args := []string{
"--no-owner",
"--exclude-schema=bad-schema1",
"--exclude-schema=bad-schema2",
"--exclude-schema=bad-schema3",
"-f", "testing/output.TestCreateFile.sql",
"postgres://user:password@test_host/db_name?sslmode=disable",
}
assert.Equal(t, expected_args, args, "they should be equal")
}
func TestCanExcludeTables(t *testing.T) {
conf := GetDbConf()
args := CreateDumpArgs(
conf,
TestCreateFile,
TestSchemaPrefix,
[]string{"bad-table1", "bad-table2"},
emptyList,
emptyList,
emptyList,
no_oids_flag,
)
expected_args := []string{
"--no-owner",
"--exclude-table=bad-table1",
"--exclude-table=bad-table2",
"-f", "testing/output.TestCreateFile.sql",
"postgres://user:password@test_host/db_name?sslmode=disable",
}
assert.Equal(t, expected_args, args, "they should be equal")
}
func TestCanExcludeTableData(t *testing.T) {
conf := GetDbConf()
args := CreateDumpArgs(
conf,
TestCreateFile,
TestSchemaPrefix,
emptyList,
[]string{"bad-table1", "bad-table2"},
emptyList,
emptyList,
no_oids_flag,
)
expected_args := []string{
"--no-owner",
"--exclude-table-data=bad-table1",
"--exclude-table-data=bad-table2",
"-f", "testing/output.TestCreateFile.sql",
"postgres://user:password@test_host/db_name?sslmode=disable",
}
assert.Equal(t, expected_args, args, "they should be equal")
}
func TestCanAddOIDSFlag(t *testing.T) {
conf := GetDbConf()
args := CreateDumpArgs(
conf,
TestCreateFile,
TestSchemaPrefix,
emptyList,
emptyList,
emptyList,
emptyList,
oids_flag_present,
)
expected_args := []string{
"--no-owner",
"--oids",
"-f", "testing/output.TestCreateFile.sql",
"postgres://user:password@test_host/db_name?sslmode=disable",
}
assert.Equal(t, expected_args, args, "they should be equal")
}
func GetDbConf() PGConfig {
conf := PGConfig{}
conf.Username = "user"
conf.Pass = "password"
conf.Host = "test_host"
conf.DefaultDBName = "db_name"
conf.SSLMode = "disable"
return conf
}