-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added tests for /{index}/_delete_by_query.
Signed-off-by: dblock <[email protected]>
- Loading branch information
Showing
2 changed files
with
56 additions
and
1 deletion.
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
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