Skip to main content

A stand-alone test framework that allows to write unit tests for Data Factory pipelines on Microsoft Fabric and Azure Data Factory.

Project description

Data Factory - Testing Framework :hammer_and_wrench:

A stand-alone test framework that allows to write unit tests for Data Factory pipelines on Microsoft Fabric and Azure Data Factory.

The framework is currently in Public Preview and is not officially supported by Microsoft.

Features :rocket:

The framework evaluates pipeline and activity definitions which can be asserted. It does so by providing the following features:

  1. Evaluate expressions by using the framework's internal expression parser. It supports all the functions and arguments that are available in the Data Factory expression language.
  2. Test an activity with a specific state and assert the evaluated expressions.
  3. Test a pipeline run by verifying the execution flow of activities for specific input parameters and assert the evaluated expressions of each activity.

The framework does not support running the actual pipeline. It only gives you the ability to test the pipeline and activity definitions.

High-level example :bulb:

Given a WebActivity with a typeProperties.url property containing the following expression:

@concat(pipeline().globalParameters.BaseUrl, variables('Path'))

A simple test to validate that the concatenation is working as expected could look like this:

    # Arrange
    activity = pipeline.get_activity_by_name("webactivity_name")
    state = PipelineRunState(
        parameters=[
            RunParameter(RunParameterType.Global, "BaseUrl", "https://example.com"),
        ],
        variables=[
            PipelineRunVariable("Path", "some-path"),
        ])

    # Act
    activity.evaluate(state)

    # Assert
    assert "https://example.com/some-path" == activity.type_properties["url"].result

Why :question:

Data Factory does not support unit testing, nor testing of pipelines locally. Having integration and e2e tests running on an actual Data Factory instance is great, but having unit tests on top of them provides additional means of quick iteration, validation and regression testing. Unit testing with the Data Factory Testing Framework has the following benefits:

  • Runs locally with immediate feedback
  • Easier to cover a lot of different scenarios and edge cases
  • Regression testing

Concepts :books:

The following pages go deeper into different topics and concepts of the framework to help in getting you started.

Basic :seedling:

  1. Repository setup
  2. Installing and initializing the framework
  3. State
  4. Activity testing
  5. Pipeline testing

If you are a not that experienced with Python, you can follow the Getting started guide to get started with the framework.

Advanced :microscope:

  1. Debugging your activities and pipelines
  2. Development workflow
  3. Overriding expression functions
  4. Framework internals

Examples :memo:

More advanced examples demonstrating the capabilities of the framework:

Fabric:

  1. Batch job example

Azure Data Factory:

  1. Copy blobs example
  2. Batch job example

Limitations :warning:

The framework has the following limitations at the moment:

  1. The framework reimplements the Data Factory expression language in Python. This means that it might not be 100% accurate with the actual Data Factory language, especially when it comes to xml functions.
  2. The framework does not support automatic type conversion of arguments passed to functions in expressions.

These limitations are top priority to be resolved in the future.

Contributing :handshake:

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Trademarks :tm:

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

data_factory_testing_framework-0.2.15.tar.gz (35.4 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file data_factory_testing_framework-0.2.15.tar.gz.

File metadata

File hashes

Hashes for data_factory_testing_framework-0.2.15.tar.gz
Algorithm Hash digest
SHA256 2db1c1928fcf7094654a8a3f430211028385baab10623b016d5d39071eb326b4
MD5 bbeb911e28c3b92d3e3708b69bbf8678
BLAKE2b-256 1c60fc55322ca4f4092d814fb3a2e9bf93d4822c4b3884556b874aa1f7dbc548

See more details on using hashes here.

File details

Details for the file data_factory_testing_framework-0.2.15-py3-none-any.whl.

File metadata

File hashes

Hashes for data_factory_testing_framework-0.2.15-py3-none-any.whl
Algorithm Hash digest
SHA256 6f73c61cbec9d5e63c17faa8f281a981740459ad9ff76456395550eec12d1939
MD5 e16243090d281ff295d6cc3cd90b0a17
BLAKE2b-256 24f638a3e85f63a7deaaae4e5c2ff7a401dc7700f47db4ce8e58ddd3a70ba34a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page