-
-
Notifications
You must be signed in to change notification settings - Fork 808
/
Find-DbaInstance.Tests.ps1
44 lines (40 loc) · 1.8 KB
/
Find-DbaInstance.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
param(
[string[]]
$TestServer
)
$CommandName = $MyInvocation.MyCommand.Name.Replace(".Tests.ps1", "")
Write-Host -Object "Running $PSCommandPath" -ForegroundColor Cyan
$global:TestConfig = Get-TestConfig
Describe "$CommandName Unit Tests" -Tag 'UnitTests' {
Context "Validate parameters" {
BeforeAll {
[object[]]$params = (Get-Command $CommandName).Parameters.Keys | Where-Object {$_ -notin ('whatif', 'confirm')}
[object[]]$knownParameters = 'ComputerName', 'DiscoveryType', 'Credential', 'SqlCredential', 'ScanType', 'IpAddress', 'DomainController', 'TCPPort', 'MinimumConfidence', '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" -Tag "IntegrationTests" {
Context "Command finds SQL Server instances" {
BeforeAll {
$results = Find-DbaInstance -ComputerName $TestConfig.instance3 -ScanType Browser, SqlConnect | Select-Object -First 1
}
It "Returns an object type of [Dataplat.Dbatools.Discovery.DbaInstanceReport]" {
$results | Should -BeOfType [Dataplat.Dbatools.Discovery.DbaInstanceReport]
}
It "FullName is populated" {
$results.FullName | Should -Not -BeNullOrEmpty
}
if (([DbaInstanceParameter]$TestConfig.instance3).IsLocalHost -eq $false) {
It "TcpConnected is true" {
$results.TcpConnected | Should -Be $true
}
}
It "successfully connects" {
$results.SqlConnected | Should -Be $true
}
}
}