Skip to content

Commit

Permalink
New-SecretDependency - closes #182
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmelton committed Jun 4, 2021
1 parent 7586f94 commit 26b343f
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 0 deletions.
62 changes: 62 additions & 0 deletions src/functions/secret-dependencies/New-SecretDependency.ps1
@@ -0,0 +1,62 @@
function New-SecretDependency {
<#
.SYNOPSIS
Create a new Secret Dependency
.DESCRIPTION
Create a new Secret Dependency
.LINK
https://thycotic-ps.github.io/thycotic.secretserver/commands/New-TssSecretDependency
.LINK
https://github.com/thycotic-ps/thycotic.secretserver/blob/main/src/functions/secret-dependencies/New-SecretDependency.ps1
.NOTES
Requires TssSession object returned by New-TssSession
#>
[CmdletBinding(SupportsShouldProcess)]
[OutputType('TssSecretDependency')]
param (
# TssSession object created by New-TssSession for auth
[Parameter(Mandatory,ValueFromPipeline,Position = 0)]
[TssSession]
$TssSession,

# Secret Dependency Stub object
[Parameter(Mandatory,ValueFromPipeline)]
[TssSecretDependency]
$DependencyStub
)
begin {
$tssNewParams = $PSBoundParameters
$invokeParams = . $GetInvokeTssParams $TssSession
}
process {
Write-Verbose "Provided command parameters: $(. $GetInvocation $PSCmdlet.MyInvocation)"
if ($tssNewParams.ContainsKey('TssSession') -and $TssSession.IsValidSession()) {
. $CheckVersion $TssSession '10.9.000000' $PSCmdlet.MyInvocation
$restResponse = $null
$uri = $TssSession.ApiUrl, 'secret-dependencies' -join '/'
$invokeParams.Uri = $uri
$invokeParams.Method = 'POST'
$invokeParams.Body = ($SecretDependencyStub | ConvertTo-Json)

Write-Verbose "Performing the operation $($invokeParams.Method) $uri with:`n $newBody"
if (-not $PSCmdlet.ShouldProcess("", "$($invokeParams.Method) $uri with $($invokeParams.Body)")) { return }
try {
$restResponse = . $InvokeApi @invokeParams
} catch {
Write-Warning "Issue creating dependency on Secret [$($DependencyStub.SecretId)]"
$err = $_
. $ErrorHandling $err
}

if ($restResponse) {
[TssSecretDependency]$restResponse
}
} else {
Write-Warning "No valid session found"
}
}
}
25 changes: 25 additions & 0 deletions tests/secret-dependencies/New-SecretDependency.Tests.ps1
@@ -0,0 +1,25 @@
BeforeDiscovery {
$commandName = Split-Path ($PSCommandPath.Replace('.Tests.ps1','')) -Leaf
}
Describe "$commandName verify parameters" {
BeforeDiscovery {
[object[]]$knownParameters = 'TssSession', 'DependencyStub'

[object[]]$currentParams = ([Management.Automation.CommandMetaData]$ExecutionContext.SessionState.InvokeCommand.GetCommand($commandName,'Function')).Parameters.Keys
[object[]]$commandDetails = [System.Management.Automation.CommandInfo]$ExecutionContext.SessionState.InvokeCommand.GetCommand($commandName,'Function')
$unknownParameters = Compare-Object -ReferenceObject $knownParameters -DifferenceObject $currentParams -PassThru
}
Context "Verify parameters" -Foreach @{currentParams = $currentParams } {
It "$commandName should contain <_> parameter" -TestCases $knownParameters {
$_ -in $currentParams | Should -Be $true
}
It "$commandName should not contain parameter: <_>" -TestCases $unknownParameters {
$_ | Should -BeNullOrEmpty
}
}
Context "Command specific details" {
It "$commandName should set OutputType to TssSecretDependency" -TestCases $commandDetails {
$_.OutputType.Name | Should -Be 'TssSecretDependency'
}
}
}

0 comments on commit 26b343f

Please sign in to comment.