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

[TEST] add regular scroll REST test #7860

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
106 changes: 98 additions & 8 deletions rest-api-spec/test/scroll/10_basic.yaml
@@ -1,14 +1,24 @@
---
"Basic scroll":
"Basic scan":
- do:
indices.create:
index: test_scroll
index: test_scroll
body:
settings:
number_of_shards: "1"
- do:
index:
index: test_scroll
type: test
id: 42
body: { foo: bar }

- do:
index:
index: test_scroll
type: test
id: 42
body: { foo: bar }
index: test_scroll
type: test
id: 43
body: { foo: bar }

- do:
indices.refresh: {}
Expand All @@ -17,16 +27,96 @@
search:
index: test_scroll
search_type: scan
size: 1
scroll: 1m
body:
query:
match_all: {}

- set: {_scroll_id: scroll_id}
- match: {hits.total: 2 }
- length: {hits.hits: 0 }

- do:
scroll:
scroll_id: $scroll_id
scroll: 1m

- set: {_scroll_id: scroll_id}
- match: {hits.total: 2 }
- length: {hits.hits: 1 }

- do:
scroll:
scroll_id: $scroll_id
scroll: 1m

- set: {_scroll_id: scroll_id}
- match: {hits.total: 2 }
- length: {hits.hits: 1 }

- do:
scroll:
scroll_id: $scroll_id
scroll: 1m

- match: {hits.total: 2 }
- length: {hits.hits: 0 }

---
"Basic scroll":
- do:
indices.create:
index: test_scroll
- do:
index:
index: test_scroll
type: test
id: 42
body: { foo: bar }

- do:
index:
index: test_scroll
type: test
id: 43
body: { foo: bar }

- do:
indices.refresh: {}

- do:
search:
index: test_scroll
size: 1
scroll: 1m
body:
query:
match_all: {}

- set: {_scroll_id: scroll_id}
- match: {hits.total: 2 }
- length: {hits.hits: 1 }

- do:
index:
index: test_scroll
type: test
id: 42
body: { foo: bar }

- do:
indices.refresh: {}

- do:
scroll:
scroll_id: $scroll_id
scroll: 1m

- match: {hits.total: 2 }
- length: {hits.hits: 1 }

- do:
clear_scroll:
scroll_id: $scroll_id

- match: {hits.total: 1 }
- match: {hits.hits.0._id: "42" }