Percolate tests
This commit is contained in:
parent
d24fa52099
commit
2e06c35b98
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
"Basic percolation tests":
|
||||
- skip:
|
||||
version: "0.90.3 - 999"
|
||||
reason: "Percolator redesign"
|
||||
|
||||
- do:
|
||||
indices.create:
|
||||
index: test_index
|
||||
|
||||
- do:
|
||||
index:
|
||||
index: _percolator
|
||||
type: test_index
|
||||
id: test_percolator
|
||||
body:
|
||||
query:
|
||||
match_all: {}
|
||||
|
||||
- do:
|
||||
indices.refresh: {}
|
||||
|
||||
- do:
|
||||
percolate:
|
||||
index: test_index
|
||||
type: test_type
|
||||
body:
|
||||
doc:
|
||||
foo: bar
|
||||
|
||||
- is_true: ok
|
||||
|
||||
- match: {'matches': ['test_percolator']}
|
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
"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']}
|
Loading…
Reference in New Issue