From 984c3657343c5a0d2d75f55ff94fad218569fae0 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Mon, 28 May 2018 18:51:07 +0200 Subject: tests/py: Adjust JSON for changes in any/ct.t Commit 71624f25f22b1 ("tests: py: add expires tests with different time bases") removed two testcases and added five other ones, adjust JSON equivalent and recorded output to those changes. Fixes: 71624f25f22b1 ("tests: py: add expires tests with different time bases") Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- tests/py/any/ct.t.json | 39 +++++++++++++++++++++++++--- tests/py/any/ct.t.json.output | 59 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/py/any/ct.t.json b/tests/py/any/ct.t.json index 83f1bbbd..3ec00ab3 100644 --- a/tests/py/any/ct.t.json +++ b/tests/py/any/ct.t.json @@ -708,7 +708,7 @@ } ] -# ct expiration 30 +# ct expiration 30s [ { "match": { @@ -717,12 +717,12 @@ "key": "expiration" } }, - "right": 30 + "right": "30s" } } ] -# ct expiration 22 +# ct expiration 30000ms [ { "match": { @@ -731,7 +731,38 @@ "key": "expiration" } }, - "right": 22 + "right": "30000ms" + } + } +] + +# ct expiration 1m-1h +[ + { + "match": { + "left": { + "ct": { + "key": "expiration" + } + }, + "right": { + "range": [ "1m", "1h" ] + } + } + } +] + +# ct expiration > 4d23h59m59s +[ + { + "match": { + "left": { + "ct": { + "key": "expiration" + } + }, + "op": ">", + "right": "4d23h59m59s" } } ] diff --git a/tests/py/any/ct.t.json.output b/tests/py/any/ct.t.json.output index 01dbb486..ce33a681 100644 --- a/tests/py/any/ct.t.json.output +++ b/tests/py/any/ct.t.json.output @@ -400,6 +400,65 @@ } ] +# ct expiration 30s +[ + { + "match": { + "left": { + "ct": { + "key": "expiration" + } + }, + "right": 30 + } + } +] + +# ct expiration 30000ms +[ + { + "match": { + "left": { + "ct": { + "key": "expiration" + } + }, + "right": 30 + } + } +] + +# ct expiration 1m-1h +[ + { + "match": { + "left": { + "ct": { + "key": "expiration" + } + }, + "right": { + "range": [ 60, 3600 ] + } + } + } +] + +# ct expiration > 4d23h59m59s +[ + { + "match": { + "left": { + "ct": { + "key": "expiration" + } + }, + "op": ">", + "right": 431999 + } + } +] + # ct state . ct mark { new . 0x12345678} [ { -- cgit v1.2.3