From 9fbb2c4ed57dbdf9137bbd62f9925e177f940dd3 Mon Sep 17 00:00:00 2001 From: Herbert Eiselt Date: Mon, 18 Feb 2019 18:49:32 +0100 Subject: Increase Test coverage Increase Test coverage over 50 for SDN-R devicemanager Change-Id: I03eb5887d955abdfd4bdefa58c79c7f5356c9401 Issue-ID: SDNC-650 Signed-off-by: Herbert Eiselt --- .../sdnperformance/sdnperformanceMapping.json | 92 ++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/index/sdnperformance/sdnperformanceMapping.json (limited to 'sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/index/sdnperformance/sdnperformanceMapping.json') diff --git a/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/index/sdnperformance/sdnperformanceMapping.json b/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/index/sdnperformance/sdnperformanceMapping.json new file mode 100644 index 000000000..92d5ad2fb --- /dev/null +++ b/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/index/sdnperformance/sdnperformanceMapping.json @@ -0,0 +1,92 @@ +{ + "mappings": + { + "historicalperformance24h": + { + "properties": + { + "node-name": + { + "index": "not_analyzed", + "type": "string" + }, + "time-stamp": + { + "index": "not_analyzed", + "type": "string" + }, + "suspect-interval-flag": + { + "type": "boolean" + }, + "scanner-id": + { + "index": "not_analyzed", + "type": "string" + }, + "uuid-interface": + { + "index": "not_analyzed", + "type": "string" + }, + "layer-protocol-name": { + "index": "not_analyzed", + "type": "string" + }, + "granularity-period": + { + "index": "not_analyzed", + "type": "string" + }, + "radio-signal-id": { + "index": "not_analyzed", + "type": "string" + } + } + }, + + "historicalperformance15min": + { + "properties": + { + "node-name": + { + "index": "not_analyzed", + "type": "string" + }, + "time-stamp": + { + "index": "not_analyzed", + "type": "string" + }, + "suspect-interval-flag": + { + "type": "boolean" + }, + "scanner-id": + { + "index": "not_analyzed", + "type": "string" + }, + "uuid-interface": + { + "index": "not_analyzed", + "type": "string" + }, + "layer-protocol-name": { + "index": "not_analyzed", + "type": "string" + }, + "granularity-period": + { + "index": "not_analyzed", + "type": "string" + }, + "radio-signal-id": { + "index": "not_analyzed", + "type": "string" + } + } + } + } +} -- cgit 1.2.3-korg