forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mount-DbaDatabase.Tests.ps1
31 lines (24 loc) · 1.29 KB
/
Mount-DbaDatabase.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
$CommandName = $MyInvocation.MyCommand.Name.Replace(".ps1","")
Write-Host -Object "Running $PSCommandpath" -ForegroundColor Cyan
. "$PSScriptRoot\constants.ps1"
Describe "$CommandName Integration Tests" -Tags "IntegrationTests" {
Context "Setup removes, restores and backups on the local drive for Mount-DbaDatabase" {
$null = Get-DbaDatabase -SqlInstance $script:instance1 -NoSystemDb | Remove-DbaDatabase
$null = Restore-DbaDatabase -SqlInstance $script:instance1 -Path $script:appeyorlabrepo\detachattach\detachattach.bak -WithReplace
$null = Get-DbaDatabase -SqlInstance $script:instance1 -Database detachattach | Backup-DbaDatabase -Type Full
$null = Detach-DbaDatabase -SqlInstance $script:instance1 -Database detachattach -Force
}
Context "Attaches a single database and tests to ensure the alias still exists" {
$results = Attach-DbaDatabase -SqlInstance $script:instance1 -Database detachattach
It "Should return success" {
$results.AttachResult | Should Be "Success"
}
It "Should return that the database is only Database" {
$results.Database | Should Be "detachattach"
}
It "Should return that the AttachOption default is None" {
$results.AttachOption | Should Be "None"
}
}
$null = Get-DbaDatabase -SqlInstance $script:instance1 -NoSystemDb | Remove-DbaDatabase
}