aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/plans/aai/search-data-service
diff options
context:
space:
mode:
Diffstat (limited to 'test/csit/plans/aai/search-data-service')
-rw-r--r--test/csit/plans/aai/search-data-service/appconfig/analysis-config.json32
-rw-r--r--test/csit/plans/aai/search-data-service/appconfig/auth/search_policy.json18
-rw-r--r--test/csit/plans/aai/search-data-service/appconfig/auth/tomcat_keystorebin2214 -> 0 bytes
-rw-r--r--test/csit/plans/aai/search-data-service/appconfig/elastic-search.properties6
-rw-r--r--test/csit/plans/aai/search-data-service/appconfig/filter-config.json7
-rw-r--r--test/csit/plans/aai/search-data-service/docker-compose.yml26
-rw-r--r--test/csit/plans/aai/search-data-service/setup.sh37
-rw-r--r--test/csit/plans/aai/search-data-service/teardown.sh32
-rw-r--r--test/csit/plans/aai/search-data-service/testplan.txt3
9 files changed, 0 insertions, 161 deletions
diff --git a/test/csit/plans/aai/search-data-service/appconfig/analysis-config.json b/test/csit/plans/aai/search-data-service/appconfig/analysis-config.json
deleted file mode 100644
index f98ea3799..000000000
--- a/test/csit/plans/aai/search-data-service/appconfig/analysis-config.json
+++ /dev/null
@@ -1,32 +0,0 @@
-[
- {
- "name": "whitespace_analyzer",
- "description": "A standard whitespace analyzer.",
- "behaviours": [
- "Tokenize the text using white space characters as delimeters.",
- "Convert all characters to lower case.",
- "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents."
- ],
- "tokenizer": "whitespace",
- "filters": [
- "lowercase",
- "asciifolding"
- ]
- },
- {
- "name": "ngram_analyzer",
- "description": "An analyzer which performs ngram filtering on the data stream.",
- "behaviours": [
- "Tokenize the text using white space characters as delimeters.",
- "Convert all characters to lower case.",
- "Convert all alphanumeric and symbolic Unicode characters above the first 127 ASCII characters into their ASCII equivalents.",
- "Apply ngram filtering using the following values for minimum and maximum size in codepoints of a single n-gram: minimum = 1, maximum = 2."
- ],
- "tokenizer": "whitespace",
- "filters": [
- "lowercase",
- "asciifolding",
- "ngram_filter"
- ]
- }
-] \ No newline at end of file
diff --git a/test/csit/plans/aai/search-data-service/appconfig/auth/search_policy.json b/test/csit/plans/aai/search-data-service/appconfig/auth/search_policy.json
deleted file mode 100644
index 72d8902fb..000000000
--- a/test/csit/plans/aai/search-data-service/appconfig/auth/search_policy.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "roles": [
- {
- "name": "admin",
- "functions": [
- {
- "name": "search", "methods": [ { "name": "GET" },{ "name": "DELETE" }, { "name": "PUT" }, { "name": "POST" } ]
- }
- ],
-
- "users": [
- {
- "username": "CN=ONAP, OU=ONAP, O=ONAP, L=Ottawa, ST=Ontario, C=CA"
- }
- ]
- }
- ]
-}
diff --git a/test/csit/plans/aai/search-data-service/appconfig/auth/tomcat_keystore b/test/csit/plans/aai/search-data-service/appconfig/auth/tomcat_keystore
deleted file mode 100644
index 9eec841aa..000000000
--- a/test/csit/plans/aai/search-data-service/appconfig/auth/tomcat_keystore
+++ /dev/null
Binary files differ
diff --git a/test/csit/plans/aai/search-data-service/appconfig/elastic-search.properties b/test/csit/plans/aai/search-data-service/appconfig/elastic-search.properties
deleted file mode 100644
index 5d9a37c05..000000000
--- a/test/csit/plans/aai/search-data-service/appconfig/elastic-search.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-# ElasticSearch Configuration
-
-es.cluster-name=ES_AAI
-es.http-port=9200
-
-## The IP address will be injected by the csit setup script
diff --git a/test/csit/plans/aai/search-data-service/appconfig/filter-config.json b/test/csit/plans/aai/search-data-service/appconfig/filter-config.json
deleted file mode 100644
index e2d528582..000000000
--- a/test/csit/plans/aai/search-data-service/appconfig/filter-config.json
+++ /dev/null
@@ -1,7 +0,0 @@
-[
- {
- "name": "ngram_filter",
- "description": "Custom NGram Filter.",
- "configuration": " \"type\": \"nGram\", \"min_gram\": 1, \"max_gram\": 50, \"token_chars\": [ \"letter\", \"digit\", \"punctuation\", \"symbol\" ]"
- }
-] \ No newline at end of file
diff --git a/test/csit/plans/aai/search-data-service/docker-compose.yml b/test/csit/plans/aai/search-data-service/docker-compose.yml
deleted file mode 100644
index d48c9fa0a..000000000
--- a/test/csit/plans/aai/search-data-service/docker-compose.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-version: '2'
-services:
- aai.searchservice.simpledemo.openecomp.org:
- image: ${DOCKER_REGISTRY}/openecomp/search-data-service
- hostname: aai.searchservice.simpledemo.openecomp.org
- container_name: search-service-container
- volumes:
- - ${SEARCH_LOGS}:/logs
- - ./appconfig:/opt/app/search-data-service/config
- ports:
- - 9509:9509
- environment:
- - CONFIG_HOME=/opt/app/search-data-service/config/
- - KEY_STORE_PASSWORD=OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
- - KEY_MANAGER_PASSWORD=OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
- logging:
- driver: "json-file"
- options:
- max-size: "30m"
- max-file: "5"
-
-networks:
- default:
- driver: bridge
- driver_opts:
- com.docker.network.driver.mtu: ${MTU}
diff --git a/test/csit/plans/aai/search-data-service/setup.sh b/test/csit/plans/aai/search-data-service/setup.sh
deleted file mode 100644
index 60703b657..000000000
--- a/test/csit/plans/aai/search-data-service/setup.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/bash
-#
-# Copyright © 2017 AT&T Intellectual Property.
-# Copyright © 2017 Amdocs
-# All rights reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-# ECOMP is a trademark and service mark of AT&T Intellectual Property.
-
-echo search service setup script running
-
-export SEARCH_LOGS="/opt/aai/logroot/AAI-SEARCH";
-export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1);
-export DOCKER_REGISTRY="nexus3.onap.org:10001";
-
-# inject the current IP to the elastic-search config file
-echo "es.ip-address="`ip addr show docker0 | head -3 | tail -1 | cut -d' ' -f6 | cut -d'/' -f1` >> appconfig/elastic-search.properties
-
-docker run -d --name "stretchy" -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" elasticsearch:2.4.6
-docker-compose -f docker-compose.yml up -d aai.searchservice.simpledemo.openecomp.org
-
-echo sleeping for 10 seconds while services start up
-sleep 10
-
-ROBOT_VARIABLES="-v HOST_IP:`ip addr show docker0 | head -3 | tail -1 | cut -d' ' -f6 | cut -d'/' -f1`"
-
diff --git a/test/csit/plans/aai/search-data-service/teardown.sh b/test/csit/plans/aai/search-data-service/teardown.sh
deleted file mode 100644
index 36d3e1daf..000000000
--- a/test/csit/plans/aai/search-data-service/teardown.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-#
-# Copyright © 2017 AT&T Intellectual Property.
-# Copyright © 2017 Amdocs
-# All rights reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-# ECOMP is a trademark and service mark of AT&T Intellectual Property.
-
-
-export SEARCH_LOGS="/opt/aai/logroot/AAI-SEARCH";
-export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1);
-export DOCKER_REGISTRY="nexus3.onap.org:10001";
-
-docker-compose -f docker-compose.yml stop
-docker stop stretchy
-docker-compose -f docker-compose.yml rm -f -v
-docker rm stretchy
-
-# remove the line we injected into the elastic-search config
-sed -i '$ d' appconfig/elastic-search.properties
diff --git a/test/csit/plans/aai/search-data-service/testplan.txt b/test/csit/plans/aai/search-data-service/testplan.txt
deleted file mode 100644
index b0a72a0f3..000000000
--- a/test/csit/plans/aai/search-data-service/testplan.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# Test suites are relative paths under [integration.git]/test/csit/tests/.
-# Place the suites in run order.
-aai/search-data-service/suite1