Integration testing Logic Apps with Pester and PowerShell

Monday, 01 March 2021

This articles talks through a sample script for integration testing Azure Logic Apps with Pester and PowerShell

#logic-apps#pester#powershell#testing

This article was published at GitHub. It is open source and you can make edits, comments etc.

Pester and PowerShell are a great way to build integration test scripts for any deployed application. You can see my Integration testing with Pester and PowerShell article for detail on what Pester is and how it works.

In this article, we will explore how to use Pester and PowerShell to build integration tests for Azure Logic Apps. There are some tricks and utilities that my team and I have built on a recent project which could be reusable; this article will go through it all and explains how it works.

We will explore:

  • How to initiate logic apps via PowerShell and assert that they complete as expected
  • How to inspect the results of specific Logic App actions to assert the right values are being produced
  • How to identify a specific Logic App run in the history
  • How to deal with Logics Apps which have Asynchronous Response enabled

Some reader notes...

This article assumes basic knowledge of Pester, PowerShell, Logic Apps and the principles of integration testing. See Integration testing with Pester and PowerShell or Azure Logic Apps if you need refreshers on these technologies.

The sample code that supports this article is at https://github.com/martinkearn/Pester-LogicApp.

This article is based on Logic Apps with HTTP triggers, but the principles of inspecting action results and identifying runs can apply to any Logic App

Sample code structure

The sample code accompanying this article is stored at https://github.com/martinkearn/Pester-LogicApp.

The repo has the following key files:

  • /Logic App Template/ - This folder contains the Logic App ARM template so you can deploy it to your own azure subscription
  • /PS/sample.env - Take a copy of this file named .env and update it to include details for your deployed Logic App. See the Environment Variables section below
  • /PS/LogicApp.tests.ps1 - This is the main Pester test script. You can execute this script in a PowerShell console using Invoke-Pester -Output Detailed LogicApp.tests.ps1
  • /PS/Utilities.ps1 - This is a utility PowerShell file which contains functions to wait for async logic apps to complete, get the run history of a completed logic app and to get the output of a specific action.

A simple weather Logic App

I did not want this sample to be about how to build Logic Apps, so I've deliberately chosen a very simple Logic App which is HTTP triggered and expects the following POST payload:

{
    "location": "Some city",
    "uniqueid": "Some unique identifyer"
}

The Logic App will get a weather report for the city specified in the location via the MSN Weather Connector and return it.

A simple logic app which gets a weather report for a given city

You can deploy the logic app yourself following the steps in https://github.com/martinkearn/Pester-LogicApp/blob/main/README.md#setup--usage.

Environment Variables

For our test to be able to access the Logic App, it needs to know the full trigger URI which includes a secret.

Of course, we cannot store the secret as plain text in the test script so we are going to use environment variables to store and access it. You could also use something like Terraform state here.

For local development purposes, it is handy to store variables in an .env file which you can read using the Set-PsEnv PowerShell Module. This makes any of the variables defined in your local .env file available via the standard PowerShell syntax for accessing environment variables such as $env:LOGICAPPURI.

You can use Pester's BeforeDiscovery utility to load the .env file as follows:

BeforeDiscovery {
    # Load environment variables from local .env file by using Set-PsEnv
    if (-not (Get-Module -ListAvailable -Name Set-PsEnv)) {
        Install-Module -Name Set-PsEnv -Force
    }
    Set-PsEnv 
}

We can now build a Pester context section which asserts that the expected variables are present and not null.

Describe "Logic App Integration Tests" {
    Context "Host machine has the environment variables setup correctly" {
        It "Expects LOGICAPPURI environment variable to be setup" {
            $env:LOGICAPPURI | Should -Not -BeNullOrEmpty
        }
        It "Expects LOGICAPPNAME environment variable to be setup" {
            $env:LOGICAPPNAME | Should -Not -BeNullOrEmpty
        }
        It "Expects RESOURCEGROUPNAME environment variable to be setup" {
            $env:RESOURCEGROUPNAME | Should -Not -BeNullOrEmpty
        }
    }
}

If these tests pass, we can be sure that the script has everything it needs to access the logic app.

Triggering the Logic App and asserting completion

Before we trigger the Logic App, we need to establish a unique identifier for this test execution so that we can identify which Logic App run is related to the test later on.

To do this, we'll use Pester's BeforeAll section which is code that runs before any other code in the script. This can be used to setup a variable called $uniqueid with a new guid which will be available throughout the script.

We also use BeforeAll to include the Utilities.ps1 file which we'll cover later.

BeforeAll { 
    . $PSScriptRoot/Utilities.ps1
    $uniqueId = New-Guid
}

Now that we have a unique identifier for the test stored in the $uniqueid variable, we can trigger the Logic App. This example uses a HTTP-triggered Logic App so we can execute a simple HTTP request passing the required body details.

Logic Apps can operate with Asynchronous Response enabled, which is usefull and recommended for long running Logic Apps. In this mode, the Logic App will initially respond with a 202/Accepted response which includes a header called location. The location header contains a URI which can be used to obtain final status for the Logic App. You can then poll this URI looking for a 200/OK response with the response payload.

Without Asynchronous Response enabled, we can expect the Logic App to return 200/OK with the response payload straight away.

In order to support both scenarios, we trigger the Logic App using Pester's BeforeAll section (in context of the "Trigger the logic app" context) using a simple Invoke-WebRequest. We then look for the presence of the location header which will indicate whether to expect a 202 or 200 response.

In the case of a 202 response, we can use one of the utility functions in Utilities.ps1 called Wait-ForLogicAppToComplete which basically keeps polling the status URI provided in the location header looking for a 200 response and returning it when it is found.

This is the code for the Wait-ForLogicAppToComplete utility function:

function Wait-ForLogicAppToComplete {
    param (
        [parameter(Mandatory = $true)] [string] $LogicAppUri,
        [parameter(Mandatory = $true)] [int] $TimeoutMinutes
    )
    $startDate = Get-Date
    do {
        $response = Invoke-WebRequest -Method GET -Uri $LogicAppUri
        if ($response.StatusCode -ge 500) {
            throw "LogicApp GET $LogicAppUri returned error status code $($response.StatusCode)"
        }
        if ($response.StatusCode -eq 200) {
            return $response
        }
        Start-Sleep -s 10
    } while ($startDate.AddMinutes($TimeoutMinutes) -gt (Get-Date))
}

Regardless of whether the Logic App is using Asynchronous Response or not, it will eventually result in a 200 status code, which we can assert for using Pester. The final code for the triggering the logic app and checking it completed successfully is as follows:

Context "Trigger the logic app" {
    BeforeAll {
        $postBody = @{
            location = "London"
            uniqueid = "$uniqueId"
        } | ConvertTo-Json
        $response = Invoke-WebRequest -Method POST -Uri $env:LOGICAPPURI -Body $postBody -ContentType "application/json"
    }
    It "Has sucessfully completed" {
        if ($response.Headers.Location -ne $null)
        {
            $response.StatusCode | Should -Be 202
            $response = Wait-ForLogicAppToComplete -LogicappUri $response.Headers.Location -TimeoutMinutes 10
        }
        $response.StatusCode | Should -Be 200
    }
}

Following this test, we know that the Logic App has been triggered and successfully completed.

Identifying the Logic App in the run history

The Logic App completing without errors is a good starting point, but sometimes you need to go a step further and look into the output that was generated to ensure it is as expected. In our case, we expect a weather report for London, United Kingdom (or "GB") because that is the location we asked for via the location property of the post body above.

To inspect the output, you first need to identify the logic app run which was triggered by your test. PowerShell gives us Get-AzLogicAppRunHistory which is a cmdlet to get the run history for a given Logic App in the form of a WorkflowRun object. We can use this to get the status and look at the trigger body, which is usefull for identifying a specific run.

Each action of a Logic App (including the trigger) has a concept of outputs. This is a json document with key details about what triggered an action, what the inputs/outputs were etc. We can use this to look for Logic App runs that have the same uniqueid in the output as the test we are running. That way, we can be sure that the specified run was triggered by the test.

Outputs are accessible on a separate URL that is contained within the WorkflowRun.Outputs property.

For long running Logic Apps, you may need some looping logic to keep checking the run history until it finds the correct run or times out.

This code is the basic structure of such a loop which looks for runs where the uniqueid property in the output matches one which is passed in. This is in the Utilities.ps1 file in the GitHub repo supporting this article.

function Get-LogicAppActionResult {
    param(
        [Parameter(Mandatory=$true)][string] $UniqueId,
        [Parameter(Mandatory=$true)][string] $ResourceGroupName,
        [Parameter(Mandatory=$true)][string] $LogicAppName
    )

    # Setup variables
    $timeoutMinutes = 30
    $start = Get-Date

    # Keep trying until we return or reach timeoutMinutes
    do {
        # Get logic app trigger history
        # NOTE: this will only return the 30 most recent runs, which is not enough if the system is under load. Need to use the NextLink to get the next page. See https://github.com/Azure/azure-powershell/issues/9141
        $runHistory = Get-AzLogicAppRunHistory -ResourceGroupName $ResourceGroupName -Name $LogicAppName

        # Loop through run history and check each one to see if it matches the uniqueId we are looking for
        foreach ($run in $runHistory) {
            # Make sure that we have an output link as there may be failed runs with no output link in the history
            if ($null -eq $run.Trigger.OutputsLink) {
                Write-Host 'Detected null - skipping.'
                continue;
            }

            # Get the output link document content. Get-AzlogicAppRunHistory just gives us a link to a json document which contains the output links, therefore we have to go and get the json document seperately.
            $outputLinksContent = (Invoke-WebRequest -Method 'GET' -Uri $run.Trigger.OutputsLink.Uri).Content | ConvertFrom-Json

            # Check that the run is the one we are looking for by matching uniqueId to the passed in parameter
            if ($outputLinksContent.body.uniqueId -like "*$UniqueId*") {

                # If we have a failed run, we fail the test by throwing
                if ($run.Status -eq "Failed") {
                    throw "LogicApp run $UniqueId failed"
                }

                # If the run succeeded then we can return the run
                if ($run.Status -eq "Succeeded") {
                    return $run
                }
            }
        }

        # Snooze
        Write-Host "Retrying after a 30 second snooze"
        Start-Sleep -s 30
        
    } while ($start.AddMinutes($timeoutMinutes) -gt (Get-Date))

    throw "Timeout for $UniqueId"
}

Getting the output of an Action

Getting the run details on its own is only of limited use. In order to really test that the Logic Apps does what it is supposed to do, we need to inspect some of the actions within the Logic App,

The Get-AzLogicAppRunAction cmdlet allows us to inspect a specific action within a given run.

Much like the run history, actions also have output files which contain a json representation of the output of the action.

This code gets the detail of an action called "Response"; this is what the Logic App sends back to the calling client, but this approach could be used to get the output of any action. This builds on the previous example for getting a run. This would replace the return $run line.

# We have a matching run. Get the output from the specified action
$actionResult = Get-AzLogicAppRunAction -ResourceGroupName $ResourceGroupName -Name $LogicAppName -RunName $run.Name -ActionName "Response"
if ($null -ne $actionResult.OutputsLink.Uri) 
{
    $actionResultContent = (Invoke-WebRequest -Method 'GET' -Uri $actionResult.OutputsLink.Uri).Content | ConvertFrom-Json
} 
else {
    throw "LogicApp run action $ActionName had no content"
}

return @{
    Response = $actionResultContent;
    Run      = $run;
}

Asserting on the output of an action

Now we have the output of an action, we can make assertions on its contents.

This sample uses the Get-LogicAppActionResult function from the Utilities.ps1 file we covered in the previous two sections.

Context "Check the result of the logic app" {
    
    BeforeAll {
        $actionResult = Get-LogicAppActionResult -ActionName "Response" -UniqueId "$uniqueId" -ResourceGroupName $env:RESOURCEGROUPNAME -LogicAppName $env:LOGICAPPNAME
        # $actionResult is an object that contains .Response which is the json document that the action returns and .Run which is the Logic App run history
    }

    It "Is a forecast for GB" {
        $actionResult.Response.body.responses.source.countryCode | Should -Be "GB"
    }

    It "Is a forecast for London" {
        $actionResult.Response.body.responses.source.location | Should -Be "London, London, United Kingdom"
    }
}

This will produce the following output in the console.

Complete Pester integration test for a Logic App

In Summary

For the complete sample, please look at the following GitHub repo: https://github.com/martinkearn/Pester-LogicApp

The code in this article is provided to aid understanding only the GitHub repo should be used for the latest example.

Using Pester with PowerShell is a powerful to integration test Logic Apps and ensuring they are producing the results that are expected.

For more resources:

Got a comment?

All my articles are written and managed as Markdown files on GitHub.

Please add an issue or submit a pull request if something is not right on this article or you have a comment.

If you'd like to simply say "thanks", then please send me a .

An error has occurred. This application may no longer respond until reloaded. Reload 🗙