Applying license changes to all files
[appc.git] / appc-adapters / appc-iaas-adapter / appc-iaas-adapter-bundle / src / test / java / org / openecomp / appc / adapter / iaas / impl / TestIdentityUrl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25
26 package org.openecomp.appc.adapter.iaas.impl;
27
28 import static org.junit.Assert.assertNotNull;
29
30 import java.util.Properties;
31
32 import org.junit.BeforeClass;
33 import org.junit.Test;
34 import org.openecomp.appc.adapter.iaas.impl.IdentityURL;
35 import org.openecomp.appc.configuration.ConfigurationFactory;
36
37 public class TestIdentityUrl {
38
39     private static String URL;
40
41     @BeforeClass
42     public static void before() {
43         Properties props = ConfigurationFactory.getConfiguration().getProperties();
44         URL = props.getProperty("");
45     }
46
47     /**
48      * Test that we can parse and interpret valid URLs
49      */
50     @Test
51     public void testValidURLs() {
52         URL = "http://192.168.1.1:5000/v2.0/";
53         IdentityURL idurl = IdentityURL.parseURL(URL);
54         assertNotNull(idurl);
55         System.out.println(idurl.getVersion());
56     }
57 }