Testing a Workflow
Overview
Before publishing and activating a Workflow, it is crucial to ensure that it functions as expected under different conditions. Testing helps prevent unexpected failures and ensures that your Workflow behaves correctly before it goes live. In the Workflow Editor, users have the option to test single steps or the complete workflow.
Please Note
When you test a step or an entire workflow, please note that the test execution makes real API endpoint requests. This means that any actions within the workflow will trigger actual API calls, and the configured connections are used as part of the test run. Ensure that the environment and configurations are suitable for testing to avoid unintended effects or unnecessary usage of resources during the process.
Testing a Single Step in a Workflow
In the Workflow Editor, users can run steps individually, providing a live debugging experience, to identify and resolve issues without executing the entire workflow. This streamlines troubleshooting, making it faster and more efficient.
-
To test a specific Step, click the button next to it. If a Step is pending, you can stop it by clicking the button that appears next to step.
-
Users can edit and rerun Steps—including nested ones—while building the Workflow. However, during testing, you cannot stop a nested Step by itself. If a step is inside an If action, an If-else action, or a Loop action, you must stop the entire conditional or loop to stop that Step. This ensures that the Workflow logic remains consistent while testing.
Step Execution Statuses
Note
The table below lists the possible execution statuses of a step:
Status | Description | Icon |
---|---|---|
Completed | The step executed successfully without errors. | |
Pending | The step is waiting for approval or an external response. | |
In Progress | The step is currently running and has not yet completed. | |
Stopped | The step’s execution was manually or automatically halted. |
Testing Complete Workflows
Once you’ve built a workflow, you can test its execution before publishing and activating it. To verify that everything is working as expected, click Test Run after ensuring all steps are properly configured.
Before running a test, make sure every step is fully set up. If any step is incomplete or misconfigured, the ‘Test Run’ button at the top of the editor will remain disabled.
When testing an entire workflow, the editor becomes non-interactive, and you cannot edit any steps.
Testing On-Demand Workflows - Using Test Parameters
You can test an On-Demand Workflow by providing test input parameters. Follow the steps below to configure and execute a test run.
Open the Test Parameters Configuration Panel
Click the ‘Test parameters’ button to open the configuration panel where you can define input values for the test run
Select a Runner
You can change the runner to execute the Workflow with a different environment. By default, the Blink Cloud runner is used.
Click Apply
Click Apply to confirm your test parameters. Any action requiring input parameters will use the values you’ve set.
Run the Test
Click Run test to execute the workflow with the configured test parameters. This allows you to simulate the workflow using your specified input values and environment settings.
Testing Event-Based Workflows - Using Test Parameters
Webhooks
An Event-Based Workflow can be tested using a JSON sample of a potential incoming payload event triggered by a Webhooks. Follow the steps below to configure and execute a test run.
Configure the Webhook Trigger
Start by selecting the Webhook of your choice option as the trigger for your workflow. This will generate a unique Webhook URL that the workflow listens to for incoming events.
Open the Test Parameters Panel
After configuring the Click ‘Test parameters’ button to open the configuration panel.
Listen to an event
Next, click “Listen to Event” to activate the webhook listener. This step ensures that Blink is ready to receive and process an incoming payload request. The platform now displays the Webhook URL that external services (or test tools) can send data to.
Simulate an Incoming Event
To test how the workflow reacts to an event, you send a test request to the Webhook URL. Using Postman (or another API testing tool), you:
- Copy and paste a sample JSON object representing the type of event your workflow will handle.
- Send an HTTP POST request to the Webhook URL.
Once the request is received, Blink captures the event data and displays it in the interface.
Select a Runner
If needed, you can change the runner to execute the workflow in a different environment. By default, Blink uses the Blink Cloud runner, but you can select another runner if required.
Run the Test
Finally, you click “Run Test” to execute the workflow using the test event. This simulates a real event and allows you to verify that the workflow processes the incoming data correctly.
Real Events
An Event-Based Workflow can also be tested using an actual event from the selected external service, ensuring the workflow functions correctly when triggered by real event data.
Open the Test Parameters Panel
Click ‘Test parameters’ button to open the configuration panel where you can define input values for the test run.
Fetch the Event
Click the Fetch Event Button: This fetches a real event that was generated in the past 30 days from the selected. The event can be used to test your current workflow version publishing it.
Results
Results returned can be:
Result | Description |
---|---|
Event found | An event matching the criteria was found and is displayed in JSON format. |
No events found | No matching events were found within the last 30 days. |
Failed to fetch event | The event could not be retrieved. Verify your input details and connection settings. |
NOTE
If the trigger was set up using a condition AND a real event was fetched, the condition will be ignored.
Testing Scheduled Workflows
A Scheduled Workflow can be tested using the following instructions:
- No test parameters are needed when testing a scheduled trigger workflow. Ensure that all steps within the workflow are configured correctly.
- Afterward, simply click the “Test Run” button. This will simulate the execution of the workflow as if it were triggered by the schedule. However, note that the workflow will not run according to its actual scheduled time until that time arrives.
Workflow Execution Status’s
A status indicator at the top of the editor provides real-time feedback on the Workflow’s execution. Including total run time, who ran the workflow, the number of completed steps, and details on any failures.
When you stop a test run of a workflow, any temporary changes or test data used during the execution will be discarded. The workflow will revert to its last saved version, ensuring that no test modifications persist in the live configuration. This allows you to safely test workflows without affecting the original setup.
The table below lists the possible execution statuses of a Workflow
Workflow Status | Description | Icon |
---|---|---|
Completed | The workflow completed successfully without any errors. | |
In Progress | The workflow is currently running and has not yet finished. | |
Failed | The workflow encountered an error and did not complete. |
The Workflow's Execution Status Indicator
Using Test Parameters from Previous Runs
You can use past executions and their parameters to test a workflow. These past executions include both test runs and executions of the published version. Running a test with real inputs from a previous execution helps you identify issues, troubleshoot failures, and refine the workflow for better performance.
Open the Test Parameters Panel
Click ‘Test parameters’ button to open the configuration panel where you can define input values for the test run.
View Execution History
Click Run history, then select a parameters of a past run execution to test with your current workflow draft.
Was this page helpful?