tests/functions/tasks/Set-Raw.Trigger.Servicebus.Queue.AsParm.task.tests.ps1
Describe 'Testing Set-Raw.Trigger.Servicebus.Queue.AsParm' { BeforeAll { ."$PSScriptRoot\..\..\..\internal\classes\PsLogicAppExtractor.class.ps1" $parms = @{} $parms.buildFile = "$PSScriptRoot\all.psakefile.ps1" $parms.nologo = $true Set-PSFConfig -FullName PsLogicAppExtractor.Execution.TaskCounter -Value 0 $logicAppName = "LA-TEST-Exporter" $WorkPath = "$([System.IO.Path]::GetTempPath())PsLogicAppExtractor\$([System.Guid]::NewGuid().Guid)" New-Item -Path $WorkPath -ItemType Directory -Force -ErrorAction Ignore > $null Set-PSFConfig -FullName PsLogicAppExtractor.Execution.WorkPath -Value $WorkPath Set-PSFConfig -FullName PsLogicAppExtractor.Execution.TaskInputNext -Value "$PSScriptRoot\_Raw.LogicApp.Trigger.Recurrence.json" Set-PSFConfig -FullName PsLogicAppExtractor.Pester.FileName -Value "$logicAppName.json" Invoke-psake @parms -taskList "Set-Raw.Trigger.Servicebus.Queue.AsParm" $resPath = Get-PSFConfigValue -FullName PsLogicAppExtractor.Execution.TaskInputNext $raw = Get-Content -Path $resPath -Raw $lgObj = [LogicApp]$(Get-Content -Path $resPath -Raw | ConvertFrom-Json) } It "Should create an output file" { $resPath | Should -Exist } It "Should be a valid LogicApp class" { "$($lgObj.GetType())" | Should -BeExactly "LogicApp" } It "Should have the correct Logic App name" { $lgObj.name | Should -BeExactly "LA-TEST-Exporter" } It "Should be of the type 'Microsoft.Logic/workflows'" { $lgObj.type | Should -BeExactly "Microsoft.Logic/workflows" } It "Should have a properties.definition property" { $lgObj.properties.definition | Should -Not -Be $null } It "Should have a properties.definition.parameters property" { $lgObj.properties.definition.parameters | Should -Not -Be $null } It "Should have a properties.definition.parameters.TriggerQueue property" { $lgObj.properties.definition.parameters.TriggerQueue | Should -Not -Be $null } It "Should be 'Inbound-Queue' in the properties.definition.parameters.TriggerQueue.defaultValue property" { $lgObj.properties.definition.parameters.TriggerQueue.defaultValue | Should -BeExactly "Inbound-Queue" } It 'Should match "@{parameters(''TriggerQueue'')}" in the properties.definition.triggers.inputs.path property' { $lgObj.properties.definition.triggers.PsObject.Properties.Value.inputs.path | Should -match "parameters\('TriggerQueue'\)" } # AfterAll { # Write-Host "$resPath" # } } |