-
-
Notifications
You must be signed in to change notification settings - Fork 808
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
66a3fe6
commit 2afb825
Showing
4 changed files
with
202 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,53 @@ | ||
$CommandName = $MyInvocation.MyCommand.Name.Replace(".Tests.ps1", "") | ||
Write-Host -Object "Running $PSCommandPath" -ForegroundColor Cyan | ||
#Requires -Module @{ ModuleName="Pester"; ModuleVersion="5.0"} | ||
param($ModuleName = "dbatools") | ||
$global:TestConfig = Get-TestConfig | ||
|
||
Describe "$CommandName Unit Tests" -Tag 'UnitTests' { | ||
Context "Validate parameters" { | ||
[object[]]$params = (Get-Command $CommandName).Parameters.Keys | Where-Object {$_ -notin ('whatif', 'confirm')} | ||
[object[]]$knownParameters = 'ComputerName', 'Credential', 'SecurePassword', 'Certificate', 'Path', 'Store', 'Folder', 'Flag', '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 "Add-DbaComputerCertificate" -Tag "UnitTests" { | ||
Context "Parameter validation" { | ||
BeforeAll { | ||
$command = Get-Command Add-DbaComputerCertificate | ||
$expectedParameters = $TestConfig.CommonParameters | ||
|
||
$expectedParameters += @( | ||
"ComputerName", | ||
"Credential", | ||
"SecurePassword", | ||
"Certificate", | ||
"Path", | ||
"Store", | ||
"Folder", | ||
"Flag", | ||
"EnableException" | ||
) | ||
} | ||
|
||
It "Should have exactly the expected parameters" { | ||
$actualParameters = $command.Parameters.Keys | Where-Object { $PSItem -notin "WhatIf", "Confirm" } | ||
Compare-Object -ReferenceObject $expectedParameters -DifferenceObject $actualParameters | Should -BeNullOrEmpty | ||
} | ||
|
||
It "Has parameter: <_>" -ForEach $expectedParameters { | ||
$command | Should -HaveParameter $PSItem | ||
} | ||
} | ||
} | ||
|
||
Describe "$commandname Integration Tests" -Tags "IntegrationTests" { | ||
Describe "Add-DbaComputerCertificate" -Tag "IntegrationTests" { | ||
Context "Certificate is added properly" { | ||
$results = Add-DbaComputerCertificate -Path "$($TestConfig.appveyorlabrepo)\certificates\localhost.crt" -Confirm:$false | ||
BeforeAll { | ||
$results = Add-DbaComputerCertificate -Path "$($TestConfig.appveyorlabrepo)\certificates\localhost.crt" -Confirm:$false | ||
} | ||
|
||
AfterAll { | ||
Remove-DbaComputerCertificate -Thumbprint 29C469578D6C6211076A09CEE5C5797EEA0C2713 -Confirm:$false | ||
} | ||
|
||
It "Should show the proper thumbprint has been added" { | ||
$results.Thumbprint | Should Be "29C469578D6C6211076A09CEE5C5797EEA0C2713" | ||
$results.Thumbprint | Should -Be "29C469578D6C6211076A09CEE5C5797EEA0C2713" | ||
} | ||
|
||
It "Should be in LocalMachine\My Cert Store" { | ||
$results.PSParentPath | Should Be "Microsoft.PowerShell.Security\Certificate::LocalMachine\My" | ||
$results.PSParentPath | Should -Be "Microsoft.PowerShell.Security\Certificate::LocalMachine\My" | ||
} | ||
|
||
Remove-DbaComputerCertificate -Thumbprint 29C469578D6C6211076A09CEE5C5797EEA0C2713 -Confirm:$false | ||
} | ||
} |