Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Data Factory Test Framework

Are there any automatic testing mechanism available for azure data factory pipelines? Does the azure data factory visual studio project come with any test suite of its own? Any help highly appreciated

Thanks

like image 557
shaswata pal Avatar asked Nov 07 '22 21:11

shaswata pal


1 Answers

EDIT after comment:

You could use a github repository (gbrueckl - Azure.DataFactory.LocalEnvironment) for running custom pipelines local etc. His repository provides some tools which make it easier to work with Azure Data Factory (ADF). It mainly contains two features:

  1. Debug Custom .Net Activities locally (within VS and without deployment to the ADF Service!)
  2. Export existing ADF Visual Studio projects a Azure Resource Manager (ARM) template for deployment
    • In addition, the repository also contains various samples to demonstrate how to work with the ADF Local Environment.

https://github.com/gbrueckl/Azure.DataFactory.LocalEnvironment is the link to the repository for doing that. You can use it to debug your pipelines on your local environment at least and it could also help to test them...

like image 198
zoxparty Avatar answered Nov 26 '22 05:11

zoxparty