/apis/openstack-nova/src/test/java/org/jclouds/openstack/nova/v2_0/parse/ParseFloatingIPPoolListTest.java

http://github.com/jclouds/jclouds · Java · 51 lines · 29 code · 6 blank · 16 comment · 0 complexity · 7b2c0b07d212cda50a9760fcb0e0b7be MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.jclouds.openstack.nova.v2_0.parse;
  18. import com.google.common.collect.ImmutableSet;
  19. import com.google.inject.Guice;
  20. import com.google.inject.Injector;
  21. import org.jclouds.json.BaseSetParserTest;
  22. import org.jclouds.json.config.GsonModule;
  23. import org.jclouds.openstack.nova.v2_0.config.NovaParserModule;
  24. import org.jclouds.openstack.nova.v2_0.domain.FloatingIPPool;
  25. import org.jclouds.rest.annotations.SelectJson;
  26. import org.testng.annotations.Test;
  27. import javax.ws.rs.Consumes;
  28. import javax.ws.rs.core.MediaType;
  29. import java.util.Set;
  30. @Test(groups = "unit", testName = "ParseFloatingIPPoolListTest")
  31. public class ParseFloatingIPPoolListTest extends BaseSetParserTest<FloatingIPPool> {
  32. @Override
  33. public String resource() {
  34. return "/floatingippool_list.json";
  35. }
  36. @Override
  37. @SelectJson("floating_ip_pools")
  38. @Consumes(MediaType.APPLICATION_JSON)
  39. public Set<FloatingIPPool> expected() {
  40. return ImmutableSet.of(FloatingIPPool.builder().name("VLAN867").build());
  41. }
  42. protected Injector injector() {
  43. return Guice.createInjector(new NovaParserModule(), new GsonModule());
  44. }
  45. }