/apis/ec2/src/test/java/org/jclouds/ec2/xml/BaseEC2HandlerTest.java

http://github.com/jclouds/jclouds · Java · 82 lines · 55 code · 11 blank · 16 comment · 1 complexity · 11c5fd69fb3bd09de146e5bb7a28d108 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.ec2.xml;
  18. import java.util.Map;
  19. import java.util.Set;
  20. import javax.inject.Singleton;
  21. import org.jclouds.aws.domain.Region;
  22. import org.jclouds.http.functions.BaseHandlerTest;
  23. import org.jclouds.http.functions.ParseSax;
  24. import org.jclouds.http.functions.config.SaxParserModule;
  25. import org.jclouds.location.Zone;
  26. import org.jclouds.util.Suppliers2;
  27. import org.testng.annotations.BeforeTest;
  28. import org.testng.annotations.Test;
  29. import com.google.common.base.Supplier;
  30. import com.google.common.base.Suppliers;
  31. import com.google.common.collect.ImmutableMap;
  32. import com.google.common.collect.ImmutableSet;
  33. import com.google.common.collect.Maps;
  34. import com.google.inject.AbstractModule;
  35. import com.google.inject.Guice;
  36. import com.google.inject.Provides;
  37. @Test(groups = "unit")
  38. public abstract class BaseEC2HandlerTest extends BaseHandlerTest {
  39. protected String defaultRegion = Region.US_EAST_1;
  40. @BeforeTest
  41. @Override
  42. protected void setUpInjector() {
  43. injector = Guice.createInjector(new SaxParserModule(), new AbstractModule() {
  44. @Override
  45. protected void configure() {
  46. }
  47. @Singleton
  48. @Provides
  49. @org.jclouds.location.Region
  50. Supplier<String> provideDefaultRegion() {
  51. return Suppliers.ofInstance(defaultRegion);
  52. }
  53. @Singleton
  54. @Provides
  55. @Zone
  56. Supplier<Map<String, Supplier<Set<String>>>> provideRegionToAvailabilityZoneMap() {
  57. return Suppliers.<Map<String, Supplier<Set<String>>>> ofInstance(Maps.transformValues(ImmutableMap
  58. .<String, Set<String>> of("us-east-1", ImmutableSet.of("us-east-1a")), Suppliers2
  59. .<Set<String>> ofInstanceFunction()));
  60. }
  61. @Singleton
  62. @Provides
  63. @Zone
  64. Supplier<Set<String>> provideZones() {
  65. return Suppliers.<Set<String>> ofInstance(ImmutableSet.of("us-east-1a"));
  66. }
  67. });
  68. factory = injector.getInstance(ParseSax.Factory.class);
  69. assert factory != null;
  70. }
  71. }