Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / controllerblueprints / modules / resource-dict / src / test / java / org / onap / ccsdk / cds / controllerblueprints / resource / dict / factory / ResourceSourceMappingFactoryTest.java
1 /*
2  *  Copyright © 2017-2018 AT&T Intellectual Property.
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.controllerblueprints.resource.dict.factory;
18
19 import org.junit.Test;
20 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceSourceMapping;
21 import org.springframework.util.Assert;
22
23 public class ResourceSourceMappingFactoryTest {
24
25     @Test
26     public void testRegisterResourceMapping() {
27
28         ResourceSourceMappingFactory.INSTANCE.registerSourceMapping("primary-db", "source-primary-db");
29         ResourceSourceMappingFactory.INSTANCE.registerSourceMapping("input", "source-input");
30         ResourceSourceMappingFactory.INSTANCE.registerSourceMapping("default", "source-default");
31         ResourceSourceMappingFactory.INSTANCE.registerSourceMapping("primary-config-data", "source-rest");
32
33         String nodeTypeName = ResourceSourceMappingFactory.INSTANCE.getRegisterSourceMapping("primary-db");
34         Assert.notNull(nodeTypeName, "Failed to get primary-db mapping");
35
36         ResourceSourceMapping resourceSourceMapping = ResourceSourceMappingFactory.INSTANCE.getRegisterSourceMapping();
37         Assert.notNull(resourceSourceMapping, "Failed to get resource source mapping");
38         Assert.notNull(resourceSourceMapping.getResourceSourceMappings(), "Failed to get resource source mappings");
39
40     }
41
42 }