/apis/vcloud/src/test/java/org/jclouds/vcloud/options/InstantiateVAppTemplateOptionsTest.java

http://github.com/jclouds/jclouds · Java · 74 lines · 43 code · 10 blank · 21 comment · 0 complexity · c83c1c16c40d61d44ba3c52024a2f0cf 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.vcloud.options;
  18. import static org.jclouds.vcloud.options.InstantiateVAppTemplateOptions.Builder.addNetworkConfig;
  19. import static org.jclouds.vcloud.options.InstantiateVAppTemplateOptions.Builder.description;
  20. import static org.testng.Assert.assertEquals;
  21. import java.net.URI;
  22. import org.jclouds.http.functions.config.SaxParserModule;
  23. import org.jclouds.vcloud.domain.network.FenceMode;
  24. import org.jclouds.vcloud.domain.network.NetworkConfig;
  25. import org.testng.annotations.Test;
  26. import com.google.common.collect.Iterables;
  27. import com.google.inject.Guice;
  28. import com.google.inject.Injector;
  29. /**
  30. * Tests behavior of {@code InstantiateVAppTemplateOptions}
  31. *
  32. * @author Adrian Cole
  33. */
  34. @Test(groups = "unit")
  35. public class InstantiateVAppTemplateOptionsTest {
  36. Injector injector = Guice.createInjector(new SaxParserModule());
  37. @Test
  38. public void testAddNetworkConfig() {
  39. InstantiateVAppTemplateOptions options = new InstantiateVAppTemplateOptions();
  40. options.addNetworkConfig(new NetworkConfig("default", URI.create("http://localhost"), FenceMode.BRIDGED));
  41. assertEquals(Iterables.get(options.getNetworkConfig(), 0).getNetworkName(), "default");
  42. assertEquals(Iterables.get(options.getNetworkConfig(), 0).getParentNetwork(), URI.create("http://localhost"));
  43. assertEquals(Iterables.get(options.getNetworkConfig(), 0).getFenceMode(), FenceMode.BRIDGED);
  44. }
  45. @Test
  46. public void testAddNetworkConfigStatic() {
  47. InstantiateVAppTemplateOptions options = addNetworkConfig(new NetworkConfig("default",
  48. URI.create("http://localhost"), FenceMode.BRIDGED));
  49. assertEquals(Iterables.get(options.getNetworkConfig(), 0).getNetworkName(), "default");
  50. assertEquals(Iterables.get(options.getNetworkConfig(), 0).getParentNetwork(), URI.create("http://localhost"));
  51. assertEquals(Iterables.get(options.getNetworkConfig(), 0).getFenceMode(), FenceMode.BRIDGED);
  52. }
  53. @Test
  54. public void testDescription() {
  55. InstantiateVAppTemplateOptions options = new InstantiateVAppTemplateOptions();
  56. options.description("foo");
  57. assertEquals(options.getDescription(), "foo");
  58. }
  59. @Test
  60. public void testDescriptionStatic() {
  61. InstantiateVAppTemplateOptions options = description("foo");
  62. assertEquals(options.getDescription(), "foo");
  63. }
  64. }