Enables pipeline input for -Credential parameter #25

Merged
OCram85 merged 5 commits from i19 into master 2018-03-21 14:32:32 +01:00
1 changed files with 11 additions and 0 deletions
Showing only changes of commit a33a9f6f44 - Show all commits

View File

@ -98,5 +98,16 @@ Describe "New-CredentialStoreItem" {
{ New-CredentialStoreItem -Path 'C:\missingStore.json' -RemoteHost 'notrelevant' } | Should -Throw "Could not add anything"
}
}
Context "Testing pipeline paramter" {
It "Add the item with credential value from pipe" {
$UserName = 'pipeUser'
$Password = ConvertTo-SecureString -String "pipePasswd" -AsPlainText -Force
{ [PSCredential]::new($UserName, $Password) | New-CredentialStoreItem -RemoteHost 'PipeHost' } | Should -Not -Throw
}
It "Testing written item" {
(Get-CredentialStoreItem -RemoteHost 'PipeHost').UserName | Should -Be 'PipeHost'
}
}
}