Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding missing tests #749

Merged
merged 17 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Added missing `cancelled` and `resource_stats` to `/_reindex/{task_id}/_rethrottle` ([#740](https://github.com/opensearch-project/opensearch-api-specification/pull/740))
- Added missing `cancellation_time_millis` to `POST /_tasks/_cancel` ([#747](https://github.com/opensearch-project/opensearch-api-specification/pull/747))
- Added support for combining output variables ([#737](https://github.com/opensearch-project/opensearch-api-specification/pull/737))
- Added 404 response to `/_search/scroll` ([#749](https://github.com/opensearch-project/opensearch-api-specification/pull/749))
- Added `node_failures` to `DELETE /_search/scroll` and `DELETE /_search/scroll/{scroll_id}` ([#749](https://github.com/opensearch-project/opensearch-api-specification/pull/749))

### Removed
- Removed unsupported `_common.mapping:SourceField`'s `mode` field and associated `_common.mapping:SourceFieldMode` enum ([#652](https://github.com/opensearch-project/opensearch-api-specification/pull/652))
Expand Down
22 changes: 22 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 @@ -956,6 +958,8 @@ paths:
responses:
'200':
$ref: '#/components/responses/clear_scroll@200'
'404':
$ref: '#/components/responses/clear_scroll@404'
/_search/template:
get:
operationId: search_template.0
Expand Down Expand Up @@ -2868,6 +2872,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 Expand Up @@ -3370,6 +3388,10 @@ components:
type: object
additionalProperties:
$ref: '../schemas/_core.update_by_query_rethrottle.yaml#/components/schemas/UpdateByQueryRethrottleNode'
node_failures:
type: array
items:
$ref: '../schemas/_common.yaml#/components/schemas/ErrorCause'
required:
- nodes
parameters:
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
Tokesh marked this conversation as resolved.
Show resolved Hide resolved

description: Test Update By Query endpoint.
Tokesh marked this conversation as resolved.
Show resolved Hide resolved
prologues:
- path: /books/_delete_by_query
Tokesh marked this conversation as resolved.
Show resolved Hide resolved
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: soft
- 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: soft
- 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: soft
- synopsis: Delete a QueryGroup.
path: /_wlm/query_group/{name}
parameters:
Expand Down
49 changes: 35 additions & 14 deletions tests/snapshot/snapshot/snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,27 @@ epilogues:
method: DELETE
status: [200, 404]
parameters:
repository: my-fs-repository
Tokesh marked this conversation as resolved.
Show resolved Hide resolved
repository: my-repository
snapshot: my-test-snapshot
- path: /_snapshot/{repository}/{snapshot}
method: DELETE
status: [200, 404]
parameters:
repository: my-repository
snapshot: my-second-snapshot
- path: /_snapshot/{repository}
method: DELETE
status: [200, 404]
parameters:
repository: my-fs-repository
repository: my-repository
chapters:
- synopsis: Create and update a snapshot repository.
path: /_snapshot/{repository}
method:
- POST
- PUT
parameters:
repository: my-fs-repository
repository: my-repository
request:
payload:
type: fs
Expand All @@ -32,27 +38,27 @@ chapters:
response:
status: 200
payload:
my-fs-repository:
my-repository:
type: fs
settings:
location: /tmp/opensearch/repo
- synopsis: Get information about a repository.
path: /_snapshot/{repository}
method: GET
parameters:
repository: my-fs-repository
repository: my-repository
response:
status: 200
payload:
my-fs-repository:
my-repository:
type: fs
settings:
location: /tmp/opensearch/repo
- synopsis: Create a snapshot.
path: /_snapshot/{repository}/{snapshot}
method: PUT
parameters:
repository: my-fs-repository
repository: my-repository
snapshot: my-test-snapshot
wait_for_completion: true
request:
Expand All @@ -65,12 +71,27 @@ chapters:
status: 200
payload:
snapshot:
snapshot: my-test-snapshot
snapshot: my-test-snapshot
- synopsis: Create a second snapshot.
path: /_snapshot/{repository}/{snapshot}
method: POST
parameters:
repository: my-repository
snapshot: my-second-snapshot
wait_for_completion: true
request:
payload:
indices: '*'
response:
status: 200
payload:
snapshot:
snapshot: my-second-snapshot
- synopsis: Get information about a snapshot.
path: /_snapshot/{repository}/{snapshot}
method: GET
parameters:
repository: my-fs-repository
repository: my-repository
snapshot: my-test-snapshot
response:
status: 200
Expand All @@ -81,22 +102,22 @@ chapters:
path: /_snapshot/{repository}/{snapshot}
method: GET
parameters:
repository: my-fs-repository
snapshot: my-test-snapshot
repository: my-repository
snapshot: my-second-snapshot
human: true
response:
status: 200
payload:
snapshots:
- snapshot: my-test-snapshot
- snapshot: my-second-snapshot
- synopsis: Delete a snapshot.
path: /_snapshot/{repository}/{snapshot}
method: DELETE
parameters:
repository: my-fs-repository
repository: my-repository
snapshot: my-test-snapshot
- synopsis: Delete a snapshot repository.
path: /_snapshot/{repository}
method: DELETE
parameters:
repository: my-fs-repository
repository: my-repository
Loading