2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * Copyright (C) 2017 Amdocs
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END=========================================================
20 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
25 package org.openecomp.appc.adapter.iaas.impl;
27 import static org.junit.Assert.assertEquals;
28 import static org.junit.Assert.assertNull;
30 import java.util.Properties;
32 import org.junit.BeforeClass;
33 import org.junit.Test;
34 import org.openecomp.appc.adapter.iaas.impl.VMURL;
35 import org.openecomp.appc.configuration.ConfigurationFactory;
37 public class TestVMURL {
39 private static String IP;
40 private static String PORT;
41 private static String TENANTID;
42 private static String VMID;
43 private static String URL;
46 public static void before() {
49 TENANTID = "abcde12345fghijk6789lmnopq123rst";
50 VMID = "abc12345-1234-5678-890a-abcdefg12345";
51 URL = String.format("http://%s:%s/v2/%s/servers/%s", IP, PORT, TENANTID, VMID);
55 * Test that we can parse and interpret valid URLs
58 public void testValidURLs() {
59 VMURL url = VMURL.parseURL(URL);
61 assertEquals("http", url.getScheme());
62 assertEquals(IP, url.getHost());
63 assertEquals(PORT, url.getPort());
64 assertEquals(TENANTID, url.getTenantId());
65 assertEquals(VMID, url.getServerId());
67 url = VMURL.parseURL(String.format("http://%s/v2/%s/servers/%s", IP, TENANTID, VMID));
68 assertEquals("http", url.getScheme());
69 assertEquals(IP, url.getHost());
70 assertNull(url.getPort());
71 assertEquals(TENANTID, url.getTenantId());
72 assertEquals(VMID, url.getServerId());
76 * Test that we ignore and return null for invalid URLs
79 public void testInvalidURLs() {
80 VMURL url = VMURL.parseURL(null);
83 url = VMURL.parseURL(String.format("%s:%s/v2/%s/servers/%s", IP, PORT, TENANTID, VMID));
86 url = VMURL.parseURL(String.format("http:/%s:%s/v2/%s/servers/%s", IP, PORT, TENANTID, VMID));
89 url = VMURL.parseURL(String.format("http:///%s:%s/v2/%s/servers/%s", IP, PORT, TENANTID, VMID));
92 url = VMURL.parseURL(String.format("http://v2/%s/servers/%s", TENANTID, VMID));
95 url = VMURL.parseURL(String.format("%s:%s/%s/servers/%s", IP, PORT, TENANTID, VMID));
98 url = VMURL.parseURL(String.format("%s:%s/v2/servers/%s", IP, PORT, VMID));
101 url = VMURL.parseURL(String.format("%s:%s/v2/%s/%s", IP, PORT, TENANTID, VMID));
104 url = VMURL.parseURL(String.format("%s:%s/v2/%s/servers", IP, PORT, TENANTID));