summaryrefslogtreecommitdiff
path: root/rest-api-spec/test/update/75_ttl.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'rest-api-spec/test/update/75_ttl.yaml')
-rw-r--r--rest-api-spec/test/update/75_ttl.yaml96
1 files changed, 96 insertions, 0 deletions
diff --git a/rest-api-spec/test/update/75_ttl.yaml b/rest-api-spec/test/update/75_ttl.yaml
new file mode 100644
index 0000000..2075c6b
--- /dev/null
+++ b/rest-api-spec/test/update/75_ttl.yaml
@@ -0,0 +1,96 @@
+---
+"TTL":
+
+ - skip:
+ features: gtelte
+
+ - do:
+ indices.create:
+ index: test_1
+ body:
+ mappings:
+ test:
+ _ttl:
+ enabled: 1
+ store: yes
+ default: 10s
+ - do:
+ cluster.health:
+ wait_for_status: yellow
+
+# blank ttl
+ - do:
+ update:
+ index: test_1
+ type: test
+ id: 1
+ body:
+ doc: { foo: baz }
+ upsert: { foo: bar }
+
+ - do:
+ get:
+ index: test_1
+ type: test
+ id: 1
+ fields: _ttl
+
+ - lte: { fields._ttl: 10000}
+ - gt: { fields._ttl: 0}
+
+# milliseconds
+
+ - do:
+ update:
+ index: test_1
+ type: test
+ id: 1
+ body:
+ doc: { foo: baz }
+ upsert: { foo: bar }
+ ttl: 100000
+
+ - do:
+ get:
+ index: test_1
+ type: test
+ id: 1
+ fields: _ttl
+
+ - lte: { fields._ttl: 100000}
+ - gt: { fields._ttl: 10000}
+
+# duration
+
+ - do:
+ update:
+ index: test_1
+ type: test
+ id: 1
+ body:
+ doc: { foo: baz }
+ upsert: { foo: bar }
+ ttl: 20s
+
+ - do:
+ get:
+ index: test_1
+ type: test
+ id: 1
+ fields: _ttl
+
+ - lte: { fields._ttl: 20000}
+ - gt: { fields._ttl: 10000}
+
+# with timestamp
+
+ - do:
+ catch: /AlreadyExpiredException/
+ index:
+ index: test_1
+ type: test
+ id: 1
+ body: { foo: bar }
+ ttl: 20s
+ timestamp: 2013-06-23T18:14:40
+