-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7a628f
commit ba47099
Showing
20 changed files
with
2,059 additions
and
135 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
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
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
206 changes: 206 additions & 0 deletions
206
...nit/alerts/alert_messages/fixtures/adaptive_card_dbt_test_alert_removed_field-column.json
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,206 @@ | ||
{ | ||
"type": "AdaptiveCard", | ||
"body": [ | ||
{ | ||
"type": "Container", | ||
"separator": true, | ||
"items": [ | ||
{ | ||
"type": "Container", | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "Failure: \"test_short_name\" test failed on test_table.test_column", | ||
"weight": "bolder", | ||
"size": "large", | ||
"wrap": true | ||
} | ||
], | ||
"style": "Attention" | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "**Test:** test_short_name | **Status:** fail | **Time:** N/A", | ||
"wrap": true | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "Container", | ||
"separator": true, | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "\u2139\ufe0f **Details**", | ||
"wrap": true | ||
}, | ||
{ | ||
"type": "FactSet", | ||
"facts": [ | ||
{ | ||
"title": "Table", | ||
"value": "test_table" | ||
}, | ||
{ | ||
"title": "Tags", | ||
"value": "tag1, tag2" | ||
}, | ||
{ | ||
"title": "Owners", | ||
"value": "owner1, owner2" | ||
}, | ||
{ | ||
"title": "Subscribers", | ||
"value": "_No subscribers_" | ||
}, | ||
{ | ||
"title": "Description", | ||
"value": "Test description" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "Container", | ||
"separator": true, | ||
"items": [ | ||
{ | ||
"type": "ActionSet", | ||
"actions": [ | ||
{ | ||
"type": "Action.ToggleVisibility", | ||
"title": "Test Result", | ||
"targetElements": [ | ||
"expandable-00000000-0000-0000-0000-000000000001" | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "Container", | ||
"id": "expandable-00000000-0000-0000-0000-000000000001", | ||
"items": [ | ||
{ | ||
"type": "Container", | ||
"separator": true, | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "**Result Message**", | ||
"wrap": true | ||
}, | ||
{ | ||
"type": "Container", | ||
"style": "emphasis", | ||
"items": [ | ||
{ | ||
"type": "RichTextBlock", | ||
"inlines": [ | ||
{ | ||
"type": "TextRun", | ||
"text": "Test error message", | ||
"fontType": "Monospace" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "\ud83d\udd0e **Test Results Sample**", | ||
"wrap": true | ||
}, | ||
{ | ||
"type": "Container", | ||
"style": "emphasis", | ||
"items": [ | ||
{ | ||
"type": "RichTextBlock", | ||
"inlines": [ | ||
{ | ||
"type": "TextRun", | ||
"text": "{\n \"column1\": \"value1\",\n \"column2\": \"value2\"\n}", | ||
"fontType": "Monospace" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "**Test Results Query**", | ||
"wrap": true | ||
}, | ||
{ | ||
"type": "Container", | ||
"style": "emphasis", | ||
"items": [ | ||
{ | ||
"type": "RichTextBlock", | ||
"inlines": [ | ||
{ | ||
"type": "TextRun", | ||
"text": "select 1", | ||
"fontType": "Monospace" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"isVisible": false | ||
}, | ||
{ | ||
"type": "ActionSet", | ||
"actions": [ | ||
{ | ||
"type": "Action.ToggleVisibility", | ||
"title": "Test Configuration", | ||
"targetElements": [ | ||
"expandable-00000000-0000-0000-0000-000000000002" | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "Container", | ||
"id": "expandable-00000000-0000-0000-0000-000000000002", | ||
"items": [ | ||
{ | ||
"type": "Container", | ||
"separator": true, | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "\ud83d\udee0\ufe0f **Test Parameters**", | ||
"wrap": true | ||
}, | ||
{ | ||
"type": "Container", | ||
"style": "emphasis", | ||
"items": [ | ||
{ | ||
"type": "RichTextBlock", | ||
"inlines": [ | ||
{ | ||
"type": "TextRun", | ||
"text": "{\n \"param1\": \"value1\",\n \"param2\": \"value2\"\n}", | ||
"fontType": "Monospace" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"isVisible": false | ||
} | ||
] | ||
} | ||
], | ||
"version": "1.5" | ||
} |
Oops, something went wrong.