/integration-tests/src/test/java/integration/util/mongodb/MongodbSeed.java

http://github.com/Graylog2/graylog2-server · Java · 106 lines · 72 code · 18 blank · 16 comment · 12 complexity · f34b3182a20ab453b7fcb23ffabc30cd MD5 · raw file

  1. /**
  2. * This file is part of Graylog.
  3. *
  4. * Graylog is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * Graylog is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with Graylog. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. package integration.util.mongodb;
  18. import com.mongodb.BasicDBObject;
  19. import com.mongodb.DB;
  20. import com.mongodb.DBCollection;
  21. import com.mongodb.DBObject;
  22. import com.mongodb.MongoClient;
  23. import integration.IntegrationTestsConfig;
  24. import java.io.IOException;
  25. import java.net.URI;
  26. import java.net.URISyntaxException;
  27. import java.net.URL;
  28. import java.net.UnknownHostException;
  29. import java.util.List;
  30. import java.util.Map;
  31. public class MongodbSeed {
  32. private final MongoClient mongoClient;
  33. private final DB mongoDatabase;
  34. public MongodbSeed(String dbName) throws UnknownHostException {
  35. mongoClient = new MongoClient(
  36. IntegrationTestsConfig.getMongodbHost(),
  37. IntegrationTestsConfig.getMongodbPort());
  38. mongoDatabase = mongoClient.getDB(dbName);
  39. mongoDatabase.dropDatabase();
  40. }
  41. private Map<String, List<DBObject>> parseDatabaseDump(URI seedUrl) throws IOException {
  42. final DumpReader dumpReader;
  43. if (seedUrl.getPath().endsWith(".json")) {
  44. dumpReader = new JsonReader(seedUrl);
  45. } else {
  46. dumpReader = new BsonReader(seedUrl);
  47. }
  48. return dumpReader.toMap();
  49. }
  50. private Map<String, List<DBObject>> updateNodeIdFirstNode(Map<String, List<DBObject>> collections, String nodeId) {
  51. final List<DBObject> nodes = collections.get("nodes");
  52. if (nodes == null || nodes.isEmpty())
  53. return collections;
  54. final DBObject firstNode = nodes.get(0);
  55. firstNode.put("node_id", nodeId);
  56. nodes.set(0, firstNode);
  57. collections.remove("nodes");
  58. collections.put("nodes", nodes);
  59. return collections;
  60. }
  61. private Map<String, List<DBObject>> updateNodeIdInputs(Map<String, List<DBObject>> collections, String nodeId) {
  62. List<DBObject> inputs = collections.get("inputs");
  63. if (inputs == null) {
  64. return collections;
  65. }
  66. for (DBObject input : inputs){
  67. input.put("node_id", nodeId);
  68. }
  69. collections.remove("inputs");
  70. collections.put("inputs", inputs);
  71. return collections;
  72. }
  73. public void loadDataset(URL dbPath, String nodeId) throws IOException, URISyntaxException {
  74. Map<String, List<DBObject>> collections = parseDatabaseDump(dbPath.toURI());
  75. collections = updateNodeIdFirstNode(collections, nodeId);
  76. collections = updateNodeIdInputs(collections, nodeId);
  77. for (Map.Entry<String, List<DBObject>> collection : collections.entrySet()) {
  78. final String collectionName = collection.getKey();
  79. if (mongoDatabase.getCollection(collectionName) == null) {
  80. mongoDatabase.createCollection(collectionName, new BasicDBObject());
  81. }
  82. final DBCollection mongoCollection = mongoDatabase.getCollection(collectionName);
  83. if (!collection.getValue().isEmpty()) {
  84. mongoCollection.insert(collection.getValue());
  85. }
  86. }
  87. }
  88. }