forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExport-DbaDacpac.Tests.ps1
33 lines (31 loc) · 1.3 KB
/
Export-DbaDacpac.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
$CommandName = $MyInvocation.MyCommand.Name.Replace(".Tests.ps1", "")
Write-Host -Object "Running $PSCommandpath" -ForegroundColor Cyan
. "$PSScriptRoot\constants.ps1"
Describe "$commandname Integration Tests" -Tags "IntegrationTests" {
BeforeAll {
try {
$dbname = "dbatoolsci_exportdacpac"
$server = Connect-DbaInstance -SqlInstance $script:instance1
$null = $server.Query("Create Database [$dbname]")
$db = Get-DbaDatabase -SqlInstance $script:instance1 -Database $dbname
$null = $db.Query("CREATE TABLE dbo.example (id int);
INSERT dbo.example
SELECT top 100 1
FROM sys.objects")
}
catch { } # No idea why appveyor can't handle this
}
AfterAll {
Remove-DbaDatabase -SqlInstance $script:instance1 -Database $dbname -Confirm:$false
}
if ((Get-DbaTable -SqlInstance $script:instance1 -Database $dbname -Table example)) {
# Sometimes appveyor bombs
It "exports a dacpac" {
$results = Export-DbaDacpac -SqlInstance $script:instance1 -Database $dbname
Test-Path -Path ($results).Path
if (($results).Path) {
Remove-Item -Confirm:$false -Path ($results).Path -ErrorAction SilentlyContinue
}
}
}
}