/labs/savvis-symphonyvpdc/src/test/java/org/jclouds/savvis/vpdc/xml/NetworkHandlerTest.java

http://github.com/jclouds/jclouds · Java · 74 lines · 43 code · 8 blank · 23 comment · 0 complexity · 264787bb70c2d479fa5271f5c042da48 MD5 · raw file

  1. /**
  2. * Licensed to jclouds, Inc. (jclouds) under one or more
  3. * contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. jclouds licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package org.jclouds.savvis.vpdc.xml;
  20. import static org.testng.Assert.assertEquals;
  21. import java.io.InputStream;
  22. import org.jclouds.http.functions.ParseSax;
  23. import org.jclouds.http.functions.ParseSax.Factory;
  24. import org.jclouds.http.functions.config.SaxParserModule;
  25. import org.jclouds.savvis.vpdc.domain.Network;
  26. import org.jclouds.savvis.vpdc.reference.VCloudMediaType;
  27. import org.testng.annotations.Test;
  28. import com.google.inject.Guice;
  29. import com.google.inject.Injector;
  30. /**
  31. * Tests behavior of {@code NetworkHandler}
  32. *
  33. * @author Adrian Cole
  34. */
  35. @Test(groups = "unit")
  36. public class NetworkHandlerTest {
  37. public void test() {
  38. InputStream is = getClass().getResourceAsStream("/network.xml");
  39. Injector injector = Guice.createInjector(new SaxParserModule());
  40. Factory factory = injector.getInstance(ParseSax.Factory.class);
  41. Network result = factory.create(injector.getInstance(NetworkHandler.class)).parse(is);
  42. assertEquals(
  43. result.toString(),
  44. Network.builder().type(VCloudMediaType.NETWORK_XML).name("VM-Tier01").gateway("1.1.1.1")
  45. .netmask("255.255.255.240").build().toString());
  46. }
  47. public void testNat() {
  48. InputStream is = getClass().getResourceAsStream("/network-nat.xml");
  49. Injector injector = Guice.createInjector(new SaxParserModule());
  50. Factory factory = injector.getInstance(ParseSax.Factory.class);
  51. Network result = factory.create(injector.getInstance(NetworkHandler.class)).parse(is);
  52. assertEquals(result.toString(),
  53. Network.builder().type(VCloudMediaType.NETWORK_XML).name("VM Tier01").gateway("1.1.1.1").netmask("2.2.2.2")
  54. .internalToExternalNATRule("3.3.3.3", "4.4.4.4").internalToExternalNATRule("3.3.3.4", "4.4.4.5")
  55. .build().toString());
  56. }
  57. public void tesWhenNoVAppsInNetworkSetsAllZerosToGatewayAndNetmask() {
  58. InputStream is = getClass().getResourceAsStream("/network-unused.xml");
  59. Injector injector = Guice.createInjector(new SaxParserModule());
  60. Factory factory = injector.getInstance(ParseSax.Factory.class);
  61. Network result = factory.create(injector.getInstance(NetworkHandler.class)).parse(is);
  62. assertEquals(result.toString(),
  63. Network.builder().type(VCloudMediaType.NETWORK_XML).name("VM Tier01").gateway("0.0.0.0").netmask("0.0.0.0")
  64. .build().toString());
  65. }
  66. }