Skip to content

Commit

Permalink
adding missing tests
Browse files Browse the repository at this point in the history
Signed-off-by: Tokesh <[email protected]>
  • Loading branch information
Tokesh committed Dec 18, 2024
1 parent 4a7439b commit 7b32b67
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Added API spec for `adjust_pure_negative` for bool queries ([#641](https://github.com/opensearch-project/opensearch-api-specification/pull/641))
- Added a spec style checker [#620](https://github.com/opensearch-project/opensearch-api-specification/pull/620).
- Added `remote_store` to node `Stats` ([#643](https://github.com/opensearch-project/opensearch-api-specification/pull/643))
- Added 404 response to `/_search/scroll` ([#x](https://github.com/opensearch-project/opensearch-api-specification/pull/x))

### Changed

Expand Down
16 changes: 16 additions & 0 deletions spec/namespaces/_core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -898,6 +898,8 @@ paths:
responses:
'200':
$ref: '#/components/responses/clear_scroll@200'
'404':
$ref: '#/components/responses/clear_scroll@404'
/_search/scroll/{scroll_id}:
get:
operationId: scroll.2
Expand Down Expand Up @@ -2868,6 +2870,20 @@ components:
required:
- num_freed
- succeeded
clear_scroll@404:
content:
application/json:
schema:
type: object
properties:
succeeded:
type: boolean
num_freed:
type: integer
format: int32
required:
- num_freed
- succeeded
count@200:
content:
application/json:
Expand Down
8 changes: 8 additions & 0 deletions tests/default/_core/search/scroll.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,11 @@ chapters:
path: /_search/scroll/{scroll_id}
parameters:
scroll_id: ${scroll.scroll_id}
- synopsis: Deleting a non-existent scroll.
method: DELETE
path: /_search/scroll
request:
payload:
scroll_id: ${scroll.scroll_id}
response:
status: 404
25 changes: 25 additions & 0 deletions tests/default/_core/update_by_query.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
$schema: ../../../json_schemas/test_story.schema.yaml

description: Test Update By Query endpoint.
prologues:
- path: /books/_delete_by_query
id: task
method: POST
parameters:
refresh: true
conflicts: proceed
wait_for_completion: false
request:
payload:
query:
match_all: {}
output:
id: payload.task
chapters:
- synopsis: Update by query.
path: /_update_by_query/{task_id}/_rethrottle
method: POST
parameters:
task_id: ${task.id}
requests_per_second: 10

22 changes: 20 additions & 2 deletions tests/plugins/workload-management/wlm/query_group.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ chapters:
resource_limits:
memory: 0.1
resiliency_mode: monitor
- synopsis: Update a QueryGroup by name.
path: /_wlm/query_group/{name}
method: PUT
parameters:
name: analytics
request:
payload:
resource_limits:
memory: 0.2
resiliency_mode: restrict
- synopsis: Get the QueryGroup by name.
path: /_wlm/query_group/{name}
method: GET
Expand All @@ -24,11 +34,19 @@ chapters:
query_groups:
- name: analytics
resource_limits:
memory: 0.1
resiliency_mode: monitor
memory: 0.2
resiliency_mode: restrict
- synopsis: Get all QueryGroups.
path: /_wlm/query_group
method: GET
response:
status: 200
payload:
query_groups:
- name: analytics
resource_limits:
memory: 0.2
resiliency_mode: restrict
- synopsis: Delete a QueryGroup.
path: /_wlm/query_group/{name}
parameters:
Expand Down
4 changes: 3 additions & 1 deletion tests/snapshot/snapshot/restore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ prologues:
index: stories
alias: stories_alias
- path: /_snapshot/{repository}/{snapshot}
method: PUT
method:
- POST
- PUT
parameters:
repository: my-fs-repository
snapshot: my-test-snapshot
Expand Down

0 comments on commit 7b32b67

Please sign in to comment.