blob: 46e18a0e83fe859e6f38bf523665d37a9c2c6168 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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.
package com.cloud.network.cisco;
import static org.junit.Assert.assertTrue;
import java.util.Map;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import com.cloud.utils.exception.ExecutionException;
@Ignore("Requires actual VNMC to connect to")
public class CiscoVnmcConnectionTest {
static CiscoVnmcConnectionImpl connection;
static String tenantName = "TenantE";
static Map<String, String> fwDns = null;
@BeforeClass
public static void setUpClass() throws Exception {
connection = new CiscoVnmcConnectionImpl("10.223.56.5", "admin", "C1sco123");
boolean response = connection.login();
assertTrue(response);
}
@Test
public void testLogin() throws ExecutionException {
boolean response = connection.login();
assertTrue(response);
}
@Test
public void testCreateTenant() throws ExecutionException {
boolean response = connection.createTenant(tenantName);
assertTrue(response);
}
@Test
public void testCreateTenantVDC() throws ExecutionException {
boolean response = connection.createTenantVDC(tenantName);
assertTrue(response);
}
@Test
public void testCreateTenantVDCEdgeDeviceProfile() throws ExecutionException {
boolean response = connection.createTenantVDCEdgeDeviceProfile(tenantName);
assertTrue(response);
}
@Test
public void testCreateTenantVDCEdgeDeviceRoutePolicy() throws ExecutionException {
boolean response = connection.createTenantVDCEdgeStaticRoutePolicy(tenantName);
assertTrue(response);
}
@Test
public void testCreateTenantVDCEdgeDeviceRoute() throws ExecutionException {
boolean response = connection.createTenantVDCEdgeStaticRoute(tenantName, "10.223.136.1", "0.0.0.0", "0.0.0.0");
assertTrue(response);
}
@Test
public void testAssociateRoutePolicyWithEdgeProfile() throws ExecutionException {
boolean response = connection.associateTenantVDCEdgeStaticRoutePolicy(tenantName);
assertTrue(response);
}
@Test
public void testAssociateTenantVDCEdgeDhcpPolicy() throws ExecutionException {
boolean response = connection.associateTenantVDCEdgeDhcpPolicy(tenantName, "Edge_Inside");
assertTrue(response);
}
@Test
public void testCreateTenantVDCEdgeDhcpPolicy() throws ExecutionException {
boolean response = connection.createTenantVDCEdgeDhcpPolicy(tenantName, "10.1.1.2", "10.1.1.254", "255.255.255.0", "4.4.4.4", tenantName + ".net");
assertTrue(response);
}
@Test
public void testCreateTenantVDCEdgeSecurityProfile() throws ExecutionException {
boolean response = connection.createTenantVDCEdgeSecurityProfile(tenantName);
assertTrue(response);
}
@Test
public void testCreateTenantVDCSourceNatIpPool() throws ExecutionException {
boolean response = connection.createTenantVDCSourceNatIpPool(tenantName, "1", "10.223.136.10");
assertTrue(response);
}
@Test
public void testCreateTenantVDCSourceNatPolicy() throws ExecutionException {
boolean response = connection.createTenantVDCSourceNatPolicy(tenantName, "1");
assertTrue(response);
response = connection.createTenantVDCSourceNatPolicyRef(tenantName, "1");
assertTrue(response);
response = connection.createTenantVDCSourceNatRule(tenantName, "1", "10.1.1.2", "10.1.1.254");
assertTrue(response);
}
@Test
public void testCreateTenantVDCNatPolicySet() throws ExecutionException {
boolean response = connection.createTenantVDCNatPolicySet(tenantName);
assertTrue(response);
}
@Test
public void testAssociateNatPolicySet() throws ExecutionException {
boolean response = connection.associateNatPolicySet(tenantName);
assertTrue(response);
}
@Test
public void testCreateEdgeFirewall() throws ExecutionException {
boolean response = connection.createEdgeFirewall(tenantName, "44.44.44.44", "192.168.1.1", "255.255.255.0", "255.255.255.192");
assertTrue(response);
}
@Test
public void testListUnassocAsa1000v() throws ExecutionException {
Map<String, String> response = connection.listUnAssocAsa1000v();
assertTrue(response.size() >= 0);
fwDns = response;
}
@Test
public void assocAsa1000v() throws ExecutionException {
boolean result = connection.assignAsa1000v(tenantName, fwDns.entrySet().iterator().next().getValue());
assertTrue(result);
}
}