OpenSearch/rest-api-spec/test/create/10_with_id.yaml

33 lines
665 B
YAML
Raw Normal View History

2013-06-26 16:04:20 -04:00
---
2013-06-26 16:18:14 -04:00
"Create with 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
id: 1
body: { foo: bar }
- ok: ok
- match: { _index: test_1 }
- match: { _type: test }
- match: { _id: 1}
- match: { _version: 1}
2013-06-26 16:18:14 -04:00
2013-06-26 16:04:20 -04:00
- 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 }}
2013-06-26 16:18:14 -04:00
- do:
catch: conflict
create:
index: test_1
type: test
id: 1
body: { foo: bar }