|
1 | 1 | @endpoint(dora-metrics) @endpoint(dora-metrics-v2)
|
2 | 2 | Feature: DORA Metrics
|
3 |
| - Search or send events for DORA Metrics to measure and improve your |
4 |
| - software delivery performance. See the [DORA Metrics |
| 3 | + Search, send, or delete events for DORA Metrics to measure and improve |
| 4 | + your software delivery performance. See the [DORA Metrics |
5 | 5 | page](https://docs.datadoghq.com/dora_metrics/) for more information.
|
6 | 6 | **Note**: DORA Metrics are not available in the US1-FED site.
|
7 | 7 |
|
8 | 8 | Background:
|
9 | 9 | Given a valid "apiKeyAuth" key in the system
|
10 | 10 | And an instance of "DORAMetrics" API
|
11 | 11 |
|
| 12 | + @skip @team:DataDog/ci-app-backend |
| 13 | + Scenario: Delete a deployment event returns "Accepted" response |
| 14 | + Given new "DeleteDORADeployment" request |
| 15 | + And a valid "appKeyAuth" key in the system |
| 16 | + And request contains "deployment_id" parameter with value "NO_VALUE" |
| 17 | + When the request is sent |
| 18 | + Then the response status is 202 Accepted |
| 19 | + |
| 20 | + @skip @team:DataDog/ci-app-backend |
| 21 | + Scenario: Delete a deployment event returns "Bad Request" response |
| 22 | + Given new "DeleteDORADeployment" request |
| 23 | + And request contains "deployment_id" parameter from "REPLACE.ME" |
| 24 | + When the request is sent |
| 25 | + Then the response status is 400 Bad Request |
| 26 | + |
| 27 | + @skip @team:DataDog/ci-app-backend |
| 28 | + Scenario: Delete a failure event returns "Accepted" response |
| 29 | + Given new "DeleteDORAFailure" request |
| 30 | + And a valid "appKeyAuth" key in the system |
| 31 | + And request contains "failure_id" parameter with value "NO_VALUE" |
| 32 | + When the request is sent |
| 33 | + Then the response status is 202 Accepted |
| 34 | + |
| 35 | + @skip @team:DataDog/ci-app-backend |
| 36 | + Scenario: Delete a failure event returns "Bad Request" response |
| 37 | + Given new "DeleteDORAFailure" request |
| 38 | + And a valid "appKeyAuth" key in the system |
| 39 | + And request contains "failure_id" parameter from "REPLACE.ME" |
| 40 | + When the request is sent |
| 41 | + Then the response status is 400 Bad Request |
| 42 | + |
12 | 43 | @generated @skip @team:DataDog/ci-app-backend
|
13 | 44 | Scenario: Get a deployment event returns "Bad Request" response
|
14 | 45 | Given new "GetDORADeployment" request
|
|
0 commit comments