forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCopy-DbaBackupDevice.Tests.ps1
45 lines (42 loc) · 2 KB
/
Copy-DbaBackupDevice.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"
if (-not $env:appveyor) {
Describe "$commandname Integration Tests" -Tags "IntegrationTests" {
Context "Setup" {
BeforeAll {
$devicename = "dbatoolsci-backupdevice"
$backupdir = (Get-DbaDefaultPath -SqlInstance $script:instance1).Backup
$backupfilename = "$backupdir\$devicename.bak"
$server = Connect-DbaInstance -SqlInstance $script:instance1
$server.Query("EXEC master.dbo.sp_addumpdevice @devtype = N'disk', @logicalname = N'$devicename',@physicalname = N'$backupfilename'")
$server.Query("BACKUP DATABASE master TO DISK = '$backupfilename'")
}
AfterAll {
$server.Query("EXEC master.dbo.sp_dropdevice @logicalname = N'$devicename'")
$server1 = Connect-DbaInstance -SqlInstance $script:instance2
try {
$server1.Query("EXEC master.dbo.sp_dropdevice @logicalname = N'$devicename'")
}
catch {
# dont care
}
}
$results = Copy-DbaBackupDevice -Source $script:instance1 -Destination $script:instance2 -WarningVariable warn -WarningAction SilentlyContinue
if ($warn) {
It "warns if it has a problem moving (issue for local to local)" {
$warn -match "backup device to destination" | Should Be $true
}
}
else {
It "should report success" {
$results.Status | Should Be "Successful"
}
}
$results = Copy-DbaBackupDevice -Source $script:instance1 -Destination $script:instance2
It "Should say skipped" {
$results.Status -ne "Successful" | Should be $true
}
}
}
}