forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-DbaDiskSpace.Tests.ps1
25 lines (22 loc) · 1.09 KB
/
Get-DbaDiskSpace.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
$commandName = $MyInvocation.MyCommand.Name.Replace(".Tests.ps1", "")
Write-Host -Object "Running $PSCommandPath" -ForegroundColor Cyan
. "$PSScriptRoot\constants.ps1"
Describe "$commandName Integration Tests" -Tags "IntegrationTests" {
Context "Disks are properly retrieved" {
$results = Get-DbaDiskSpace -ComputerName $env:COMPUTERNAME
It "returns at least the system drive" {
$results.Name -contains "$env:SystemDrive\" | Should Be $true
}
$results = Get-DbaDiskSpace -ComputerName $env:COMPUTERNAME | Where-Object Name -eq "$env:SystemDrive\"
It "has some valid properties" {
$results.BlockSize -gt 0 | Should Be $true
$results.SizeInGB -gt 0 | Should Be $true
}
}
Context "CheckForSql returns IsSqlDisk property with a value (likely false)" {
$results = Get-DbaDiskSpace -ComputerName $env:COMPUTERNAME -CheckForSql -WarningAction SilentlyContinue
It "SQL Server drive is not found in there somewhere" {
$false | Should BeIn $results.IsSqlDisk
}
}
}