135

My question is a variation of this one.

Since my Java Web-app project requires a lot of read filters/queries and interfaces with tools like GridFS, I'm struggling to think of a sensible way to employ MongoDB in the way the above solution suggests.

Therefore, I'm considering running an embedded instance of MongoDB alongside my integration tests. I'd like it to start up automatically (either for each test or the whole suite), flush the database for every test, and shut down at the end. These tests might be run on development machines as well as the CI server, so my solution will also need to be portable.

Can anyone with more knowledge on MongoDB help me get idea of the feasibility of this approach, and/or perhaps suggest any reading material that might help me get started?

I'm also open to other suggestions people might have on how I could approach this problem...

Community
  • 1
  • 1
seanhodges
  • 17,426
  • 15
  • 71
  • 93
  • If you are using maven, you can use ours http://mvnrepository.com/artifact/com.wenzani/mongodb-maven-plugin – markdsievers Sep 26 '11 at 19:32
  • You can also check this project which simulate a MongoDB inside JVM memory. https://github.com/thiloplanz/jmockmongo But it is still in development. – Sebastien Lorber Jan 05 '13 at 12:44
  • Not [just for] for unit testings, but read this blog post if you like to run MongoDB (even a cluster) as in-memory deployment if you're using Linux. http://edgystuff.tumblr.com/post/49304254688 Would be great to have it out of the box like RavenDB though. – Tamir May 02 '13 at 07:51
  • Similar to the embedmongo-maven-plugin mentioned here, there is also a [Gradle Mongo Plugin](https://github.com/sourcemuse/GradleMongoPlugin "Gradle Mongo Plugin") available. Like the Maven plugin it also wraps the [flapdoodle EmbeddedMongoDb api](https://github.com/flapdoodle-oss/de.flapdoodle.embed.mongo "Flapdoodle EmbeddedMongoDb") and allows you to run a managed instance of Mongo from your Gradle builds. – Robert Taylor Feb 13 '14 at 13:38
  • Check this code example here: https://github.com/familysyan/embedded-mongo-integ. No installation, no dependency. It's simply a platform independent ant script that do download and setup for you. It also cleans up everything after your tests. – Edmond Jun 08 '17 at 05:39

11 Answers11

102

I have found Embedded MongoDB library which looks quite promising and does what you have asked for.

Currently supports MongoDB versions: 1.6.5 to 3.1.6, provided the binaries are still available from the configured mirror.

Here is short example of use, which I have just tried and it works perfectly:

public class EmbeddedMongoTest {
    private static final String DATABASE_NAME = "embedded";

    private MongodExecutable mongodExe;
    private MongodProcess mongod;
    private Mongo mongo;

    @Before
    public void beforeEach() throws Exception {
        MongoDBRuntime runtime = MongoDBRuntime.getDefaultInstance();
        mongodExe = runtime.prepare(new MongodConfig(Version.V2_3_0, 12345, Network.localhostIsIPv6()));
        mongod = mongodExe.start();
        mongo = new Mongo("localhost", 12345);
    }

    @After
    public void afterEach() throws Exception {
        if (this.mongod != null) {
            this.mongod.stop();
            this.mongodExe.stop();
        }
    }

    @Test
    public void shouldCreateNewObjectInEmbeddedMongoDb() {
        // given
        DB db = mongo.getDB(DATABASE_NAME);
        DBCollection col = db.createCollection("testCollection", new BasicDBObject());

        // when
        col.save(new BasicDBObject("testDoc", new Date()));

        // then
        assertThat(col.getCount(), Matchers.is(1L));
    }
}
Matt Clark
  • 27,671
  • 19
  • 68
  • 123
rozky
  • 2,637
  • 2
  • 25
  • 13
  • 1
    Just used this library and it worked perfectly JUnit testing a Mongo API on a Mac. Recommended. – Martin Dow Jun 08 '12 at 13:38
  • 1
    +1 excellent find! When I first started using mongodb a year ago, not having a programmatic way to test against a database was one of the downsides. We got around this by having a test instance on every environment, configured through a Java properties file but of course that needed to have mongo installed on every environment. This looks like it will solve all that. – andyb Jun 15 '12 at 14:16
  • Nice! deleted my answer since it's no longer accurate. Anyone any idea how mature this is? I can imagine it having to simulate MongoDB on a very low level would be quite complicated and judging from the source it looks pretty high level. – Remon van Vliet Jun 27 '12 at 11:11
  • Finally got to play with this in my project and can report that is was incredibly easy to set-up and run. The low-level calls are all part of the official `com.mongodb` [Java API](http://api.mongodb.org/java/current/) so it is no more complicated than using the regular API. – andyb Jul 27 '12 at 13:51
  • 24
    Be careful with this solution. It just gathers information about the current operating system and downloads the appropriate platform-specific MongoDB binaries from the internet, runs the daemon and does some other configuration stuff. As an enterprise solution, this is not. Mocking may be the only real option. – James Watkins Aug 05 '13 at 18:17
25

Here's an updated (for 2022) version of the accepted answer from @rozky (a lot has been changed in both the Mongo and Embedded MongoDB libraries).

package com.example.mongo;

import com.mongodb.BasicDBObject;
import com.mongodb.MongoClient;
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoDatabase;
import de.flapdoodle.embed.mongo.MongodExecutable;
import de.flapdoodle.embed.mongo.MongodProcess;
import de.flapdoodle.embed.mongo.MongodStarter;
import de.flapdoodle.embed.mongo.config.MongodConfig;
import de.flapdoodle.embed.mongo.config.Net;
import de.flapdoodle.embed.mongo.distribution.Version;
import de.flapdoodle.embed.process.runtime.Network;
import java.util.Date;
import org.junit.After;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;

public class EmbeddedMongoTest {

    private static final String DATABASE_NAME = "embedded";

    private MongodExecutable mongodExe;
    private MongodProcess mongod;
    private MongoClient mongo;

    @Before
    public void beforeEach() throws Exception {
        MongodStarter starter = MongodStarter.getDefaultInstance();
        String bindIp = "localhost";
        int port = 12345;
        MongodConfig mongodConfig = MongodConfig.builder()
            .version(Version.Main.PRODUCTION)
            .net(new Net(bindIp, port, Network.localhostIsIPv6()))
            .build();
        this.mongodExe = starter.prepare(mongodConfig);
        this.mongod = mongodExe.start();
        this.mongo = new MongoClient(bindIp, port);
    }

    @After
    public void afterEach() throws Exception {
        if (this.mongod != null) {
            this.mongod.stop();
            this.mongodExe.stop();
        }
    }

    @Test
    public void shouldCreateNewObjectInEmbeddedMongoDb() {
        // given
        MongoDatabase db = mongo.getDatabase(DATABASE_NAME);
        db.createCollection("testCollection");
        MongoCollection<BasicDBObject> col = db.getCollection("testCollection", BasicDBObject.class);

        // when
        col.insertOne(new BasicDBObject("testDoc", new Date()));

        // then
        assertEquals(1L, col.countDocuments());
    }

}
Collin Krawll
  • 2,210
  • 17
  • 15
  • 1
    Repeated start and stop of Embedded mongo for each test fails most of the tests. Its better to start before all the tests and shutdown once all have executed – DBS Apr 30 '19 at 05:36
  • You need to include ```@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_CLASS)``` along with the change above – DBS Apr 30 '19 at 06:09
  • @DBS You could also maybe use a random port so that you can still run your tests concurrently on a fresh embedded mongo instance. See the docs [here](https://github.com/flapdoodle-oss/de.flapdoodle.embed.mongo#use-free-server-port). – Collin Krawll Apr 30 '19 at 06:37
  • Yup, this works like a charm. Came here from baeldung - this example just kept throwing Caused by: java.lang.IllegalArgumentException: Database name must not be empty! While i did provide it in (MongoClients.create(String.format(CONNECTION_STRING, ip, port)), "cipresale"); – kristjan reinhold Jan 20 '21 at 11:49
  • Guys any help for these two imports. I am getting error on these even after adding de.flapdoodle.embed.mongo . import de.flapdoodle.embed.mongo.config.IMongodConfig; import de.flapdoodle.embed.mongo.config.MongodConfigBuilder; – sashikanta Jan 10 '22 at 18:33
  • 1
    @sashikanta I just updated the code for the latest changes (specifically, I changed `IMongodConfig mongodConfig = new MongodConfigBuilder()` to `MongodConfig mongodConfig = MongodConfig.builder()`). Please try it again now. – Collin Krawll Jan 11 '22 at 17:54
  • @CollinKrawll perfectly working now. Thank you so much. – sashikanta Feb 12 '22 at 17:52
18

There is Foursquare product Fongo. Fongo is an in-memory java implementation of mongo. It intercepts calls to the standard mongo-java-driver for finds, updates, inserts, removes and other methods. The primary use is for lightweight unit testing where you don't want to spin up a mongo process.

zlob
  • 421
  • 8
  • 13
  • 1
    Does Fongo happen to intercept calls to the network, e.g. to localhost:27017 so that it can serve as a drop-in fake server to enable integration testing without code changes? –  Nov 23 '15 at 18:09
  • [mongo-java-server](https://github.com/bwaldvogel/mongo-java-server) is a drop-in fake server implementation that can be used for integration testing without code changes. – Benedikt Waldvogel Nov 05 '18 at 08:02
8

If you're using Maven you may be interested in a plugin I've created that wraps the flapdoodle.de 'embedded mongo' API:

embedmongo-maven-plugin

It provides a start goal that you can use to start any version of MongoDB you want (e.g. during pre-integration-test), and a stop goal that will stop MongoDB (e.g. during post-integration-test).

The real benefit of using this plugin over others is that there is no requirement for MongoDB to be installed beforehand. MongoDB binaries are downloaded and stored in ~/.embedmongo for future builds.

joelittlejohn
  • 11,665
  • 2
  • 41
  • 54
7

If you are using sbt and specs2, I wrote the same kind of wrapper for embedmongo

https://github.com/athieriot/specs2-embedmongo

Aurélien Thieriot
  • 5,853
  • 2
  • 24
  • 25
5

with spring-boot 1.3 you can use EmbeddedMongoAutoConfiguration

pom.xml

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.3.2.RELEASE</version>
</parent>
 ...
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-mongodb</artifactId>
    </dependency>
    <dependency>
        <groupId>de.flapdoodle.embed</groupId>
        <artifactId>de.flapdoodle.embed.mongo</artifactId>
        <version>${embedded-mongo.version}</version>
    </dependency>

MongoConfig

@Configuration
@EnableAutoConfiguration(exclude = { EmbeddedMongoAutoConfiguration.class })
public class MongoConfig{
}
panser
  • 1,949
  • 22
  • 16
  • 1
    can you explain what is the "@EnableAutoConfiguration(exclude = { EmbeddedMongoAutoConfiguration.class })" annotation actually doing? – Bruno Negrão Zica Apr 30 '18 at 22:30
  • The reason is most probably the de.flapdoodle.embed.mongo dependency not marked for test scope. Not to pick it up and run embedded mongo in production application setup the exclusion is needed. – Sergey Shcherbakov Jan 28 '19 at 09:57
4

You can run MongoDB in memory as of version 3.2.6. From the site:

Starting in MongoDB Enterprise version 3.2.6, the in-memory storage engine is part of general availability (GA) in the 64-bit builds. Other than some metadata and diagnostic data, the in-memory storage engine does not maintain any on-disk data, including configuration data, indexes, user credentials, etc.

Irwin
  • 12,551
  • 11
  • 67
  • 97
2

Not just for unit testing, but also explained how to use inmemory mongodb with rest api.

maven dependency:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
        </dependency>

        <dependency>
            <groupId>de.flapdoodle.embed</groupId>
            <artifactId>de.flapdoodle.embed.mongo</artifactId>
        </dependency>

=============================================================================

application.properties

server.port = 8080
spring.data.mongodb.database=user_db
spring.data.mongodb.port=27017
spring.data.mongodb.host=localhost

=============================================================================

UserRepository.java

public interface UserRepository extends MongoRepository{

}

for reference and all java code use below link:(step by step explanation)

https://www.youtube.com/watch?v=2Tq2Q7EzhSA&t=7s

0

Performances are better when executing mongod with storageEngine='ephemeralForTest'

new MongodConfigBuilder()
    .version(Version.Main.PRODUCTION)
    .cmdOptions(new MongoCmdOptionsBuilder()
         .useStorageEngine("ephemeralForTest")
         .build())
    .net(new Net("localhost", port, Network.localhostIsIPv6()))
    .build()
bubbles
  • 2,597
  • 1
  • 15
  • 40
0

To run Embedded mongodb for integration test following are the maven dependency needed:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
            <version>2.5.2</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
            <version>2.5.2</version>
        </dependency>

        <dependency>
            <groupId>de.flapdoodle.embed</groupId>
            <artifactId>de.flapdoodle.embed.mongo</artifactId>
            <version>3.0.0</version>
            <scope>test</scope>
        </dependency>

Try using below code snipped for EmbeddedMongoAutoConfiguration:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.mongo.MongoProperties;
import org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongoAutoConfiguration;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class EmbeddedMongoApplication {

    public static void main(String[] args) {
         System.setProperty("os.arch", "x86_64");
         SpringApplication.run(EmbeddedMongoApplication.class, args);
    }
    
    @Bean
    public EmbeddedMongoAutoConfiguration embeddedMongoAutoConfiguration(MongoProperties mongoProperties) {
        return new EmbeddedMongoAutoConfiguration(mongoProperties);
    }
}

Note:

Embedded mongodb will be downloaded to below Path. So take into consideration that path have proper permission.

Linux : $HOME/.embedmongo/linux/mongodb-linux-x86_64-3.2.2.tgz
Windows : C:\Users\<username>\.embedmongo\win32\mongodb-win32-x86_64-3.x.x.zip
Punit Tiwari
  • 496
  • 4
  • 8
-1

In production, you will be using a real database.

If you want your tests to reflect how your product behaves in production, use a real instance of Mongo.

A fake implementation may not behave exactly the same as a real one. When testing, you should strive for correctness. Speed of execution comes second.

Jackson
  • 9,188
  • 6
  • 52
  • 77
  • 7
    I think you missed my purpose. I wasn't looking for a fake instance of Mongo, I wanted a real instance but embedded in my tests. The reason was to start up MongoDB and put it into a particular state without a polluting an existing database, run a series of operations, and then inspect the outcome without needing to sift through arbitrary data that was unrelated to my test. As real as it can possibly be whilst still maintaining a controlled test environment. – seanhodges Jun 18 '15 at 08:19
  • Sorry, the word "simulate" and all these "in-memory" suggestions caused me to forget the meaning of "embedded" in Java-land. Glad to hear it. – Jackson Jun 18 '15 at 08:45