42 lines
725 B
YAML
42 lines
725 B
YAML
|
---
|
||
|
"Doc upsert":
|
||
|
|
||
|
- do:
|
||
|
update:
|
||
|
index: test_1
|
||
|
type: test
|
||
|
id: 1
|
||
|
body:
|
||
|
doc: { foo: bar, count: 1 }
|
||
|
upsert: { foo: baz }
|
||
|
|
||
|
- do:
|
||
|
get:
|
||
|
index: test_1
|
||
|
type: test
|
||
|
id: 1
|
||
|
|
||
|
- match: { _source.foo: baz }
|
||
|
- not_ok: _source.count
|
||
|
|
||
|
|
||
|
- do:
|
||
|
update:
|
||
|
index: test_1
|
||
|
type: test
|
||
|
id: 1
|
||
|
body:
|
||
|
doc: { foo: bar, count: 1 }
|
||
|
upsert: { foo: baz }
|
||
|
|
||
|
- do:
|
||
|
get:
|
||
|
index: test_1
|
||
|
type: test
|
||
|
id: 1
|
||
|
|
||
|
- match: { _source.foo: bar }
|
||
|
- match: { _source.count: 1 }
|
||
|
|
||
|
|