forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy-DbaInstanceTrigger.Tests.ps1
45 lines (40 loc) · 1.96 KB
/
Copy-DbaInstanceTrigger.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
$CommandName = $MyInvocation.MyCommand.Name.Replace(".Tests.ps1", "")
Write-Host -Object "Running $PSCommandPath" -ForegroundColor Cyan
. "$PSScriptRoot\constants.ps1"
Describe "$CommandName Unit Tests" -Tag 'UnitTests' {
Context "Validate parameters" {
[object[]]$params = (Get-Command $CommandName).Parameters.Keys | Where-Object {$_ -notin ('whatif', 'confirm')}
[object[]]$knownParameters = 'Source', 'SourceSqlCredential', 'Destination', 'DestinationSqlCredential', 'ServerTrigger', 'ExcludeServerTrigger', 'Force', 'EnableException'
$knownParameters += [System.Management.Automation.PSCmdlet]::CommonParameters
It "Should only contain our specific parameters" {
(@(Compare-Object -ReferenceObject ($knownParameters | Where-Object {$_}) -DifferenceObject $params).Count ) | Should Be 0
}
}
}
Describe "$commandname Integration Tests" -Tags "IntegrationTests" {
Context "Setup" {
BeforeAll {
$triggername = "dbatoolsci-trigger"
$sql = "CREATE TRIGGER [$triggername] -- Trigger name
ON ALL SERVER FOR LOGON -- Tells you it's a logon trigger
AS
PRINT 'hello'"
$server = Connect-DbaInstance -SqlInstance $script:instance1
$server.Query($sql)
}
AfterAll {
$server.Query("DROP TRIGGER [$triggername] ON ALL SERVER")
try {
$server1 = Connect-DbaInstance -SqlInstance $script:instance2
$server1.Query("DROP TRIGGER [$triggername] ON ALL SERVER")
} catch {
# don't care
}
}
$results = Copy-DbaInstanceTrigger -Source $script:instance1 -Destination $script:instance2 -WarningVariable warn -WarningAction SilentlyContinue # -ServerTrigger $triggername
It "should report success" {
$results.Status | Should Be "Successful"
}
# same properties need to be added
}
}