-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add basic and advanced documentation and refactor main readme
- Loading branch information
Showing
23 changed files
with
508 additions
and
265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
MD013: | ||
line_length: 120 | ||
line_length: 400 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Debugging | ||
|
||
As the framework is dynamically parsing and interpreting data factory resource files, it can be difficult to figure out with which objects you are working with. It is recommended to use the debugger during development of your tests to get a better idea of what activities are being returned and to see the structure of the activity and its properties. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Recommended development workflow for Azure Data Factory v2 | ||
|
||
* Use ADF Git integration | ||
* Use UI to create a feature branch, build the initial pipeline, and save it to the feature branch | ||
* Pull feature branch locally | ||
* Start writing tests unit and functional tests, run them locally for immediate feedback, and fix bugs | ||
* Push changes to the feature branch | ||
* Test the new features manually through the UI in a sandbox environment | ||
* Create PR, which will run the tests in the CI pipeline | ||
* Approve PR | ||
* Merge to main and start deploying to dev/test/prod environments | ||
* Run e2e tests after each deployment to validate all happy flows work on that specific environment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Framework internals | ||
|
||
This page will be used to describe the internals of the testing framework. It will be used to document the architecture, design decisions, and implementation details of the framework. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Overriding expression functions | ||
|
||
As the framework is interpreting expressions containing functions, these functions are implemented in the framework, | ||
but there may be bugs in some of them. You can override their implementation through: | ||
|
||
```python | ||
FunctionsRepository.register("concat", lambda arguments: "".join(arguments)) | ||
FunctionsRepository.register("trim", lambda text, trim_argument: text.strip(trim_argument[0])) | ||
``` |
Oops, something went wrong.