From 16694bdd4c01ae001b60fbc18d45200fffc84de5 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Thu, 11 Oct 2018 17:49:01 +0200 Subject: tests: monitor: Test JSON output as well Enhance monitor test suite to test check JSON output as well. Note that for now there is no support for --echo output testing with JSON. Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- tests/monitor/testcases/set-maps.t | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/monitor/testcases/set-maps.t') diff --git a/tests/monitor/testcases/set-maps.t b/tests/monitor/testcases/set-maps.t index 3d86720e..acda480d 100644 --- a/tests/monitor/testcases/set-maps.t +++ b/tests/monitor/testcases/set-maps.t @@ -2,9 +2,13 @@ I add table ip t I add map ip t portip { type inet_service: ipv4_addr; flags interval; } O - +J {"add": {"table": {"family": "ip", "name": "t", "handle": 0}}} +J {"add": {"map": {"family": "ip", "name": "portip", "table": "t", "type": "inet_service", "handle": 0, "map": "ipv4_addr", "flags": ["interval"]}}} I add element ip t portip { 80-100: 10.0.0.1 } O - +J {"add": {"element": {"family": "ip", "table": "t", "name": "portip", "elem": {"set": [[{"range": [80, 100]}, "10.0.0.1"]]}}}} I add element ip t portip { 1024-65535: 10.0.0.1 } O - +J {"add": {"element": {"family": "ip", "table": "t", "name": "portip", "elem": {"set": [[{"range": [1024, 65535]}, "10.0.0.1"]]}}}} -- cgit v1.2.3