-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Theo N. Truong <theotr@amazon.com>
- Loading branch information
Showing
9 changed files
with
165 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
$schema: ../../../json_schemas/test_story.schema.yaml | ||
|
||
description: Test _count endpoint. | ||
chapters: | ||
- synopsis: Count the number of documents in the cluster (GET). | ||
path: /_count | ||
method: GET | ||
response: | ||
status: 200 | ||
- synopsis: Count the number of documents in the cluster (POST). | ||
path: /_count | ||
method: POST | ||
response: | ||
status: 200 |
File renamed without changes.
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,31 @@ | ||
$schema: ../../../json_schemas/test_story.schema.yaml | ||
|
||
description: Test cluster state. | ||
chapters: | ||
- synopsis: Returns an internal representation of the cluster state. | ||
path: /_cluster/state | ||
method: GET | ||
response: | ||
status: 200 | ||
- synopsis: Returns the cluster state version. | ||
path: /_cluster/state/{metric} | ||
method: GET | ||
parameters: | ||
metric: | ||
- version | ||
response: | ||
status: 200 | ||
payload: | ||
cluster_name: docker-cluster | ||
- synopsis: Returns the cluster state version for a given index. | ||
path: /_cluster/state/{metric}/{index} | ||
method: GET | ||
parameters: | ||
metric: | ||
- metadata | ||
index: | ||
- _all | ||
response: | ||
status: 200 | ||
payload: | ||
metadata: {} |
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,56 @@ | ||
$schema: ../../../json_schemas/test_story.schema.yaml | ||
|
||
description: Test _count endpoint. | ||
prologues: | ||
- path: /{index} | ||
method: PUT | ||
parameters: | ||
index: books | ||
request: | ||
payload: {} | ||
- path: /_bulk | ||
method: POST | ||
parameters: | ||
refresh: true | ||
request: | ||
content_type: application/x-ndjson | ||
payload: | ||
- {create: {_index: books, _id: book_1392214}} | ||
- {author: Harper Lee, title: To Kill a Mockingbird, year: 1960} | ||
- {create: {_index: books, _id: book_1392215}} | ||
- {author: Elizabeth Rudnick, title: Beauty and the Beast, year: 1991} | ||
epilogues: | ||
- path: /books | ||
method: DELETE | ||
status: [200, 404] | ||
chapters: | ||
- synopsis: Count the number of documents in an index. | ||
path: /{index}/_count | ||
method: GET | ||
parameters: | ||
index: books | ||
response: | ||
status: 200 | ||
payload: | ||
count: 2 | ||
- synopsis: Count the number of documents in an index that match a query. | ||
path: /{index}/_count | ||
method: POST | ||
parameters: | ||
index: books | ||
allow_no_indices: true | ||
expand_wildcards: closed | ||
ignore_unavailable: true | ||
min_score: 0 | ||
routing: zone | ||
preference: none | ||
terminate_after: 1 | ||
request: | ||
payload: | ||
query: | ||
term: | ||
year: 1960 | ||
response: | ||
status: 200 | ||
payload: | ||
count: 1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
$schema: ../../../json_schemas/test_story.schema.yaml | ||
|
||
description: Test deleting documents that match a query. | ||
epilogues: | ||
- path: /books | ||
method: DELETE | ||
status: [200, 404] | ||
prologues: | ||
- path: /_bulk | ||
method: POST | ||
parameters: | ||
refresh: true | ||
request: | ||
content_type: application/x-ndjson | ||
payload: | ||
- {create: {_index: books, _id: book_1392214}} | ||
- {author: Harper Lee, title: To Kill a Mockingbird, year: 60} | ||
- {create: {_index: books, _id: book_1392215}} | ||
- {author: Elizabeth Rudnick, title: Beauty and the Beast, year: 91} | ||
chapters: | ||
- synopsis: Delete documents in the index (full query term, script). | ||
path: /{index}/_delete_by_query | ||
method: POST | ||
parameters: | ||
index: books | ||
request: | ||
payload: | ||
query: | ||
term: | ||
title: | ||
_name: title | ||
value: beauty | ||
case_insensitive: true | ||
boost: 1 | ||
response: | ||
status: 200 | ||
payload: | ||
total: 1 | ||
deleted: 1 | ||
- synopsis: Delete remaining documents in the index. | ||
path: /{index}/_delete_by_query | ||
method: POST | ||
parameters: | ||
index: books | ||
refresh: true | ||
conflicts: proceed | ||
request: | ||
payload: | ||
query: | ||
match_all: {} | ||
response: | ||
status: 200 | ||
payload: | ||
total: 2 | ||
deleted: 1 |
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