/extensions/servlet/test/com/google/inject/servlet/TransferRequestIntegrationTest.java

https://code.google.com/ · Java · 122 lines · 86 code · 17 blank · 19 comment · 1 complexity · 256a0d7b6d3d5135573b60f9daf083fd MD5 · raw file

  1. /**
  2. * Copyright (C) 2012 Google Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.google.inject.servlet;
  17. import com.google.common.collect.ImmutableMap;
  18. import com.google.inject.AbstractModule;
  19. import com.google.inject.Guice;
  20. import com.google.inject.Injector;
  21. import com.google.inject.Key;
  22. import com.google.inject.OutOfScopeException;
  23. import com.google.inject.Provides;
  24. import junit.framework.TestCase;
  25. import java.util.concurrent.Callable;
  26. import java.util.concurrent.ExecutionException;
  27. import java.util.concurrent.ExecutorService;
  28. import java.util.concurrent.Executors;
  29. import java.util.concurrent.Future;
  30. // TODO: Add test for HTTP transferring.
  31. /**
  32. * Tests transferring of entire request scope.
  33. */
  34. public class TransferRequestIntegrationTest extends TestCase {
  35. private final Callable<Boolean> FALSE_CALLABLE = new Callable<Boolean>() {
  36. @Override public Boolean call() {
  37. return false;
  38. }
  39. };
  40. public void testTransferHttp_outOfScope() {
  41. try {
  42. ServletScopes.transferRequest(FALSE_CALLABLE);
  43. fail();
  44. } catch (OutOfScopeException expected) {}
  45. }
  46. public void testTransferNonHttp_outOfScope() {
  47. try {
  48. ServletScopes.transferRequest(FALSE_CALLABLE);
  49. fail();
  50. } catch (OutOfScopeException expected) {}
  51. }
  52. public void testTransferNonHttpRequest() throws Exception {
  53. final Injector injector = Guice.createInjector(new AbstractModule() {
  54. @Override protected void configure() {
  55. bindScope(RequestScoped.class, ServletScopes.REQUEST);
  56. }
  57. @Provides @RequestScoped Object provideObject() {
  58. return new Object();
  59. }
  60. });
  61. Callable<Callable<Boolean>> callable = new Callable<Callable<Boolean>>() {
  62. @Override public Callable<Boolean> call() {
  63. final Object original = injector.getInstance(Object.class);
  64. return ServletScopes.transferRequest(new Callable<Boolean>() {
  65. @Override public Boolean call() {
  66. return original == injector.getInstance(Object.class);
  67. }
  68. });
  69. }
  70. };
  71. ImmutableMap<Key<?>, Object> seedMap = ImmutableMap.of();
  72. Callable<Boolean> transfer = ServletScopes.scopeRequest(callable, seedMap).call();
  73. ExecutorService executor = Executors.newSingleThreadExecutor();
  74. assertTrue(executor.submit(transfer).get());
  75. executor.shutdownNow();
  76. }
  77. public void testTransferNonHttpRequest_concurrentUseFails() throws Exception {
  78. Callable<Boolean> callable = new Callable<Boolean>() {
  79. @Override public Boolean call() throws Exception {
  80. ExecutorService executor = Executors.newSingleThreadExecutor();
  81. try {
  82. Future<Boolean> future = executor.submit(ServletScopes.transferRequest(FALSE_CALLABLE));
  83. try {
  84. return future.get();
  85. } catch (ExecutionException e) {
  86. return e.getCause() instanceof IllegalStateException;
  87. }
  88. } finally {
  89. executor.shutdownNow();
  90. }
  91. }
  92. };
  93. ImmutableMap<Key<?>, Object> seedMap = ImmutableMap.of();
  94. assertTrue(ServletScopes.scopeRequest(callable, seedMap).call());
  95. }
  96. public void testTransferNonHttpRequest_concurrentUseSameThreadOk() throws Exception {
  97. Callable<Boolean> callable = new Callable<Boolean>() {
  98. @Override public Boolean call() throws Exception {
  99. return ServletScopes.transferRequest(FALSE_CALLABLE).call();
  100. }
  101. };
  102. ImmutableMap<Key<?>, Object> seedMap = ImmutableMap.of();
  103. assertFalse(ServletScopes.scopeRequest(callable, seedMap).call());
  104. }
  105. }