Skip to content

Commit 9dc3887

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Update rum backend team name (#1362)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent 983dae9 commit 9dc3887

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.4",
7-
"regenerated": "2023-03-01 20:14:27.775520",
8-
"spec_repo_commit": "d6815e0a"
7+
"regenerated": "2023-03-02 15:38:14.789500",
8+
"spec_repo_commit": "0ec7fe9d"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-03-01 20:14:27.787432",
13-
"spec_repo_commit": "d6815e0a"
12+
"regenerated": "2023-03-02 15:38:14.801240",
13+
"spec_repo_commit": "0ec7fe9d"
1414
}
1515
}
1616
}

tests/v2/features/rum.feature

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Feature: RUM
77
And a valid "appKeyAuth" key in the system
88
And an instance of "RUM" API
99

10-
@generated @skip @team:DataDog/rum-back
10+
@generated @skip @team:DataDog/rum-backend
1111
Scenario: Aggregate RUM events returns "Bad Request" response
1212
Given new "AggregateRUMEvents" request
1313
And body with value {"compute": [{"aggregation": "pc90", "interval": "5m", "metric": "@duration", "type": "total"}], "filter": {"from": "now-15m", "query": "@type:session AND @session.type:user", "to": "now"}, "group_by": [{"facet": "@view.time_spent", "histogram": {"interval": 10, "max": 100, "min": 50}, "limit": 10, "sort": {"aggregation": "count", "order": "asc"}, "total": false}], "options": {"timezone": "GMT"}, "page": {"cursor": "eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==", "limit": 25}}
1414
When the request is sent
1515
Then the response status is 400 Bad Request
1616

17-
@team:DataDog/rum-back
17+
@team:DataDog/rum-backend
1818
Scenario: Aggregate RUM events returns "OK" response
1919
Given new "AggregateRUMEvents" request
2020
And body with value {"compute": [{"aggregation": "pc90", "metric": "@view.time_spent", "type": "total"}], "filter": {"from": "now-15m", "query": "@type:view AND @session.type:user", "to": "now"}, "group_by": [{"facet": "@view.time_spent", "limit": 10, "total": false}], "options": {"timezone": "GMT"}, "page": { "limit": 25}}
@@ -23,14 +23,14 @@ Feature: RUM
2323
And the response "meta.status" is equal to "done"
2424
And the response "data.buckets" has length 0
2525

26-
@skip @team:DataDog/rum-back
26+
@skip @team:DataDog/rum-backend
2727
Scenario: Create a new RUM application returns "Bad Request" response
2828
Given new "CreateRUMApplication" request
2929
And body with value {"data": {"attributes": {"name": "wrong_rum_application", "type": "wrong_android"}, "type": "wrong_rum_application_type"}}
3030
When the request is sent
3131
Then the response status is 400 Bad Request
3232

33-
@team:DataDog/rum-back
33+
@team:DataDog/rum-backend
3434
Scenario: Create a new RUM application returns "OK" response
3535
Given new "CreateRUMApplication" request
3636
And body with value {"data": {"attributes": {"name": "my_new_rum_application", "type": "ios"}, "type": "rum_application_create"}}
@@ -40,29 +40,29 @@ Feature: RUM
4040
And the response "data.attributes.type" is equal to "ios"
4141
And the response "data.attributes.name" is equal to "my_new_rum_application"
4242

43-
@team:DataDog/rum-back
43+
@team:DataDog/rum-backend
4444
Scenario: Delete a RUM application returns "No Content" response
4545
Given there is a valid "rum_application" in the system
4646
And new "DeleteRUMApplication" request
4747
And request contains "id" parameter from "rum_application.data.id"
4848
When the request is sent
4949
Then the response status is 204 No Content
5050

51-
@team:DataDog/rum-back
51+
@team:DataDog/rum-backend
5252
Scenario: Delete a RUM application returns "Not Found" response
5353
Given new "DeleteRUMApplication" request
5454
And request contains "id" parameter with value "abcde-12345"
5555
When the request is sent
5656
Then the response status is 404 Not Found
5757

58-
@team:DataDog/rum-back
58+
@team:DataDog/rum-backend
5959
Scenario: Get a RUM application returns "Not Found" response
6060
Given new "GetRUMApplication" request
6161
And request contains "id" parameter with value "abcd1234-0000-0000-abcd-1234abcd5678"
6262
When the request is sent
6363
Then the response status is 404 Not Found
6464

65-
@team:DataDog/rum-back
65+
@team:DataDog/rum-backend
6666
Scenario: Get a RUM application returns "OK" response
6767
Given there is a valid "rum_application" in the system
6868
And new "GetRUMApplication" request
@@ -73,77 +73,77 @@ Feature: RUM
7373
And the response "data.attributes.type" is equal to "browser"
7474
And the response "data.attributes.name" is equal to "test_name_create"
7575

76-
@generated @skip @team:DataDog/rum-back
76+
@generated @skip @team:DataDog/rum-backend
7777
Scenario: Get a list of RUM events returns "Bad Request" response
7878
Given new "ListRUMEvents" request
7979
When the request is sent
8080
Then the response status is 400 Bad Request
8181

82-
@team:DataDog/rum-back
82+
@team:DataDog/rum-backend
8383
Scenario: Get a list of RUM events returns "OK" response
8484
Given new "ListRUMEvents" request
8585
When the request is sent
8686
Then the response status is 200 OK
8787

88-
@replay-only @team:DataDog/rum-back @with-pagination
88+
@replay-only @team:DataDog/rum-backend @with-pagination
8989
Scenario: Get a list of RUM events returns "OK" response with pagination
9090
Given new "ListRUMEvents" request
9191
And request contains "page[limit]" parameter with value 2
9292
When the request with pagination is sent
9393
Then the response status is 200 OK
9494
And the response has 3 items
9595

96-
@generated @skip @team:DataDog/rum-back
96+
@generated @skip @team:DataDog/rum-backend
9797
Scenario: List all the RUM applications returns "Not Found" response
9898
Given new "GetRUMApplications" request
9999
When the request is sent
100100
Then the response status is 404 Not Found
101101

102-
@team:DataDog/rum-back
102+
@team:DataDog/rum-backend
103103
Scenario: List all the RUM applications returns "OK" response
104104
Given new "GetRUMApplications" request
105105
When the request is sent
106106
Then the response status is 200 OK
107107

108-
@generated @skip @team:DataDog/rum-back
108+
@generated @skip @team:DataDog/rum-backend
109109
Scenario: Search RUM events returns "Bad Request" response
110110
Given new "SearchRUMEvents" request
111111
And body with value {"filter": {"from": "now-15m", "query": "@type:session AND @session.type:user", "to": "now"}, "options": {"timezone": "GMT"}, "page": {"cursor": "eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==", "limit": 25}, "sort": "timestamp"}
112112
When the request is sent
113113
Then the response status is 400 Bad Request
114114

115-
@team:DataDog/rum-back
115+
@team:DataDog/rum-backend
116116
Scenario: Search RUM events returns "OK" response
117117
Given new "SearchRUMEvents" request
118118
And body with value {"filter": {"from": "now-15m", "query": "@type:session AND @session.type:user", "to": "now"}, "options": {"time_offset": 0, "timezone": "GMT"}, "page": {"limit": 25}, "sort": "timestamp"}
119119
When the request is sent
120120
Then the response status is 200 OK
121121

122-
@replay-only @team:DataDog/rum-back @with-pagination
122+
@replay-only @team:DataDog/rum-backend @with-pagination
123123
Scenario: Search RUM events returns "OK" response with pagination
124124
Given new "SearchRUMEvents" request
125125
And body with value {"filter": {"from": "now-15m", "query": "@type:session AND @session.type:user", "to": "now"}, "options": {"time_offset": 0, "timezone": "GMT"}, "page": {"limit": 2}, "sort": "timestamp"}
126126
When the request with pagination is sent
127127
Then the response status is 200 OK
128128
And the response has 3 items
129129

130-
@generated @skip @team:DataDog/rum-back
130+
@generated @skip @team:DataDog/rum-backend
131131
Scenario: Update a RUM application returns "Bad Request" response
132132
Given new "UpdateRUMApplication" request
133133
And request contains "id" parameter from "REPLACE.ME"
134134
And body with value {"data": {"attributes": {"name": "updated_name_for_my_existing_rum_application", "type": "browser"}, "id": "abcd1234-0000-0000-abcd-1234abcd5678", "type": "rum_application_update"}}
135135
When the request is sent
136136
Then the response status is 400 Bad Request
137137

138-
@generated @skip @team:DataDog/rum-back
138+
@generated @skip @team:DataDog/rum-backend
139139
Scenario: Update a RUM application returns "Not Found" response
140140
Given new "UpdateRUMApplication" request
141141
And request contains "id" parameter from "REPLACE.ME"
142142
And body with value {"data": {"attributes": {"name": "updated_name_for_my_existing_rum_application", "type": "browser"}, "id": "abcd1234-0000-0000-abcd-1234abcd5678", "type": "rum_application_update"}}
143143
When the request is sent
144144
Then the response status is 404 Not Found
145145

146-
@team:DataDog/rum-back
146+
@team:DataDog/rum-backend
147147
Scenario: Update a RUM application returns "OK" response
148148
Given there is a valid "rum_application" in the system
149149
And new "UpdateRUMApplication" request
@@ -156,7 +156,7 @@ Feature: RUM
156156
And the response "data.attributes.type" is equal to "browser"
157157
And the response "data.attributes.name" is equal to "updated_name_for_my_existing_rum_application"
158158

159-
@team:DataDog/rum-back
159+
@team:DataDog/rum-backend
160160
Scenario: Update a RUM application returns "Unprocessable Entity." response
161161
Given there is a valid "rum_application" in the system
162162
And new "UpdateRUMApplication" request

0 commit comments

Comments
 (0)