AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / parsers / uri / URIToExtensionInformationTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *    http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.aai.parsers.uri;
22
23 import static org.junit.Assert.assertEquals;
24
25 import java.io.UnsupportedEncodingException;
26 import java.net.URI;
27
28 import javax.annotation.PostConstruct;
29 import javax.ws.rs.core.UriBuilder;
30 import javax.xml.bind.JAXBException;
31
32 import org.junit.Test;
33 import org.onap.aai.AAISetup;
34 import org.onap.aai.exceptions.AAIException;
35 import org.onap.aai.introspection.Loader;
36 import org.onap.aai.introspection.ModelType;
37 import org.onap.aai.restcore.HttpMethod;
38 import org.onap.aai.setup.SchemaVersion;
39
40 public class URIToExtensionInformationTest extends AAISetup {
41
42     private Loader specificLoader;
43
44     /**
45      * Vservers V 7.
46      *
47      * @throws JAXBException the JAXB exception
48      * @throws AAIException the AAI exception
49      * @throws IllegalArgumentException the illegal argument exception
50      * @throws UnsupportedEncodingException the unsupported encoding exception
51      */
52
53     @PostConstruct
54     public void createLoader() {
55         specificLoader = loaderFactory.createLoaderForVersion(ModelType.MOXY, new SchemaVersion("v10"));
56     }
57
58     @Test
59     public void vserversV8()
60             throws JAXBException, AAIException, IllegalArgumentException, UnsupportedEncodingException {
61         URI uri = UriBuilder.fromPath("/aai/" + specificLoader.getVersion()
62                 + "/cloud-infrastructure/cloud-regions/cloud-region/testOwner1/testRegion1/tenants/tenant/key1/vservers/vserver/key2")
63                 .build();
64         URIToExtensionInformation parse = new URIToExtensionInformation(specificLoader, uri);
65
66         String namespace = "cloudInfrastructure";
67         String preMethodName =
68                 "DynamicAddCloudInfrastructureCloudRegionsCloudRegionTenantsTenantVserversVserverPreProc";
69         String postMethodName =
70                 "DynamicAddCloudInfrastructureCloudRegionsCloudRegionTenantsTenantVserversVserverPostProc";
71         String topLevel = "CloudRegion";
72         testSpec(parse, HttpMethod.PUT, namespace, preMethodName, postMethodName, topLevel);
73
74     }
75
76     /**
77      * Test spec.
78      *
79      * @param info the info
80      * @param httpMethod the http method
81      * @param namespace the namespace
82      * @param preMethodName the pre method name
83      * @param postMethodName the post method name
84      * @param topLevel the top level
85      */
86     private void testSpec(URIToExtensionInformation info, HttpMethod httpMethod, String namespace, String preMethodName,
87             String postMethodName, String topLevel) {
88
89         String namespaceResult = info.getNamespace();
90         String methodNameResult = info.getMethodName(httpMethod, true);
91
92         assertEquals("namespace", namespace, namespaceResult);
93         assertEquals("preprocess method name", preMethodName, methodNameResult);
94         methodNameResult = info.getMethodName(httpMethod, false);
95
96         assertEquals("postprocess method name", postMethodName, methodNameResult);
97
98         String topLevelResult = info.getTopObject();
99
100         assertEquals("topLevel", topLevel, topLevelResult);
101     }
102
103 }