Skip to content

Commit

Permalink
Updating pipeline: TestOttRawToCurated
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinbuss committed Apr 24, 2024
1 parent 1fc3209 commit 4a8c22b
Showing 1 changed file with 44 additions and 9 deletions.
53 changes: 44 additions & 9 deletions code/datafactory/pipeline/TestOttRawToCurated.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,39 +34,74 @@
"secureOutput": false,
"secureInput": false
},
"userProperties": []
"userProperties": [],
"typeProperties": {
"variableName": "sinkFileSystem",
"value": {
"value": "@string(activity('TestOttRawToCurated').output.pipelineReturnValue.sinkFileSystem)",
"type": "Expression"
}
}
},
{
"name": "IfSinkFileSystem",
"description": "",
"type": "IfCondition",
"dependsOn": [
{
"activity": "GetPipelineVariableSinkFileSystem",
"dependencyConditions": [
"Succeeded"
]
}
],
"userProperties": [],
"typeProperties": {
"expression": {
"value": "@equals(variables('sinkFileSystem'), pipeline().parameters.expectedSinkFileSystem)",
"type": "Expression"
}
}
}
],
"variables": {
"parameters": {
"sourceFileSystem": {
"type": "String",
"type": "string",
"defaultValue": "raw"
},
"sourceFolderPath": {
"type": "String",
"type": "string",
"defaultValue": "ott"
},
"sourceFileName": {
"type": "String",
"type": "string",
"defaultValue": "data.csv"
},
"sinkFileSystem": {
"type": "String",
"type": "string",
"defaultValue": "curated"
},
"sinkFolderPath": {
"type": "String",
"type": "string",
"defaultValue": "ott"
},
"expectedSinkFileSystem": {
"type": "String",
"type": "string",
"defaultValue": "curated"
},
"expectedSinkFolderPath": {
"type": "String",
"type": "string",
"defaultValue": "ott"
}
},
"variables": {
"sinkFileSystem": {
"type": "String"
},
"sinkFolderPath": {
"type": "String"
}
},
"folder": {
"name": "Tests/OTT"
},
Expand Down

0 comments on commit 4a8c22b

Please sign in to comment.