OpenSearch/rest-api-spec/test/create/15_without_id.yaml

26 lines
536 B
YAML
Raw Normal View History

2013-06-26 16:04:20 -04:00
---
2013-06-26 16:18:14 -04:00
"Create without ID":
2013-06-26 16:04:20 -04:00
- do:
2013-06-26 16:18:14 -04:00
create:
2013-06-26 16:04:20 -04:00
index: test_1
type: test
body: { foo: bar }
- is_true: _id
2013-06-26 16:04:20 -04:00
- match: { _index: test_1 }
- match: { _type: test }
- match: { _version: 1 }
- set: { _id: id }
2013-06-26 16:18:14 -04:00
2013-06-26 16:04:20 -04:00
- do:
get:
index: test_1
type: test
id: '$id'
2013-06-26 16:04:20 -04:00
- match: { _index: test_1 }
- match: { _type: test }
- match: { _id: $id }
- match: { _version: 1 }
- match: { _source: { foo: bar }}