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

35 lines
673 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 }
- is_true: ok
2013-06-26 16:04:20 -04:00
- match: { _index: test_1 }
- match: { _type: test }
2013-07-10 20:21:56 -04:00
- match: { _id: "1"}
2013-06-26 16:04:20 -04:00
- 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
2013-06-26 16:04:20 -04:00
- match: { _index: test_1 }
- match: { _type: test }
2013-07-10 20:21:56 -04:00
- match: { _id: "1"}
2013-06-26 16:04:20 -04:00
- 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 }