mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-03 09:29:11 +00:00
32 lines
533 B
YAML
32 lines
533 B
YAML
|
---
|
||
|
"Basic percolation tests":
|
||
|
- skip:
|
||
|
version: "0 - 0.90.2"
|
||
|
reason: "Percolator redesign"
|
||
|
|
||
|
- do:
|
||
|
indices.create:
|
||
|
index: test_index
|
||
|
|
||
|
- do:
|
||
|
index:
|
||
|
index: test_index
|
||
|
type: _percolator
|
||
|
id: test_percolator
|
||
|
body:
|
||
|
query:
|
||
|
match_all: {}
|
||
|
|
||
|
- do:
|
||
|
indices.refresh: {}
|
||
|
|
||
|
- do:
|
||
|
percolate:
|
||
|
index: test_index
|
||
|
type: test_type
|
||
|
body:
|
||
|
doc:
|
||
|
foo: bar
|
||
|
|
||
|
- match: {'matches': ['test_percolator']}
|