-
-
Notifications
You must be signed in to change notification settings - Fork 808
/
testing.ps1
271 lines (219 loc) · 6.63 KB
/
testing.ps1
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
##############################
# create docker environment
##############################
# create a shared network
docker network create localnet
# Expose engines and setup shared path for migrations
docker run -p 2500:1433 --volume shared:/shared:z --name mssql1 --hostname mssql1 --network localnet -d dbatools/sqlinstance
docker run -p 2600:1433 --volume shared:/shared:z --name mssql2 --hostname mssql2 --network localnet -d dbatools/sqlinstance2
# create the repl folder
docker exec mssql1 mkdir /var/opt/mssql/ReplData
# also need these folders for setting up replication
docker exec mssql1 mkdir /shared/data /shared/repldata
##############################
# import our working module
##############################
Import-Module .\dbatools.psd1 -Force
Get-module dbatools*
##############################
# create alias
##############################
New-DbaClientAlias -ServerName 'localhost,2500' -Alias mssql1
New-DbaClientAlias -ServerName 'localhost,2600' -Alias mssql2
##############################
# save the password for ease
##############################
$securePassword = ('dbatools.IO' | ConvertTo-SecureString -AsPlainText -Force)
$credential = New-Object System.Management.Automation.PSCredential('sqladmin', $securePassword)
$PSDefaultParameterValues = @{
"*:SqlCredential" = $credential
"*:DestinationCredential" = $credential
"*:DestinationSqlCredential" = $credential
"*:SourceSqlCredential" = $credential
"*:PublisherSqlCredential" = $credential
}
##############################
# change silly defaults
##############################
Set-DbatoolsConfig -FullName sql.connection.trustcert -Value $true -PassThru | Register-DbatoolsConfig #-Scope SystemMandatory
Set-DbatoolsConfig -FullName sql.connection.EncryptConnection -Value optional -PassThru | Register-DbatoolsConfig #-Scope SystemMandatory
##############################
# test things :)
##############################
## already existing commands
<#
Get-DbaReplServer
Get-DbaReplDistributor
Get-DbaReplPublication
Test-DbaReplLatency
Export-DbaReplServerSetting
#>
$sqlInstance = Connect-DbaInstance -SqlInstance mssql1
Get-DbaReplServer -SqlInstance mssql1
Get-DbaReplDistributor -SqlInstance mssql1
Get-DbaReplPublication -SqlInstance mssql1
# enable\disable distribution
Enable-DbaReplDistributor -SqlInstance mssql1
Disable-DbaReplDistributor -SqlInstance mssql1
Get-DbaReplDistributor -SqlInstance
# enable publishing
Enable-DbaReplPublishing -SqlInstance mssql1
Disable-DbaReplPublishing -SqlInstance mssql1
# add a transactional publication
$pub = @{
SqlInstance = 'mssql1'
Database = 'pubs'
PublicationName = 'testPub'
Type = 'Transactional'
}
New-DbaReplPublication @pub -verbose
# add a merge publication
$pub = @{
SqlInstance = 'mssql1'
Database = 'pubs'
PublicationName = 'mergey'
Type = 'Merge'
}
New-DbaReplPublication @pub
# add a snapshot publication
$pub = @{
SqlInstance = 'mssql1'
Database = 'pubs'
PublicationName = 'snappy'
Type = 'Snapshot'
}
New-DbaReplPublication @pub
# add an article
$article = @{
SqlInstance = 'mssql1'
Database = 'pubs'
PublicationName = 'testpub'
Name = 'publishers'
Filter = "city = 'seattle'"
}
Add-DbaReplArticle @article
$article = @{
SqlInstance = 'mssql1'
Database = 'ReplDb'
PublicationName = 'testtrans'
Name = 'ReplicateMe'
}
Add-DbaReplArticle @article -EnableException
# mergey
$article = @{
SqlInstance = 'mssql1'
Database = 'pubs'
PublicationName = 'Mergey'
Name = 'publishers'
#Filter = "city = 'seattle'" ## not working?
}
Add-DbaReplArticle @article
# snappy
$article = @{
SqlInstance = 'mssql1'
Database = 'pubs'
PublicationName = 'snappy'
Name = 'publishers'
}
Add-DbaReplArticle @article
# remove an article
$article = @{
SqlInstance = 'mssql1'
Database = 'pubs'
PublicationName = 'testpub'
Name = 'publishers'
}
Remove-DbaReplArticle @article
# remove an article
$article = @{
SqlInstance = 'mssql1'
Database = 'pubs'
PublicationName = 'Mergey'
Name = 'publishers'
}
Remove-DbaReplArticle @article
## remove pubs
$pub = @{
SqlInstance = 'mssql1'
Database = 'ReplDb'
Name = 'Snappy'
}
Remove-DbaReplPublication @pub
## remove pubs
$pub = @{
SqlInstance = 'mssql1'
Database = 'ReplDb'
Name = 'TestPub'
}
Remove-DbaReplPublication @pub
## remove pubs
$pub = @{
SqlInstance = 'mssql1'
Database = 'ReplDb'
Name = 'Mergey'
}
Remove-DbaReplPublication @pub
# add subscriptions.
#transactional
$sub = @{
SqlInstance = 'mssql2'
Database = 'pubs'
PublicationDatabase = 'pubs'
PublisherSqlInstance = 'mssql1'
PublicationName = 'testpub'
Type = 'Push'
SubscriptionSqlCredential = $credential
}
New-DbaReplSubscription @sub -enableexception
#merge
$sub = @{
SqlInstance = 'mssql2'
Database = 'Mergeypubs'
PublicationDatabase = 'pubs'
PublisherSqlInstance = 'mssql1'
PublicationName = 'Mergey'
Type = 'Push'
SubscriptionSqlCredential = $credential
}
New-DbaReplSubscription @sub
#snapshot
$sub = @{
SqlInstance = 'mssql2'
Database = 'Snappypubs'
PublicationDatabase = 'pubs'
PublisherSqlInstance = 'mssql1'
PublicationName = 'Snappy'
Type = 'Push'
SubscriptionSqlCredential = $credential
}
New-DbaReplSubscription @sub
# remove subscriptions
$sub = @{
SqlInstance = 'mssql2'
SubscriptionDatabase = 'pubs'
PublisherSqlInstance = 'mssql1'
PublicationDatabase = 'pubs'
PublicationName = 'testPub'
}
Remove-DbaReplSubscription @sub
$sub = @{
SqlInstance = 'mssql2'
SubscriptionDatabase = 'Mergeypubs'
PublisherSqlInstance = 'mssql1'
PublicationDatabase = 'pubs'
PublicationName = 'Mergey'
}
Remove-DbaReplSubscription @sub
$sub = @{
SqlInstance = 'mssql2'
PublisherSqlInstance = 'mssql1'
PublicationName = 'snappy'
PublicationDatabase = 'pubs'
SubscriptionDatabase = 'Snappypubs'
}
Remove-DbaReplSubscription @sub
# TODO: Does the schema exist on the subscriber?
<#
// Ensure that we create the schema owner at the Subscriber.
article.SchemaOption |= CreationScriptOptions.Schema;
#>