/apis/openstack-nova/src/test/java/org/jclouds/openstack/nova/v2_0/parse/ParseExtensionListNormalTest.java
Java | 76 lines | 51 code | 9 blank | 16 comment | 0 complexity | 301f3d78f83fdf9b0242a0384d3b1a6c MD5 | raw file
- /*
- * 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 org.jclouds.openstack.nova.v2_0.parse;
- import java.net.URI;
- import java.util.Set;
- import javax.ws.rs.Consumes;
- import javax.ws.rs.core.MediaType;
- import org.jclouds.date.internal.SimpleDateFormatDateService;
- import org.jclouds.json.BaseSetParserTest;
- import org.jclouds.json.config.GsonModule;
- import org.jclouds.openstack.nova.v2_0.config.NovaParserModule;
- import org.jclouds.openstack.v2_0.domain.Extension;
- import org.jclouds.openstack.v2_0.domain.Link;
- import org.jclouds.rest.annotations.SelectJson;
- import org.testng.annotations.Test;
- import com.google.common.collect.ImmutableSet;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- @Test(groups = "unit", testName = "ParseExtensionListNormalTest")
- public class ParseExtensionListNormalTest extends BaseSetParserTest<Extension> {
- @Override
- public String resource() {
- return "/extension_list_normal.json";
- }
- @Override
- @SelectJson("extensions")
- @Consumes(MediaType.APPLICATION_JSON)
- public Set<Extension> expected() {
- return ImmutableSet.of(
- Extension.builder().alias("os-keypairs").name("Keypairs").namespace(URI.create("http://docs.openstack.org/ext/keypairs/api/v1.1"))
- .updated(new SimpleDateFormatDateService().iso8601SecondsDateParse("2011-08-08T00:00:00+00:00")).description("Keypair Support")
- .links(Link.builder().relation(Link.Relation.SELF).href(URI.create("http://docs.openstack.org/ext/keypairs/api/v1.1")).build())
- .build(),
- Extension.builder().alias("os-volumes").name("Volumes").namespace(URI.create("http://docs.openstack.org/ext/volumes/api/v1.1"))
- .updated(new SimpleDateFormatDateService().iso8601SecondsDateParse("2011-03-25T00:00:00+00:00")).description("Volumes support")
- .links(Link.builder().relation(Link.Relation.SELF).href(URI.create("http://docs.openstack.org/ext/volumes/api/v1.1")).build())
- .build(),
- Extension.builder().alias("security_groups").name("SecurityGroups")
- .namespace(URI.create("http://docs.openstack.org/ext/securitygroups/api/v1.1"))
- .updated(new SimpleDateFormatDateService().iso8601SecondsDateParse("2011-07-21T00:00:00+00:00"))
- .description("Security group support")
- .links(Link.builder().relation(Link.Relation.SELF).href(URI.create("http://docs.openstack.org/ext/securitygroups/api/v1.1")).build())
- .build(),
- Extension.builder().alias("os-floating-ips").name("Floating_ips")
- .namespace(URI.create("http://docs.openstack.org/ext/floating_ips/api/v1.1"))
- .updated(new SimpleDateFormatDateService().iso8601SecondsDateParse("2011-06-16T00:00:00+00:00")).description("Floating IPs support")
- .links(Link.builder().relation(Link.Relation.SELF).href(URI.create("http://docs.openstack.org/ext/floating_ips/api/v1.1")).build())
- .build());
- }
- protected Injector injector() {
- return Guice.createInjector(new NovaParserModule(), new GsonModule());
- }
- }