/core/src/test/java/org/jclouds/config/ContextLinkingTest.java

http://github.com/jclouds/jclouds · Java · 69 lines · 42 code · 11 blank · 16 comment · 0 complexity · 429f06bff8c7dc04d73d91f81ab325b9 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.config;
  18. import static org.jclouds.config.ContextLinking.CONTEXT_SUPPLIER;
  19. import static org.jclouds.config.ContextLinking.VIEW_SUPPLIER;
  20. import static org.jclouds.config.ContextLinking.linkContext;
  21. import static org.jclouds.config.ContextLinking.linkView;
  22. import static org.jclouds.providers.AnonymousProviderMetadata.forApiOnEndpoint;
  23. import static org.testng.Assert.assertNotNull;
  24. import java.io.Closeable;
  25. import org.jclouds.Context;
  26. import org.jclouds.ContextBuilder;
  27. import org.jclouds.http.IntegrationTestClient;
  28. import org.jclouds.internal.BaseView;
  29. import org.testng.annotations.Test;
  30. import com.google.common.reflect.TypeToken;
  31. import com.google.inject.Guice;
  32. import com.google.inject.Injector;
  33. import com.google.inject.Key;
  34. import com.google.inject.name.Names;
  35. @Test(groups = "unit", testName = "ContextLinkingTest")
  36. public class ContextLinkingTest {
  37. @Test
  38. public void testLinkedViewBindsViewAndContextSuppliers() {
  39. Injector injector = Guice.createInjector(linkView(new DummyView(contextFor(IntegrationTestClient.class))));
  40. assertNotNull(injector.getExistingBinding(Key.get(CONTEXT_SUPPLIER, Names.named("IntegrationTestClient"))));
  41. assertNotNull(injector.getExistingBinding(Key.get(VIEW_SUPPLIER, Names.named("IntegrationTestClient"))));
  42. }
  43. @Test
  44. public void testLinkedContextBindsContextSupplier() {
  45. Injector injector = Guice.createInjector(linkContext(contextFor(IntegrationTestClient.class)));
  46. assertNotNull(injector.getExistingBinding(Key.get(CONTEXT_SUPPLIER, Names.named("IntegrationTestClient"))));
  47. }
  48. private static class DummyView extends BaseView {
  49. protected DummyView(Context context) {
  50. super(context, new TypeToken<Context>() {
  51. private static final long serialVersionUID = 1L;
  52. });
  53. }
  54. }
  55. private static Context contextFor(Class<? extends Closeable> apiClass) {
  56. return ContextBuilder.newBuilder(forApiOnEndpoint(apiClass, "http://localhost")).build();
  57. }
  58. }