/apis/openstack-nova/src/test/java/org/jclouds/openstack/nova/v2_0/compute/loaders/CreateUniqueKeyPairTest.java

http://github.com/jclouds/jclouds · Java · 108 lines · 65 code · 27 blank · 16 comment · 0 complexity · b33fa78b907b92a6a906bda8c4103f73 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.compute.loaders;
  18. import static org.easymock.EasyMock.createMock;
  19. import static org.easymock.EasyMock.expect;
  20. import static org.easymock.EasyMock.replay;
  21. import static org.easymock.EasyMock.verify;
  22. import static org.testng.Assert.assertEquals;
  23. import java.net.UnknownHostException;
  24. import org.jclouds.openstack.nova.v2_0.NovaApi;
  25. import org.jclouds.openstack.nova.v2_0.domain.KeyPair;
  26. import org.jclouds.openstack.nova.v2_0.domain.regionscoped.RegionAndName;
  27. import org.jclouds.openstack.nova.v2_0.extensions.KeyPairApi;
  28. import org.testng.annotations.Test;
  29. import com.google.common.base.Optional;
  30. import com.google.common.base.Supplier;
  31. import com.google.common.base.Suppliers;
  32. import com.google.inject.AbstractModule;
  33. import com.google.inject.Guice;
  34. import com.google.inject.TypeLiteral;
  35. @Test(groups = "unit", testName = "CreateUniqueKeyPairTest")
  36. public class CreateUniqueKeyPairTest {
  37. @Test
  38. public void testApply() throws UnknownHostException {
  39. final NovaApi api = createMock(NovaApi.class);
  40. KeyPairApi keyApi = createMock(KeyPairApi.class);
  41. KeyPair pair = createMock(KeyPair.class);
  42. Optional optKeyApi = Optional.of(keyApi);
  43. expect(api.getKeyPairApi("region")).andReturn(optKeyApi).atLeastOnce();
  44. expect(keyApi.create("group-1")).andReturn(pair);
  45. replay(api, keyApi);
  46. CreateUniqueKeyPair parser = Guice.createInjector(new AbstractModule() {
  47. @Override
  48. protected void configure() {
  49. bind(new TypeLiteral<Supplier<String>>() {
  50. }).toInstance(Suppliers.ofInstance("1"));
  51. bind(NovaApi.class).toInstance(api);
  52. }
  53. }).getInstance(CreateUniqueKeyPair.class);
  54. assertEquals(parser.load(RegionAndName.fromRegionAndName("region", "group")), pair);
  55. verify(api, keyApi);
  56. }
  57. @Test
  58. public void testApplyWithIllegalStateException() throws UnknownHostException {
  59. final NovaApi api = createMock(NovaApi.class);
  60. KeyPairApi keyApi = createMock(KeyPairApi.class);
  61. @SuppressWarnings("unchecked")
  62. final Supplier<String> uniqueIdSupplier = createMock(Supplier.class);
  63. KeyPair pair = createMock(KeyPair.class);
  64. expect(api.getKeyPairApi("region")).andReturn((Optional) Optional.of(keyApi)).atLeastOnce();
  65. expect(uniqueIdSupplier.get()).andReturn("1");
  66. expect(keyApi.create("group-1")).andThrow(new IllegalStateException());
  67. expect(uniqueIdSupplier.get()).andReturn("2");
  68. expect(keyApi.create("group-2")).andReturn(pair);
  69. replay(api, keyApi, uniqueIdSupplier);
  70. CreateUniqueKeyPair parser = Guice.createInjector(new AbstractModule() {
  71. @Override
  72. protected void configure() {
  73. bind(new TypeLiteral<Supplier<String>>() {
  74. }).toInstance(uniqueIdSupplier);
  75. bind(NovaApi.class).toInstance(api);
  76. }
  77. }).getInstance(CreateUniqueKeyPair.class);
  78. assertEquals(parser.load(RegionAndName.fromRegionAndName("region", "group")), pair);
  79. verify(api, keyApi, uniqueIdSupplier);
  80. }
  81. }