/oak-it/mk/src/test/java/org/apache/jackrabbit/mk/test/MongoUtils.java

https://gitlab.com/icarusalways/jackrabbit-oak · Java · 85 lines · 37 code · 11 blank · 37 comment · 4 complexity · 9fbf9e616a3f611de15843a710b9aed6 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.apache.jackrabbit.mk.test;
  18. import org.apache.jackrabbit.oak.plugins.document.util.MongoConnection;
  19. import com.mongodb.BasicDBObject;
  20. import com.mongodb.DB;
  21. /**
  22. * A utility class to get a {@link MongoConnection} to a local mongo instance
  23. * and clean a test database.
  24. */
  25. class MongoUtils {
  26. protected static final String HOST =
  27. System.getProperty("mongo.host", "127.0.0.1");
  28. protected static final int PORT =
  29. Integer.getInteger("mongo.port", 27017);
  30. protected static final String DB =
  31. System.getProperty("mongo.db", "MongoMKDB");
  32. protected static Exception exception;
  33. /**
  34. * Get a connection if available. If not available, null is returned.
  35. *
  36. * @return the connection or null
  37. */
  38. public static MongoConnection getConnection() {
  39. return getConnection(DB);
  40. }
  41. /**
  42. * Get a connection if available. If not available, null is returned.
  43. *
  44. * @param dbName the database name
  45. * @return the connection or null
  46. */
  47. public static MongoConnection getConnection(String dbName) {
  48. if (exception != null) {
  49. return null;
  50. }
  51. MongoConnection mongoConnection = null;
  52. try {
  53. mongoConnection = new MongoConnection(HOST, PORT, dbName);
  54. mongoConnection.getDB().command(new BasicDBObject("ping", 1));
  55. // dropCollections(mongoConnection.getDB());
  56. } catch (Exception e) {
  57. exception = e;
  58. mongoConnection = null;
  59. }
  60. return mongoConnection;
  61. }
  62. /**
  63. * Drop all user defined collections. System collections are not dropped.
  64. *
  65. * @param db the connection
  66. */
  67. public static void dropCollections(DB db) {
  68. for (String name : db.getCollectionNames()) {
  69. if (!name.startsWith("system.")) {
  70. db.getCollection(name).drop();
  71. }
  72. }
  73. }
  74. }