summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/aai/sparky/dal/elasticsearch/ElasticSearchConfigTest.java
blob: 6f9fde998bd9f7970a307240c04c2a0ea8f3be93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/**
 * ============LICENSE_START===================================================
 * SPARKY (AAI UI service)
 * ============================================================================
 * 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.
 * ============LICENSE_END=====================================================
 *
 * ECOMP and OpenECOMP are trademarks
 * and service marks of AT&T Intellectual Property.
 */

package org.onap.aai.sparky.dal.elasticsearch;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;

import java.io.File;
import java.io.IOException;

import javax.servlet.ServletException;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.mockito.Mockito;
import org.onap.aai.sparky.dal.elasticsearch.config.ElasticSearchConfig;
import org.onap.aai.sparky.dal.exception.ElasticSearchOperationException;

/**
 * The Class ElasticSearchConfigTest.
 */
public class ElasticSearchConfigTest {

  private static final String GOOD_MAPPINGS_FILE =
      "{" + "\"properties\": {" + "\"entityType\": {" + "\"type\": \"string\"" + "},"
          + "\"edgeTagQueryEntityFieldName\": {" + "\"type\": \"string\"," + "\"index\": \"no\""
          + "}," + "\"edgeTagQueryEntityFieldValue\": {" + "\"type\": \"string\","
          + "\"index\": \"no\"" + "}," + "\"searchTagIDs\" : {" + "\"type\" : \"string\"" + "},"
          + "\"searchTags\": {" + "\"type\": \"string\"," + "\"analyzer\": \"nGram_analyzer\","
          + "\"search_analyzer\": \"whitespace_analyzer\"}" + "}" + "}";

  private static final String GOOD_SETTINGS_FILE = "{\"analysis\": {" + "\"filter\": {"
      + "\"nGram_filter\": {" + "\"type\": \"nGram\"," + "\"min_gram\": 1," + "\"max_gram\": 50,"
      + "\"token_chars\": [" + "\"letter\"," + "\"digit\"," + "\"punctuation\"," + "\"symbol\""
      + "]}}," + "\"analyzer\": {" + "\"nGram_analyzer\": {" + "\"type\": \"custom\","
      + "\"tokenizer\": \"whitespace\"," + "\"filter\": [" + "\"lowercase\"," + "\"asciifolding\","
      + "\"nGram_filter\"]}," + "\"whitespace_analyzer\": {" + "\"type\": \"custom\","
      + "\"tokenizer\": \"whitespace\"," + "\"filter\": [" + "\"lowercase\","
      + "\"asciifolding\"]}}}}";

  private static final String BAD_SETTINGS_FILE = "{\"analysis\": {" + "\"filter\": {"
      + "\"nGram_filter\": {" + "\"type\": \"nGram\"," + "\"min_gram\": 1," + "\"max_gram\": 50,"
      + "\"token_chars\": [" + "\"letter\"," + "\"digit\"," + "\"punctuation\"," + "\"symbol\""
      + "]}}," + "\"analyzer\": {" + "\"nGram_analyzer\": {" + "\"type\": \"custom\","
      + "\"tokenizer\": \"whitespace\"," + "\"filter\": [" + "\"lowercase\"," + "\"asciifolding\","
      + "\"nGram_filter\"]}," + "\"whitespace_analyzer\": {" + "\"type\": \"custom\","
      + "\"tokenizer\": \"whitespace\"," + "\"filter\": [" + "\"lowercase\","
      + "\"asciifolding\"]}}";

  /**
   * Inits the.
   *
   * @throws Exception the exception
   */
  @Before
  public void init() throws Exception {}

  /**
   * Validate accessors.
   *
   * @throws IOException Signals that an I/O exception has occurred.
   * @throws ServletException the servlet exception
   * @throws Exception the exception
   */
  @Test
  public void validateAccessors() throws IOException, ServletException, Exception {

    ElasticSearchConfig esConfig = new ElasticSearchConfig();

    esConfig.setIpAddress("47.248.10.127");
    esConfig.setHttpPort("8123");
    esConfig.setJavaApiPort("9123");
    esConfig.setIndexName("myIndexName");
    esConfig.setType("myIndexTableType");
    esConfig.setClusterName("ES_AAI_DEV");
    esConfig.setMappingsFileName("d:\\1\\mappings.json");
    esConfig.setSettingsFileName("d:\\1\\settings.json");

    ElasticSearchConfig.setConfig(esConfig);

    assertEquals(esConfig.getIpAddress(), "47.248.10.127");
    assertEquals(esConfig.getHttpPort(), "8123");
    assertEquals(esConfig.getJavaApiPort(), "9123");
    assertEquals(esConfig.getIndexName(), "myIndexName");
    assertEquals(esConfig.getType(), "myIndexTableType");
    assertEquals(esConfig.getClusterName(), "ES_AAI_DEV");
    assertEquals(esConfig.getMappingsFileName(), "d:\\1\\mappings.json");
    assertEquals(esConfig.getSettingsFileName(), "d:\\1\\settings.json");

    String output = esConfig.toString();

    assertNotEquals(output, null);

  }
}