aboutsummaryrefslogtreecommitdiffstats
path: root/aai-resources/src/test/java/org/openecomp/aai/workarounds/LegacyURITransformerTest.java
blob: 25dc6484a2e8480afebcc1f4280151615a3a3ad8 (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
/*-
 * ============LICENSE_START=======================================================
 * org.openecomp.aai
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. 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=========================================================
 */

package org.openecomp.aai.workarounds;

import static org.junit.Assert.assertEquals;

import java.io.File;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;

import org.junit.BeforeClass;
import org.junit.Test;

import org.openecomp.aai.introspection.Version;


public class LegacyURITransformerTest {

	private LegacyURITransformer uriTransformer = LegacyURITransformer.getInstance();
	private String fromSuccess = "http://myhostname.com:8443/aai/{version}/cloud-infrastructure/tenants/tenant/key1/vservers/vserver/key2";
	private String toSuccess = "http://myhostname.com:8443/aai/servers/{version}/key1/vservers/key2";

	/**
	 * Configure.
	 */
	@BeforeClass
	public static void configure() {
		System.setProperty("AJSC_HOME", ".");
		System.setProperty("BUNDLECONFIG_DIR", "bundleconfig-local");
	}
	
	
	/**
	 * Test spec.
	 *
	 * @param version the version
	 * @param toExpected the to expected
	 * @param fromExpected the from expected
	 * @throws URISyntaxException 
	 * @throws MalformedURLException the malformed URL exception
	 */
	public void testSpec(Version version, String toExpected, String fromExpected) throws URISyntaxException   {
		
		URI toExpectedUri = new URI(toExpected.replace("{version}",version.toString()));
		URI fromExpectedUri = new URI(fromExpected.replace("{version}",version.toString()));
		
		URI result = toLegacyURISpec(version, fromExpectedUri);

		assertEquals("to", toExpectedUri, result);
		
		result = fromLegacyURISpec(version, toExpectedUri);

		assertEquals("from", fromExpectedUri, result);
	}
	
	
    /**
     * To legacy URL spec.
     *
     * @param version the version
     * @param url the url
     * @return the url
     * @throws URISyntaxException 
     * @throws MalformedURLException the malformed URL exception
     */
    public URI toLegacyURISpec(Version version, URI uri) throws URISyntaxException  {
	    return uri;
	}
    
    /**
     * From legacy URL spec.
     *
     * @param version the version
     * @param url the url
     * @return the url
     * @throws URISyntaxException 
     * @throws MalformedURLException the malformed URL exception
     */
    public URI fromLegacyURISpec(Version version, URI uri) throws URISyntaxException  {
	return uri;
    }
	
	
}