tests/functions/Import-D365Bacpac.Tests.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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
Describe "Import-D365Bacpac Unit Tests" -Tag "Unit" {
    BeforeAll {
        # Place here all things needed to prepare for the tests
    }
    AfterAll {
        # Here is where all the cleanup tasks go
    }
    
    Describe "Ensuring unchanged command signature" {
        It "should have the expected parameter sets" {
            (Get-Command Import-D365Bacpac).ParameterSets.Name | Should -Be 'ImportTier1', 'ImportOnlyTier2', 'ImportTier2'
        }
        
        It 'Should have the expected parameter ImportModeTier1' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['ImportModeTier1']
            $parameter.Name | Should -Be 'ImportModeTier1'
            $parameter.ParameterType.ToString() | Should -Be System.Management.Automation.SwitchParameter
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportTier1'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier1'
            $parameter.ParameterSets['ImportTier1'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier1'].Position | Should -Be 0
            $parameter.ParameterSets['ImportTier1'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter ImportModeTier2' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['ImportModeTier2']
            $parameter.Name | Should -Be 'ImportModeTier2'
            $parameter.ParameterType.ToString() | Should -Be System.Management.Automation.SwitchParameter
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier2'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 0
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 0
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter DatabaseServer' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['DatabaseServer']
            $parameter.Name | Should -Be 'DatabaseServer'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be 1
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter DatabaseName' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['DatabaseName']
            $parameter.Name | Should -Be 'DatabaseName'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be 2
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter SqlUser' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['SqlUser']
            $parameter.Name | Should -Be 'SqlUser'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier1', 'ImportTier2', '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 3
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier1'
            $parameter.ParameterSets['ImportTier1'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].Position | Should -Be 3
            $parameter.ParameterSets['ImportTier1'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 3
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be 3
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter SqlPwd' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['SqlPwd']
            $parameter.Name | Should -Be 'SqlPwd'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier1', 'ImportTier2', '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 4
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier1'
            $parameter.ParameterSets['ImportTier1'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].Position | Should -Be 4
            $parameter.ParameterSets['ImportTier1'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 4
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be 4
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter BacpacFile' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['BacpacFile']
            $parameter.Name | Should -Be 'BacpacFile'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be 5
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter NewDatabaseName' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['NewDatabaseName']
            $parameter.Name | Should -Be 'NewDatabaseName'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be 6
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter AxDeployExtUserPwd' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['AxDeployExtUserPwd']
            $parameter.Name | Should -Be 'AxDeployExtUserPwd'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier2'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 7
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 7
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter AxDbAdminPwd' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['AxDbAdminPwd']
            $parameter.Name | Should -Be 'AxDbAdminPwd'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier2'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 8
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 8
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter AxRuntimeUserPwd' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['AxRuntimeUserPwd']
            $parameter.Name | Should -Be 'AxRuntimeUserPwd'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier2'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 9
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 9
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter AxMrRuntimeUserPwd' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['AxMrRuntimeUserPwd']
            $parameter.Name | Should -Be 'AxMrRuntimeUserPwd'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier2'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 10
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 10
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter AxRetailRuntimeUserPwd' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['AxRetailRuntimeUserPwd']
            $parameter.Name | Should -Be 'AxRetailRuntimeUserPwd'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier2'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 11
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 11
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter AxRetailDataSyncUserPwd' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['AxRetailDataSyncUserPwd']
            $parameter.Name | Should -Be 'AxRetailDataSyncUserPwd'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier2'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 12
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 12
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter AxDbReadonlyUserPwd' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['AxDbReadonlyUserPwd']
            $parameter.Name | Should -Be 'AxDbReadonlyUserPwd'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier2'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be 13
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier2'
            $parameter.ParameterSets['ImportTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].Position | Should -Be 13
            $parameter.ParameterSets['ImportTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier2'].ValueFromPipelineByPropertyName | Should -Be $True
            $parameter.ParameterSets['ImportTier2'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter CustomSqlFile' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['CustomSqlFile']
            $parameter.Name | Should -Be 'CustomSqlFile'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be -2147483648
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter ModelFile' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['ModelFile']
            $parameter.Name | Should -Be 'ModelFile'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be -2147483648
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter DiagnosticFile' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['DiagnosticFile']
            $parameter.Name | Should -Be 'DiagnosticFile'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be -2147483648
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter ImportOnly' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['ImportOnly']
            $parameter.Name | Should -Be 'ImportOnly'
            $parameter.ParameterType.ToString() | Should -Be System.Management.Automation.SwitchParameter
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be 'ImportOnlyTier2', 'ImportTier1'
            $parameter.ParameterSets.Keys | Should -Contain 'ImportOnlyTier2'
            $parameter.ParameterSets['ImportOnlyTier2'].IsMandatory | Should -Be $True
            $parameter.ParameterSets['ImportOnlyTier2'].Position | Should -Be -2147483648
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportOnlyTier2'].ValueFromRemainingArguments | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Contain 'ImportTier1'
            $parameter.ParameterSets['ImportTier1'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].Position | Should -Be -2147483648
            $parameter.ParameterSets['ImportTier1'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['ImportTier1'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter MaxParallelism' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['MaxParallelism']
            $parameter.Name | Should -Be 'MaxParallelism'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be -2147483648
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter LogPath' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['LogPath']
            $parameter.Name | Should -Be 'LogPath'
            $parameter.ParameterType.ToString() | Should -Be System.String
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be -2147483648
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter ShowOriginalProgress' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['ShowOriginalProgress']
            $parameter.Name | Should -Be 'ShowOriginalProgress'
            $parameter.ParameterType.ToString() | Should -Be System.Management.Automation.SwitchParameter
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be -2147483648
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter OutputCommandOnly' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['OutputCommandOnly']
            $parameter.Name | Should -Be 'OutputCommandOnly'
            $parameter.ParameterType.ToString() | Should -Be System.Management.Automation.SwitchParameter
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be -2147483648
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
        It 'Should have the expected parameter EnableException' {
            $parameter = (Get-Command Import-D365Bacpac).Parameters['EnableException']
            $parameter.Name | Should -Be 'EnableException'
            $parameter.ParameterType.ToString() | Should -Be System.Management.Automation.SwitchParameter
            $parameter.IsDynamic | Should -Be $False
            $parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
            $parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
            $parameter.ParameterSets['__AllParameterSets'].IsMandatory | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].Position | Should -Be -2147483648
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipeline | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromPipelineByPropertyName | Should -Be $False
            $parameter.ParameterSets['__AllParameterSets'].ValueFromRemainingArguments | Should -Be $False
        }
    }
    
    Describe "Testing parameterset ImportTier1" {
        <#
        ImportTier1 -ImportModeTier1 -BacpacFile -NewDatabaseName
        ImportTier1 -ImportModeTier1 -DatabaseServer -DatabaseName -SqlUser -SqlPwd -BacpacFile -NewDatabaseName -CustomSqlFile -ModelFile -DiagnosticFile -ImportOnly -MaxParallelism -LogPath -ShowOriginalProgress -OutputCommandOnly -EnableException
        #>

    }
     Describe "Testing parameterset ImportOnlyTier2" {
        <#
        ImportOnlyTier2 -ImportModeTier2 -SqlUser -SqlPwd -BacpacFile -NewDatabaseName -ImportOnly
        ImportOnlyTier2 -ImportModeTier2 -DatabaseServer -DatabaseName -SqlUser -SqlPwd -BacpacFile -NewDatabaseName -AxDeployExtUserPwd -AxDbAdminPwd -AxRuntimeUserPwd -AxMrRuntimeUserPwd -AxRetailRuntimeUserPwd -AxRetailDataSyncUserPwd -AxDbReadonlyUserPwd -CustomSqlFile -ModelFile -DiagnosticFile -ImportOnly -MaxParallelism -LogPath -ShowOriginalProgress -OutputCommandOnly -EnableException
        #>

    }
     Describe "Testing parameterset ImportTier2" {
        <#
        ImportTier2 -ImportModeTier2 -SqlUser -SqlPwd -BacpacFile -NewDatabaseName -AxDeployExtUserPwd -AxDbAdminPwd -AxRuntimeUserPwd -AxMrRuntimeUserPwd -AxRetailRuntimeUserPwd -AxRetailDataSyncUserPwd -AxDbReadonlyUserPwd
        ImportTier2 -ImportModeTier2 -DatabaseServer -DatabaseName -SqlUser -SqlPwd -BacpacFile -NewDatabaseName -AxDeployExtUserPwd -AxDbAdminPwd -AxRuntimeUserPwd -AxMrRuntimeUserPwd -AxRetailRuntimeUserPwd -AxRetailDataSyncUserPwd -AxDbReadonlyUserPwd -CustomSqlFile -ModelFile -DiagnosticFile -MaxParallelism -LogPath -ShowOriginalProgress -OutputCommandOnly -EnableException
        #>

    }

}