/* * The MIT License * * Copyright 2013 Sony Mobile Communications AB. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.sonyericsson.jenkins.plugins.bfa.db; import java.io.IOException; import org.junit.Before; import de.flapdoodle.embed.mongo.Command; import de.flapdoodle.embed.mongo.MongodExecutable; import de.flapdoodle.embed.mongo.MongodStarter; import de.flapdoodle.embed.mongo.config.ArtifactStoreBuilder; import de.flapdoodle.embed.mongo.config.DownloadConfigBuilder; import de.flapdoodle.embed.mongo.config.IMongodConfig; import de.flapdoodle.embed.mongo.config.MongodConfigBuilder; import de.flapdoodle.embed.mongo.config.RuntimeConfigBuilder; import de.flapdoodle.embed.mongo.distribution.Version; import de.flapdoodle.embed.process.config.IRuntimeConfig; /** * Abstract class to be extended for running tests with Embedded MongoDB. * A knowledgeBase is created during setUp, which is backed up by a * real MongoDB instance. * * @author Fredrik Persson <fredrik6.persson@sonymobile.com> * */ public abstract class EmbeddedMongoTest { /** * KnowledgeBase to be used for testing. */ protected KnowledgeBase knowledgeBase; private static final String LOCALHOST = "127.0.0.1"; private static final String DB_NAME = "jenkinsbfa"; private static String mongoURL = System.getProperty(EmbeddedMongoTest.class.getName() + ".mongoURL"); /** * Sets up an instance of {@link MongoDBKnowledgeBase} backed up by a real MongoDB, to be used for testing. * @throws IOException if something goes wrong */ @Before public void setUp() throws IOException { MongodStarter runtime; if (mongoURL != null) { // Use separate URL for fetching mongoDB artifacts. Command command = Command.MongoD; de.flapdoodle.embed.process.config.store.DownloadConfigBuilder downloadConf = new DownloadConfigBuilder() .defaultsForCommand(command).downloadPath(mongoURL); de.flapdoodle.embed.process.store.ArtifactStoreBuilder artifactStoreBuilder = new ArtifactStoreBuilder() .defaults(command).download(downloadConf); IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder() .defaults(command) .artifactStore(artifactStoreBuilder) .build(); runtime = MongodStarter.getInstance(runtimeConfig); } else { runtime = MongodStarter.getDefaultInstance(); } IMongodConfig conf = new MongodConfigBuilder().version(Version.Main.V2_4).build(); MongodExecutable mongodExe = runtime.prepare(conf); mongodExe.start(); int port = conf.net().getPort(); knowledgeBase = new MongoDBKnowledgeBase(LOCALHOST, port, DB_NAME, null, null, true, false); } }