8c417318256e0eb2af73ed5b52e3a1061760f543
[ccsdk/cds.git] /
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-processor-db");
29         ResourceSourceMappingFactory.INSTANCE.registerSourceMapping("processor-db", "source-processor-db");
30         ResourceSourceMappingFactory.INSTANCE.registerSourceMapping("input", "source-input");
31         ResourceSourceMappingFactory.INSTANCE.registerSourceMapping("default", "source-default");
32         ResourceSourceMappingFactory.INSTANCE.registerSourceMapping("primary-config-data", "source-rest");
33         ResourceSourceMappingFactory.INSTANCE.registerSourceMapping("primary-aai-data", "source-rest");
34
35         String nodeTypeName = ResourceSourceMappingFactory.INSTANCE.getRegisterSourceMapping("primary-db");
36         Assert.notNull(nodeTypeName, "Failed to get primary-db mapping");
37
38         ResourceSourceMapping resourceSourceMapping = ResourceSourceMappingFactory.INSTANCE.getRegisterSourceMapping();
39         Assert.notNull(resourceSourceMapping, "Failed to get resource source mapping");
40         Assert.notNull(resourceSourceMapping.getResourceSourceMappings(), "Failed to get resource source mappings");
41
42     }
43
44 }