35 lines
673 B
YAML
35 lines
673 B
YAML
---
|
|
"Create with ID":
|
|
- do:
|
|
create:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
body: { foo: bar }
|
|
|
|
- is_true: ok
|
|
- match: { _index: test_1 }
|
|
- match: { _type: test }
|
|
- match: { _id: "1"}
|
|
- match: { _version: 1}
|
|
|
|
- do:
|
|
get:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
|
|
- match: { _index: test_1 }
|
|
- match: { _type: test }
|
|
- match: { _id: "1"}
|
|
- match: { _version: 1}
|
|
- match: { _source: { foo: bar }}
|
|
|
|
- do:
|
|
catch: conflict
|
|
create:
|
|
index: test_1
|
|
type: test
|
|
id: 1
|
|
body: { foo: bar }
|