Remove deprecated AJSC configuration
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / config / TestModelLoaderConfig.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.modelloader.config;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25
26 import java.io.File;
27 import java.io.FileInputStream;
28 import java.io.IOException;
29 import java.util.List;
30 import java.util.Properties;
31 import org.eclipse.jetty.util.security.Password;
32 import org.junit.Test;
33 import org.onap.aai.modelloader.restclient.AaiRestClient;
34 import org.onap.sdc.utils.ArtifactTypeEnum;
35
36 /**
37  * Tests for ModelLoaderConfig class.
38  *
39  */
40 public class TestModelLoaderConfig {
41
42     @Test
43     public void testYangModelArtifactType() {
44         Properties props = new Properties();
45         props.setProperty("ml.distribution.ARTIFACT_TYPES", "MODEL_INVENTORY_PROFILE,MODEL_QUERY_SPEC,VNF_CATALOG");
46         ModelLoaderConfig config = new ModelLoaderConfig(props, null);
47
48         List<String> types = config.getRelevantArtifactTypes();
49
50         System.out.println("ArtifactType: " + types.get(0));
51         assertEquals(0, types.get(0).compareToIgnoreCase(ArtifactTypeEnum.MODEL_INVENTORY_PROFILE.toString()));
52
53         System.out.println("ArtifactType: " + types.get(1));
54         assertEquals(0, types.get(1).compareToIgnoreCase(ArtifactTypeEnum.MODEL_QUERY_SPEC.toString()));
55
56         System.out.println("ArtifactType: " + types.get(2));
57         assertEquals(0, types.get(2).compareToIgnoreCase(ArtifactTypeEnum.VNF_CATALOG.toString()));
58
59         assertEquals(3, types.size());
60     }
61
62     @Test
63     public void testMsgBusAddrs() {
64         Properties props = new Properties();
65         props.setProperty("ml.distribution.MSG_BUS_ADDRESSES", "host1.onap.com:3904,host2.onap.com:3904");
66         ModelLoaderConfig config = new ModelLoaderConfig(props, null);
67
68         List<String> addrs = config.getMsgBusAddress();
69
70         assertEquals(2, addrs.size());
71         assertEquals(0, addrs.get(0).compareToIgnoreCase("host1.onap.com:3904"));
72         assertEquals(0, addrs.get(1).compareToIgnoreCase("host2.onap.com:3904"));
73     }
74
75     @Test
76     public void testDecryptPassword() {
77         String password = "youshallnotpass";
78         ModelLoaderConfig config =
79                 createObfuscatedTestConfig(ModelLoaderConfig.PROP_ML_DISTRIBUTION_PASSWORD, password);
80         assertEquals(password, config.getPassword());
81     }
82
83     @Test
84     public void testDecryptKeystorePassword() {
85         String password = "youshallnotpass";
86         ModelLoaderConfig config =
87                 createObfuscatedTestConfig(ModelLoaderConfig.PROP_ML_DISTRIBUTION_KEYSTORE_PASSWORD, password);
88         assertEquals(password, config.getKeyStorePassword());
89     }
90
91     @Test
92     public void testDecryptAaiAuthenticationPassword() {
93         String password = "myvoiceismypassword";
94         ModelLoaderConfig config =
95                 createObfuscatedTestConfig(ModelLoaderConfig.PROP_AAI_AUTHENTICATION_PASSWORD, password);
96         assertEquals(password, config.getAaiAuthenticationPassword());
97     }
98
99     @Test
100     public void testDecryptAaiKeystorePassword() {
101         String password = "myvoiceismypassword";
102         ModelLoaderConfig config = createObfuscatedTestConfig(ModelLoaderConfig.PROP_AAI_KEYSTORE_PASSWORD, password);
103         assertEquals(password, config.getAaiKeyStorePassword());
104     }
105
106     @Test
107     public void testAaiBaseUrl() {
108         String url = "http://localhost:1234/";
109         Properties props = new Properties();
110         props.put(ModelLoaderConfig.PROP_AAI_BASE_URL, url);
111         ModelLoaderConfig config = new ModelLoaderConfig(props, null);
112         assertEquals(url, config.getAaiBaseUrl());
113     }
114
115     @Test
116     public void testDecryptBabelKeystorePassword() {
117         String password = "babelpassword";
118         ModelLoaderConfig config = createObfuscatedTestConfig(ModelLoaderConfig.PROP_BABEL_KEYSTORE_PASSWORD, password);
119         assertEquals(password, config.getBabelKeyStorePassword());
120     }
121
122     @Test
123     public void testBabelKeystorePath() {
124         String root = "path_to_keystore";
125         String path = "relative_keystore_path";
126         Properties props = new Properties();
127         props.put(ModelLoaderConfig.PROP_BABEL_KEYSTORE_FILE, path);
128         ModelLoaderConfig config = new ModelLoaderConfig(props, root);
129         assertEquals(root + File.separator + path, config.getBabelKeyStorePath());
130     }
131
132     @Test
133     public void testBabelBaseUrl() {
134         String url = "http://localhost/";
135         Properties props = new Properties();
136         props.put(ModelLoaderConfig.PROP_BABEL_BASE_URL, url);
137         ModelLoaderConfig config = new ModelLoaderConfig(props, null);
138         assertEquals(url, config.getBabelBaseUrl());
139     }
140
141     @Test
142     public void testBabelGenerateArtifactsUrl() {
143         String url = "/path/to/the/resource";
144         Properties props = new Properties();
145         props.put(ModelLoaderConfig.PROP_BABEL_GENERATE_RESOURCE_URL, url);
146         ModelLoaderConfig config = new ModelLoaderConfig(props, null);
147         assertEquals(url, config.getBabelGenerateArtifactsUrl());
148     }
149
150     @Test
151     public void testMissingAuthenticationProperties() throws IOException {
152         Properties props = new Properties();
153         props.load(new FileInputStream("src/test/resources/model-loader-empty-auth-password.properties"));
154
155         ModelLoaderConfig config = new ModelLoaderConfig(props, null);
156         AaiRestClient aaiClient = new AaiRestClient(config);
157
158         assertFalse("Empty AAI Password should result in no basic authentication", aaiClient.useBasicAuth());
159
160         props.load(new FileInputStream("src/test/resources/model-loader-no-auth-password.properties"));
161         config = new ModelLoaderConfig(props, null);
162         aaiClient = new AaiRestClient(config);
163
164         assertFalse("No AAI Password should result in no basic authentication", aaiClient.useBasicAuth());
165     }
166
167     @Test
168     public void testGetUrls() {
169         Properties props = new Properties();
170         props.put(ModelLoaderConfig.PROP_AAI_MODEL_RESOURCE_URL, "/aai/v*/service-design-and-creation/models/model/");
171         props.put(ModelLoaderConfig.PROP_AAI_NAMED_QUERY_RESOURCE_URL,
172                 "/aai/v*/service-design-and-creation/named-queries/named-query/");
173         ModelLoaderConfig config = new ModelLoaderConfig(props, null);
174
175         assertEquals("/aai/v9/service-design-and-creation/models/model/", config.getAaiModelUrl("v9"));
176         assertEquals("/aai/v10/service-design-and-creation/named-queries/named-query/",
177                 config.getAaiNamedQueryUrl("v10"));
178     }
179
180
181     /**
182      * Create a Model Loader Configuration object from the supplied Property.
183      * 
184      * @param propertyName property key
185      * @param propertyValue value of the property
186      * @return a new ModelLoaderConfig object containing a single obfuscated property value
187      */
188     private ModelLoaderConfig createObfuscatedTestConfig(String propertyName, String propertyValue) {
189         Properties props = new Properties();
190         props.put(propertyName, Password.obfuscate(propertyValue));
191         return new ModelLoaderConfig(props, null);
192     }
193 }