Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
setup:
- do:
indices.create:
index: test
body:
settings:
number_of_replicas: 0
mappings:
properties:
field1:
type: long
field2:
type: long
field3:
type: long
- do:
bulk:
refresh: true
body:
- index:
_index: test
- field1: 100
- index:
_index: test
- field1: 200
- index:
_index: test
- field1: 300
field2: 300

---
"match all":

- do:
search:
rest_total_hits_as_int: true
body:
aggs:
missing_agg:
missing:
field: field3

- match: { hits.total: 3 }
- length: { hits.hits: 3 }

- match: { aggregations.missing_agg.doc_count: 3 }

---
"match some":

- do:
search:
rest_total_hits_as_int: true
body:
aggs:
missing_agg:
missing:
field: field2

- match: { hits.total: 3 }
- length: { hits.hits: 3 }

- match: { aggregations.missing_agg.doc_count: 2 }

---
"match none":

- do:
search:
rest_total_hits_as_int: true
body:
aggs:
missing_agg:
missing:
field: field1

- match: { hits.total: 3 }
- length: { hits.hits: 3 }

- match: { aggregations.missing_agg.doc_count: 0 }

---
"missing param":

- do:
search:
rest_total_hits_as_int: true
body:
aggs:
missing_agg:
missing:
field: field3
missing: 1

- match: { hits.total: 3 }
- length: { hits.hits: 3 }

- match: { aggregations.missing_agg.doc_count: 0 }
Loading