x_refresh.yaml tests should use unique index names and doc ids to ease debugging

This is to make it easier to grep the node logs
This commit is contained in:
Boaz Leskes 2016-12-21 10:25:33 +01:00
parent e298180a39
commit 6249f1092f
5 changed files with 32 additions and 32 deletions

View File

@ -4,14 +4,14 @@
bulk:
refresh: true
body: |
{"index": {"_index": "test_index", "_type": "test_type", "_id": "test_id"}}
{"index": {"_index": "bulk_50_refresh_1", "_type": "test_type", "_id": "bulk_50_refresh_id1"}}
{"f1": "v1", "f2": 42}
{"index": {"_index": "test_index", "_type": "test_type", "_id": "test_id2"}}
{"index": {"_index": "bulk_50_refresh_1", "_type": "test_type", "_id": "bulk_50_refresh_id2"}}
{"f1": "v2", "f2": 47}
- do:
count:
index: test_index
index: bulk_50_refresh_1
- match: {count: 2}
---
@ -20,14 +20,14 @@
bulk:
refresh: ""
body: |
{"index": {"_index": "test_index", "_type": "test_type", "_id": "test_id"}}
{"index": {"_index": "bulk_50_refresh_2", "_type": "test_type", "_id": "bulk_50_refresh_id3"}}
{"f1": "v1", "f2": 42}
{"index": {"_index": "test_index", "_type": "test_type", "_id": "test_id2"}}
{"index": {"_index": "bulk_50_refresh_2", "_type": "test_type", "_id": "bulk_50_refresh_id4"}}
{"f1": "v2", "f2": 47}
- do:
count:
index: test_index
index: bulk_50_refresh_2
- match: {count: 2}
@ -37,12 +37,12 @@
bulk:
refresh: wait_for
body: |
{"index": {"_index": "test_index", "_type": "test_type", "_id": "test_id"}}
{"index": {"_index": "bulk_50_refresh_3", "_type": "test_type", "_id": "bulk_50_refresh_id5"}}
{"f1": "v1", "f2": 42}
{"index": {"_index": "test_index", "_type": "test_type", "_id": "test_id2"}}
{"index": {"_index": "bulk_50_refresh_3", "_type": "test_type", "_id": "bulk_50_refresh_id6"}}
{"f1": "v2", "f2": 47}
- do:
count:
index: test_index
index: bulk_50_refresh_3
- match: {count: 2}

View File

@ -66,17 +66,17 @@
"refresh=wait_for waits until changes are visible in search":
- do:
index:
index: test_1
index: create_60_refresh_1
type: test
id: 1
id: create_60_refresh_id1
body: { foo: bar }
refresh: wait_for
- is_false: forced_refresh
- do:
search:
index: test_1
index: create_60_refresh_1
type: test
body:
query: { term: { _id: 1 }}
query: { term: { _id: create_60_refresh_id1 }}
- match: { hits.total: 1 }

View File

@ -115,33 +115,33 @@
"refresh=wait_for waits until changes are visible in search":
- do:
index:
index: test_1
index: delete_50_refresh_1
type: test
id: 1
id: delete_50_refresh_id1
body: { foo: bar }
refresh: true
- is_true: forced_refresh
- do:
search:
index: test_1
index: delete_50_refresh_1
type: test
body:
query: { term: { _id: 1 }}
query: { term: { _id: delete_50_refresh_id1 }}
- match: { hits.total: 1 }
- do:
delete:
index: test_1
index: delete_50_refresh_1
type: test
id: 1
id: delete_50_refresh_id1
refresh: wait_for
- is_false: forced_refresh
- do:
search:
index: test_1
index: delete_50_refresh_1
type: test
body:
query: { term: { _id: 1 }}
query: { term: { _id: delete_50_refresh_id1 }}
- match: { hits.total: 0 }

View File

@ -67,17 +67,17 @@
"refresh=wait_for waits until changes are visible in search":
- do:
index:
index: test_1
index: index_60_refresh_1
type: test
id: 1
id: index_60_refresh_id1
body: { foo: bar }
refresh: wait_for
- is_false: forced_refresh
- do:
search:
index: test_1
index: index_60_refresh_1
type: test
body:
query: { term: { _id: 1 }}
query: { term: { _id: index_60_refresh_id1 }}
- match: { hits.total: 1 }

View File

@ -81,26 +81,26 @@
"refresh=wait_for waits until changes are visible in search":
- do:
index:
index: test_1
index: update_60_refresh_1
type: test
id: 1
id: update_60_refresh_id1
body: { foo: bar }
refresh: true
- is_true: forced_refresh
- do:
search:
index: test_1
index: update_60_refresh_1
type: test
body:
query: { term: { _id: 1 }}
query: { term: { _id: update_60_refresh_id1 }}
- match: { hits.total: 1 }
- do:
update:
index: test_1
index: update_60_refresh_1
type: test
id: 1
id: update_60_refresh_id1
refresh: wait_for
body:
doc: { test: asdf }
@ -108,7 +108,7 @@
- do:
search:
index: test_1
index: update_60_refresh_1
type: test
body:
query: { match: { test: asdf } }