/driver-core/src/test/functional/com/mongodb/internal/async/client/Fixture.java

http://github.com/mongodb/mongo-java-driver · Java · 180 lines · 139 code · 22 blank · 19 comment · 14 complexity · 0414f7dc00c2f9853a524393acd663ae MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, 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.mongodb.internal.async.client;
  17. import com.mongodb.ClusterFixture;
  18. import com.mongodb.ConnectionString;
  19. import com.mongodb.MongoClientSettings;
  20. import com.mongodb.MongoCommandException;
  21. import com.mongodb.MongoInterruptedException;
  22. import com.mongodb.MongoNamespace;
  23. import com.mongodb.MongoTimeoutException;
  24. import com.mongodb.async.FutureResultCallback;
  25. import com.mongodb.connection.AsynchronousSocketChannelStreamFactoryFactory;
  26. import com.mongodb.connection.StreamFactoryFactory;
  27. import com.mongodb.connection.TlsChannelStreamFactoryFactory;
  28. import org.bson.Document;
  29. import static com.mongodb.ClusterFixture.getSslSettings;
  30. import static com.mongodb.connection.ClusterType.SHARDED;
  31. import static java.lang.Thread.sleep;
  32. /**
  33. * Helper class for asynchronous tests.
  34. */
  35. public final class Fixture {
  36. private static final String DEFAULT_DATABASE_NAME = "JavaDriverTest";
  37. private static AsyncMongoClientImpl mongoClient;
  38. private Fixture() {
  39. }
  40. public static synchronized AsyncMongoClient getMongoClient() {
  41. if (mongoClient == null) {
  42. mongoClient = (AsyncMongoClientImpl) AsyncMongoClients.create(getMongoClientBuilderFromConnectionString().build());
  43. Runtime.getRuntime().addShutdownHook(new ShutdownHook());
  44. }
  45. return mongoClient;
  46. }
  47. public static MongoClientSettings.Builder getMongoClientSettingsBuilder() {
  48. return getMongoClientBuilderFromConnectionString();
  49. }
  50. public static MongoClientSettings getMongoClientSettings() {
  51. return getMongoClientBuilderFromConnectionString().build();
  52. }
  53. public static com.mongodb.MongoClientSettings.Builder getMongoClientBuilderFromConnectionString() {
  54. com.mongodb.MongoClientSettings.Builder builder = com.mongodb.MongoClientSettings.builder()
  55. .applyConnectionString(getConnectionString());
  56. builder.streamFactoryFactory(getStreamFactoryFactory());
  57. return builder;
  58. }
  59. public static StreamFactoryFactory getStreamFactoryFactory() {
  60. if (getSslSettings().isEnabled()) {
  61. return new TlsChannelStreamFactoryFactory();
  62. } else {
  63. return AsynchronousSocketChannelStreamFactoryFactory.builder().build();
  64. }
  65. }
  66. public static synchronized ConnectionString getConnectionString() {
  67. return ClusterFixture.getConnectionString();
  68. }
  69. public static String getDefaultDatabaseName() {
  70. return DEFAULT_DATABASE_NAME;
  71. }
  72. public static AsyncMongoDatabase getDefaultDatabase() {
  73. return getMongoClient().getDatabase(getDefaultDatabaseName());
  74. }
  75. public static AsyncMongoCollection<Document> initializeCollection(final MongoNamespace namespace) {
  76. AsyncMongoDatabase database = getMongoClient().getDatabase(namespace.getDatabaseName());
  77. try {
  78. FutureResultCallback<Document> futureResultCallback = new FutureResultCallback<Document>();
  79. database.runCommand(new Document("drop", namespace.getCollectionName()), futureResultCallback);
  80. futureResultCallback.get();
  81. } catch (MongoCommandException e) {
  82. if (!e.getErrorMessage().contains("ns not found")) {
  83. throw e;
  84. }
  85. } catch (Throwable t) {
  86. throw new RuntimeException(t);
  87. }
  88. return database.getCollection(namespace.getCollectionName());
  89. }
  90. public static boolean isSharded() {
  91. getMongoClient();
  92. return mongoClient.getCluster().getDescription().getType() == SHARDED;
  93. }
  94. public static void dropDatabase(final String name) {
  95. if (name == null) {
  96. return;
  97. }
  98. try {
  99. FutureResultCallback<Document> futureResultCallback = new FutureResultCallback<Document>();
  100. getMongoClient().getDatabase(name)
  101. .runCommand(new Document("dropDatabase", 1), futureResultCallback);
  102. futureResultCallback.get();
  103. } catch (MongoCommandException e) {
  104. if (!e.getErrorMessage().contains("ns not found")) {
  105. throw e;
  106. }
  107. } catch (Throwable t) {
  108. throw new RuntimeException(t);
  109. }
  110. }
  111. public static void drop(final MongoNamespace namespace) {
  112. try {
  113. FutureResultCallback<Document> futureResultCallback = new FutureResultCallback<Document>();
  114. getMongoClient().getDatabase(namespace.getDatabaseName())
  115. .runCommand(new Document("drop", namespace.getCollectionName()), futureResultCallback);
  116. futureResultCallback.get();
  117. } catch (MongoCommandException e) {
  118. if (!e.getErrorMessage().contains("ns not found")) {
  119. throw e;
  120. }
  121. } catch (Throwable t) {
  122. throw new RuntimeException(t);
  123. }
  124. }
  125. public static synchronized void waitForLastServerSessionPoolRelease() {
  126. if (mongoClient != null) {
  127. long startTime = System.currentTimeMillis();
  128. int sessionInUseCount = getSessionInUseCount();
  129. while (sessionInUseCount > 0) {
  130. try {
  131. if (System.currentTimeMillis() > startTime + ClusterFixture.TIMEOUT * 1000) {
  132. throw new MongoTimeoutException("Timed out waiting for server session pool in use count to drop to 0. Now at: "
  133. + sessionInUseCount);
  134. }
  135. sleep(10);
  136. sessionInUseCount = getSessionInUseCount();
  137. } catch (InterruptedException e) {
  138. throw new MongoInterruptedException("Interrupted", e);
  139. }
  140. }
  141. }
  142. }
  143. private static int getSessionInUseCount() {
  144. return mongoClient.getServerSessionPool().getInUseCount();
  145. }
  146. static class ShutdownHook extends Thread {
  147. @Override
  148. public void run() {
  149. try {
  150. dropDatabase(getDefaultDatabaseName());
  151. } catch (Exception e) {
  152. // ignore
  153. }
  154. mongoClient.close();
  155. mongoClient = null;
  156. }
  157. }
  158. }