66 lines
3.0 KiB
PowerShell
66 lines
3.0 KiB
PowerShell
#Requires -Modules Pester
|
|
$moduleFileName = "ZertoApiWrapper.psd1"
|
|
$here = (Split-Path -Parent $MyInvocation.MyCommand.Path).Replace("Tests", "ZertoApiWrapper")
|
|
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
|
$file = Get-ChildItem "$here\$sut"
|
|
$modulePath = $here -replace "Public", ""
|
|
$moduleFile = Get-ChildItem "$modulePath\$moduleFileName"
|
|
Get-Module -Name ZertoApiWrapper | Remove-Module -Force
|
|
Import-Module $moduleFile -Force
|
|
|
|
Describe $file.BaseName -Tag 'Unit' {
|
|
|
|
It "is valid Powershell (Has no script errors)" {
|
|
$contents = Get-Content -Path $file -ErrorAction Stop
|
|
$errors = $null
|
|
$null = [System.Management.Automation.PSParser]::Tokenize($contents, [ref]$errors)
|
|
$errors | Should -HaveCount 0
|
|
}
|
|
|
|
Mock -ModuleName ZertoApiWrapper -CommandName Invoke-ZertoRestRequest {
|
|
return "3b687246-ac63-40da-9a59-b99863769eb0.928a122b-1763-4664-ad37-cc00bb883f2f"
|
|
}
|
|
Mock -ModuleName ZertoApiWrapper -CommandName get-zertovpg {
|
|
return @{vpgIdentifier = "dddf2fa8-79e2-4e4f-a83b-f66676afea64"}
|
|
}
|
|
|
|
Context "$($file.BaseName)::Parameter Unit Tests" {
|
|
it "Has a parameter for the VpgName that is Mandatory" {
|
|
Get-Command $file.BaseName | Should -HaveParameter vpgName -Mandatory -Type String
|
|
}
|
|
|
|
it "Has a parameter for the CheckpointName that is Mandatory" {
|
|
Get-Command $file.BaseName | Should -HaveParameter CheckpointName -Mandatory -Type String
|
|
}
|
|
|
|
it "Throws and error when an empty or null checkpointName is specified" {
|
|
{Checkpoint-ZertoVpg -vpgName "MyVpg" -checkpointName ""} | Should -Throw
|
|
{Checkpoint-ZertoVpg -vpgName "MyVpg" -checkpointName $null} | Should -Throw
|
|
}
|
|
|
|
it "Throws an error when an empty or null vpgName is specified" {
|
|
{Checkpoint-ZertoVpg -vpgName "" -checkpointName "MyCheckPoint"} | Should -Throw
|
|
{Checkpoint-ZertoVpg -vpgName $null -checkpointName "MyCheckPoint"} | Should -Throw
|
|
}
|
|
|
|
it "Does not support 'SupportsShouldProcess'" {
|
|
Get-Command $file.BaseName | Should -Not -HaveParameter WhatIf
|
|
Get-Command $file.BaseName | Should -Not -HaveParameter Confirm
|
|
$file | Should -Not -FileContentMatch 'SupportsShouldProcess'
|
|
$file | Should -Not -FileContentMatch '\$PSCmdlet\.ShouldProcess\(.+\)'
|
|
}
|
|
}
|
|
|
|
Context "$($file.BaseName)::Function Unit Tests" {
|
|
|
|
it "should return a not null or empty string" {
|
|
$results = Checkpoint-ZertoVpg -vpgName "MyVpg" -checkpointName "My Checkpoint Name"
|
|
$results | should -not -BeNullOrEmpty
|
|
$results | should -BeOfType "String"
|
|
$results | should -BeExactly "3b687246-ac63-40da-9a59-b99863769eb0.928a122b-1763-4664-ad37-cc00bb883f2f"
|
|
}
|
|
|
|
Assert-MockCalled -ModuleName ZertoApiWrapper -CommandName Invoke-ZertoRestRequest
|
|
Assert-MockCalled -ModuleName ZertoApiWrapper -CommandName Get-ZertoVpg
|
|
}
|
|
} |