/providers/glesys/src/test/java/org/jclouds/glesys/parse/ParseIpAddressFromResponseTest.java

http://github.com/jclouds/jclouds · Java · 60 lines · 36 code · 8 blank · 16 comment · 0 complexity · ff4adce0837df176745099b9e504c05f 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.glesys.parse;
  18. import java.util.Set;
  19. import javax.ws.rs.Consumes;
  20. import javax.ws.rs.core.MediaType;
  21. import org.jclouds.glesys.config.GleSYSParserModule;
  22. import org.jclouds.json.BaseSetParserTest;
  23. import org.jclouds.json.config.GsonModule;
  24. import org.jclouds.rest.annotations.SelectJson;
  25. import org.testng.annotations.Test;
  26. import com.google.common.collect.ImmutableSet;
  27. import com.google.inject.Guice;
  28. import com.google.inject.Injector;
  29. @Test(groups = "unit", testName = "ParseIpAddressFromResponseTest")
  30. public class ParseIpAddressFromResponseTest extends BaseSetParserTest<String> {
  31. public static final Set<String> EXPECTED_IPS = ImmutableSet.of("109.74.10.13", "109.74.10.50", "109.74.10.109", "109.74.10.125",
  32. "109.74.10.131", "109.74.10.148", "109.74.10.171", "109.74.10.173", "109.74.10.191", "109.74.10.215",
  33. "109.74.10.216", "109.74.10.219", "109.74.10.223", "109.74.10.224", "109.74.10.236", "109.74.10.249",
  34. "109.74.11.49", "109.74.11.58", "109.74.11.62", "109.74.11.63", "109.74.11.73", "109.74.11.76",
  35. "109.74.11.86", "109.74.11.98", "109.74.11.118", "109.74.11.124", "109.74.11.131", "109.74.11.137",
  36. "109.74.11.146", "109.74.11.157", "109.74.11.159", "109.74.11.173", "109.74.11.178", "109.74.11.187",
  37. "109.74.11.190", "109.74.11.205", "109.74.11.213", "109.74.11.234", "109.74.11.236", "109.74.11.241",
  38. "109.74.11.243", "109.74.11.246", "109.74.11.247");
  39. @Override
  40. public String resource() {
  41. return "/ip_list_free.json";
  42. }
  43. @Override
  44. @SelectJson("ipaddresses")
  45. @Consumes(MediaType.APPLICATION_JSON)
  46. public Set<String> expected() {
  47. return EXPECTED_IPS;
  48. }
  49. protected Injector injector() {
  50. return Guice.createInjector(new GleSYSParserModule(), new GsonModule());
  51. }
  52. }