/apis/vcloud/src/test/java/org/jclouds/vcloud/suppliers/OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefaultTest.java

http://github.com/jclouds/jclouds · Java · 115 lines · 71 code · 20 blank · 24 comment · 0 complexity · 200eccd5f112ed8f7435d7dfdb171a30 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.suppliers;
  18. import static org.easymock.EasyMock.createMock;
  19. import static org.testng.Assert.assertEquals;
  20. import java.util.NoSuchElementException;
  21. import org.jclouds.config.ValueOfConfigurationKeyOrNull;
  22. import org.jclouds.vcloud.domain.ReferenceType;
  23. import org.jclouds.vcloud.domain.internal.ReferenceTypeImpl;
  24. import org.testng.annotations.Test;
  25. import com.google.common.base.Predicates;
  26. import com.google.common.collect.ImmutableList;
  27. import com.google.common.collect.ImmutableSet;
  28. import com.google.inject.AbstractModule;
  29. import com.google.inject.Guice;
  30. import com.google.inject.name.Names;
  31. /**
  32. * Tests behavior of
  33. * {@code OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefault}
  34. *
  35. * @author Adrian Cole
  36. */
  37. // NOTE:without testName, this will not call @Before* and fail w/NPE during
  38. // surefire
  39. @Test(groups = "unit", testName = "OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefaultTest")
  40. public class OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefaultTest {
  41. ValueOfConfigurationKeyOrNull valueOfConfigurationKeyOrNull = Guice.createInjector().getInstance(
  42. ValueOfConfigurationKeyOrNull.class);
  43. @Test(expectedExceptions = IllegalArgumentException.class)
  44. public void testIllegalArgumentWhenResourcesEmpty() {
  45. new OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefault(valueOfConfigurationKeyOrNull, "foo",
  46. Predicates.<ReferenceType> alwaysTrue()).apply(ImmutableSet.<ReferenceType> of());
  47. }
  48. @Test
  49. public void testReturnsOnlyResource() {
  50. ReferenceType reference = createMock(ReferenceType.class);
  51. assertEquals(new OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefault(valueOfConfigurationKeyOrNull,
  52. "foo", Predicates.<ReferenceType> alwaysTrue()).apply(ImmutableSet.<ReferenceType> of(reference)),
  53. reference);
  54. }
  55. @Test
  56. public void testReturnsFirstResourceWhenConfigurationUnspecified() {
  57. ReferenceType reference1 = createMock(ReferenceType.class);
  58. ReferenceType reference2 = createMock(ReferenceType.class);
  59. assertEquals(new OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefault(valueOfConfigurationKeyOrNull,
  60. "foo", Predicates.<ReferenceType> alwaysTrue()).apply(ImmutableList.<ReferenceType> of(reference1,
  61. reference2)), reference1);
  62. }
  63. @Test
  64. public void testReturnsResourceMatchingDefaultPredicateWhenConfigurationUnspecified() {
  65. ReferenceType reference1 = createMock(ReferenceType.class);
  66. ReferenceType reference2 = createMock(ReferenceType.class);
  67. assertEquals(new OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefault(valueOfConfigurationKeyOrNull,
  68. "foo", Predicates.equalTo(reference2)).apply(ImmutableList.<ReferenceType> of(reference1, reference2)),
  69. reference2);
  70. }
  71. @Test
  72. public void testReturnsResourceWithNameMatchingConfigurationKey() {
  73. ReferenceType reference1 = new ReferenceTypeImpl("travis tritt", null, null);
  74. ReferenceType reference2 = new ReferenceTypeImpl("hail mary", null, null);
  75. assertEquals(
  76. new OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefault(Guice.createInjector(
  77. new AbstractModule() {
  78. protected void configure() {
  79. bindConstant().annotatedWith(Names.named("foo")).to(".*mary.*");
  80. }
  81. }).getInstance(ValueOfConfigurationKeyOrNull.class), "foo", Predicates.<ReferenceType> alwaysTrue()).apply(ImmutableList
  82. .<ReferenceType> of(reference1, reference2)), reference2);
  83. }
  84. @Test(expectedExceptions = NoSuchElementException.class)
  85. public void testThrowsNoSuchElementWhenNoneMatchConfigurationKey() {
  86. ReferenceType reference1 = new ReferenceTypeImpl("travis tritt", null, null);
  87. ReferenceType reference2 = new ReferenceTypeImpl("hail mary", null, null);
  88. new OnlyReferenceTypeFirstWithNameMatchingConfigurationKeyOrDefault(Guice.createInjector(new AbstractModule() {
  89. protected void configure() {
  90. bindConstant().annotatedWith(Names.named("foo")).to(".*happy.*");
  91. }
  92. }).getInstance(ValueOfConfigurationKeyOrNull.class), "foo", Predicates.<ReferenceType> alwaysTrue())
  93. .apply(ImmutableList.<ReferenceType> of(reference1, reference2));
  94. }
  95. }