mirror of https://github.com/apache/jclouds.git
adding security group async client tests
This commit is contained in:
parent
1dcdb307c0
commit
14f2aa4e56
|
@ -18,13 +18,49 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.openstack.nova.v1_1.extensions;
|
package org.jclouds.openstack.nova.v1_1.extensions;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableMultimap;
|
||||||
|
import com.google.common.collect.ImmutableSet;
|
||||||
|
import org.jclouds.http.HttpRequest;
|
||||||
|
import org.jclouds.http.HttpResponse;
|
||||||
|
import org.jclouds.openstack.nova.v1_1.NovaClient;
|
||||||
|
import org.jclouds.openstack.nova.v1_1.internal.BaseNovaRestClientExpectTest;
|
||||||
|
import org.jclouds.openstack.nova.v1_1.parse.ParseSecurityGroupListTest;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
import java.net.URI;
|
||||||
|
|
||||||
|
import static org.testng.Assert.assertEquals;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests annotation parsing of {@code SecurityGroupAsyncClient}
|
* Tests annotation parsing of {@code SecurityGroupAsyncClient}
|
||||||
*
|
*
|
||||||
* @author Michael Arnold
|
* @author Michael Arnold
|
||||||
*/
|
*/
|
||||||
@Test(groups = "unit", testName = "SecurityGroupClientExpectTest")
|
@Test(groups = "unit", testName = "SecurityGroupClientExpectTest")
|
||||||
public class SecurityGroupClientExpectTest {
|
public class SecurityGroupClientExpectTest extends BaseNovaRestClientExpectTest {
|
||||||
|
public void testListSecurityGroupsWhenResponseIs2xx() throws Exception {
|
||||||
|
HttpRequest listSecurityGroups = HttpRequest
|
||||||
|
.builder()
|
||||||
|
.method("GET")
|
||||||
|
.endpoint(
|
||||||
|
URI.create("https://compute.north.host/v1.1/3456/os-security-groups"))
|
||||||
|
.headers(
|
||||||
|
ImmutableMultimap.<String, String> builder()
|
||||||
|
.put("Accept", "application/json")
|
||||||
|
.put("X-Auth-Token", authToken).build()).build();
|
||||||
|
|
||||||
|
HttpResponse listSecurityGroupsResponse = HttpResponse.builder().statusCode(200)
|
||||||
|
.payload(payloadFromResource("/securitygroups_list.json")).build();
|
||||||
|
|
||||||
|
NovaClient clientWhenSecurityGroupsExist = requestsSendResponses(
|
||||||
|
keystoneAuthWithAccessKeyAndSecretKey, responseWithKeystoneAccess,
|
||||||
|
listSecurityGroups, listSecurityGroupsResponse);
|
||||||
|
|
||||||
|
assertEquals(clientWhenSecurityGroupsExist.getConfiguredRegions(),
|
||||||
|
ImmutableSet.of("North"));
|
||||||
|
|
||||||
|
assertEquals(clientWhenSecurityGroupsExist.getSecurityGroupClientForRegion("North")
|
||||||
|
.listSecurityGroups().toString(), new ParseSecurityGroupListTest().expected()
|
||||||
|
.toString());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,114 @@
|
||||||
|
/**
|
||||||
|
* Licensed to jclouds, Inc. (jclouds) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. jclouds 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 org.jclouds.openstack.nova.v1_1.parse;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableMap;
|
||||||
|
import com.google.common.collect.ImmutableSet;
|
||||||
|
import com.google.common.collect.Maps;
|
||||||
|
import com.google.common.collect.Sets;
|
||||||
|
import com.google.inject.Guice;
|
||||||
|
import com.google.inject.Injector;
|
||||||
|
import org.jclouds.json.BaseParserTest;
|
||||||
|
import org.jclouds.json.BaseSetParserTest;
|
||||||
|
import org.jclouds.json.config.GsonModule;
|
||||||
|
import org.jclouds.openstack.domain.Resource;
|
||||||
|
import org.jclouds.openstack.nova.v1_1.config.NovaParserModule;
|
||||||
|
import org.jclouds.openstack.nova.v1_1.domain.SecurityGroup;
|
||||||
|
import org.jclouds.openstack.nova.v1_1.domain.SecurityGroupRule;
|
||||||
|
import org.jclouds.rest.annotations.SelectJson;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
import javax.ws.rs.Consumes;
|
||||||
|
import javax.ws.rs.core.MediaType;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import static org.testng.Assert.assertEquals;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Adrian Cole
|
||||||
|
*/
|
||||||
|
@Test(groups = "unit", testName = "ParseSecurityGroupListTest")
|
||||||
|
public class ParseSecurityGroupListTest extends BaseSetParserTest<SecurityGroup> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String resource() {
|
||||||
|
return "/securitygroup_list.json";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SelectJson("security_groups")
|
||||||
|
@Consumes(MediaType.APPLICATION_JSON)
|
||||||
|
public Set<SecurityGroup> expected() {
|
||||||
|
|
||||||
|
Map<String, String> anyCidr = ImmutableMap.<String, String> of("cidr", "0.0.0.0/0");
|
||||||
|
|
||||||
|
Set<SecurityGroupRule> securityGroupRules = ImmutableSet.<SecurityGroupRule> of(
|
||||||
|
SecurityGroupRule
|
||||||
|
.builder()
|
||||||
|
.fromPort(22)
|
||||||
|
.group(new HashMap<String, String>())
|
||||||
|
.ipProtocol(SecurityGroupRule.IpProtocol.TCP)
|
||||||
|
.toPort(22)
|
||||||
|
.parentGroupId("3")
|
||||||
|
.ipRange(anyCidr)
|
||||||
|
.id("107")
|
||||||
|
.build(),
|
||||||
|
SecurityGroupRule
|
||||||
|
.builder()
|
||||||
|
.fromPort(7600)
|
||||||
|
.group(new HashMap<String, String>())
|
||||||
|
.ipProtocol(SecurityGroupRule.IpProtocol.TCP)
|
||||||
|
.toPort(7600)
|
||||||
|
.parentGroupId("3")
|
||||||
|
.ipRange(anyCidr)
|
||||||
|
.id("118")
|
||||||
|
.build(),
|
||||||
|
SecurityGroupRule
|
||||||
|
.builder()
|
||||||
|
.fromPort(8084)
|
||||||
|
.group(new HashMap<String, String>())
|
||||||
|
.ipProtocol(SecurityGroupRule.IpProtocol.TCP)
|
||||||
|
.toPort(8084)
|
||||||
|
.parentGroupId("3")
|
||||||
|
.ipRange(anyCidr)
|
||||||
|
.id("119")
|
||||||
|
.build()
|
||||||
|
);
|
||||||
|
|
||||||
|
return ImmutableSet
|
||||||
|
.of(
|
||||||
|
SecurityGroup
|
||||||
|
.builder()
|
||||||
|
.description("description1")
|
||||||
|
.id("1")
|
||||||
|
.tenantId("tenant1")
|
||||||
|
.rules(securityGroupRules)
|
||||||
|
.name("name1")
|
||||||
|
.build()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Injector injector() {
|
||||||
|
return Guice.createInjector(new NovaParserModule(), new GsonModule());
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue