tests/New-DbaCredential.Tests.ps1
$CommandName = $MyInvocation.MyCommand.Name.Replace(".Tests.ps1", "") Write-Host -Object "Running $PSCommandpath" -ForegroundColor Cyan . "$PSScriptRoot\constants.ps1" . "$PSScriptRoot\..\internal\functions\Invoke-Command2.ps1" Describe "$CommandName Integration Tests" -Tag "IntegrationTests" { BeforeAll { $logins = "dbatoolsci_thor", "dbatoolsci_thorsmomma" $plaintext = "BigOlPassword!" $password = ConvertTo-SecureString $plaintext -AsPlainText -Force # Add user foreach ($login in $logins) { $null = Invoke-Command2 -ScriptBlock { net user $args[0] $args[1] /add *>&1 } -ArgumentList $login, $plaintext -ComputerName $script:instance2 } } AfterAll { try { (Get-DbaCredential -SqlInstance $script:instance2 -Identity dbatoolsci_thor, dbatoolsci_thorsmomma -ErrorAction Stop -WarningAction SilentlyContinue).Drop() } catch { } foreach ($login in $logins) { $null = Invoke-Command2 -ScriptBlock { net user $args /delete *>&1 } -ArgumentList $login -ComputerName $script:instance2 $null = Invoke-Command2 -ScriptBlock { net user $args /delete *>&1 } -ArgumentList $login -ComputerName $script:instance2 } } Context "Create a new credential" { It "Should create new credentials with the proper properties" { $results = New-DbaCredential -SqlInstance $script:instance2 -Name dbatoolsci_thorcred -Identity dbatoolsci_thor -Password $password $results.Name | Should Be "dbatoolsci_thorcred" $results.Identity | Should Be "dbatoolsci_thor" $results = New-DbaCredential -SqlInstance $script:instance2 -Identity dbatoolsci_thorsmomma -Password $password $results | Should Not Be $null } It "Gets the newly created credential" { $results = Get-DbaCredential -SqlInstance $script:instance2 -Identity dbatoolsci_thorsmomma $results.Name | Should Be "dbatoolsci_thorsmomma" $results.Identity | Should Be "dbatoolsci_thorsmomma" } } } |