de.flapdoodle.embed.mongo.Command Java Examples
The following examples show how to use
de.flapdoodle.embed.mongo.Command.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MongoDb3TestRule.java From logging-log4j2 with Apache License 2.0 | 6 votes |
private static MongodStarter getMongodStarter(final LoggingTarget loggingTarget) { if (loggingTarget == null) { return MongodStarter.getDefaultInstance(); } switch (loggingTarget) { case NULL: final Logger logger = LoggerFactory.getLogger(MongoDb3TestRule.class.getName()); final IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder() // @formatter:off .defaultsWithLogger(Command.MongoD, logger) .processOutput(ProcessOutput.getDefaultInstanceSilent()) .build(); // @formatter:on return MongodStarter.getInstance(runtimeConfig); case CONSOLE: return MongodStarter.getDefaultInstance(); default: throw new NotImplementedException(loggingTarget.toString()); } }
Example #2
Source File: MongoDb4TestRule.java From logging-log4j2 with Apache License 2.0 | 6 votes |
private static MongodStarter getMongodStarter(final LoggingTarget loggingTarget) { if (loggingTarget == null) { return MongodStarter.getDefaultInstance(); } switch (loggingTarget) { case NULL: final Logger logger = LoggerFactory.getLogger(MongoDb4TestRule.class.getName()); final IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder() // @formatter:off .defaultsWithLogger(Command.MongoD, logger).processOutput(ProcessOutput.getDefaultInstanceSilent()) .build(); // @formatter:on return MongodStarter.getInstance(runtimeConfig); case CONSOLE: return MongodStarter.getDefaultInstance(); default: throw new NotImplementedException(loggingTarget.toString()); } }
Example #3
Source File: EmbeddedMongoHelper.java From edison-microservice with Apache License 2.0 | 6 votes |
public static void startMongoDB() throws IOException { if (!started.compareAndSet(false, true)) { throw new RuntimeException("Embedded mongo already running, call stopMongoDB before starting it again!"); } final String bindIp = "localhost"; try { final int port = Network.getFreeServerPort(); final IMongodConfig mongodConfig = new MongodConfigBuilder() .version(Version.Main.PRODUCTION) .net(new Net(bindIp, port, Network.localhostIsIPv6())) .build(); final MongodStarter runtime = MongodStarter.getInstance(new RuntimeConfigBuilder() .defaultsWithLogger(Command.MongoD, LOG) .build()); mongodExecutable = runtime.prepare(mongodConfig, Distribution.detectFor(Version.Main.PRODUCTION)); mongodProcess = mongodExecutable.start(); mongoClient = new MongoClient(bindIp, port); } catch (final IOException e) { stopMongoDB(); throw e; } }
Example #4
Source File: EmbeddedClient.java From graviteeio-access-management with Apache License 2.0 | 6 votes |
@Override public void afterPropertiesSet() throws Exception { final IMongodConfig mongodConfig = new MongodConfigBuilder() .version(Version.Main.PRODUCTION).build(); IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder() .defaultsWithLogger(Command.MongoD, logger) .processOutput(ProcessOutput.getDefaultInstanceSilent()) .build(); MongodStarter runtime = MongodStarter.getInstance(runtimeConfig); MongodExecutable mongodExecutable = runtime.prepare(mongodConfig); mongod = mongodExecutable.start(); // cluster configuration ClusterSettings clusterSettings = ClusterSettings.builder().hosts(Collections.singletonList(new ServerAddress(mongodConfig.net().getServerAddress().getHostName(), mongodConfig.net().getPort()))).build(); // codec configuration CodecRegistry pojoCodecRegistry = fromRegistries(MongoClients.getDefaultCodecRegistry(), fromProviders(PojoCodecProvider.builder().automatic(true).build())); MongoClientSettings settings = MongoClientSettings.builder().clusterSettings(clusterSettings).codecRegistry(pojoCodecRegistry).writeConcern(WriteConcern.ACKNOWLEDGED).build(); mongoClient = MongoClients.create(settings); mongoDatabase = mongoClient.getDatabase(databaseName); }
Example #5
Source File: EmbeddedClient.java From graviteeio-access-management with Apache License 2.0 | 6 votes |
@Override public void afterPropertiesSet() throws Exception { final IMongodConfig mongodConfig = new MongodConfigBuilder() .version(Version.Main.PRODUCTION).build(); IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder() .defaultsWithLogger(Command.MongoD, logger) .processOutput(ProcessOutput.getDefaultInstanceSilent()) .build(); MongodStarter runtime = MongodStarter.getInstance(runtimeConfig); MongodExecutable mongodExecutable = runtime.prepare(mongodConfig); mongod = mongodExecutable.start(); // cluster configuration ClusterSettings clusterSettings = ClusterSettings.builder().hosts(Collections.singletonList(new ServerAddress(mongodConfig.net().getServerAddress().getHostName(), mongodConfig.net().getPort()))).build(); // codec configuration CodecRegistry pojoCodecRegistry = fromRegistries(MongoClients.getDefaultCodecRegistry(), fromProviders(PojoCodecProvider.builder().automatic(true).build())); MongoClientSettings settings = MongoClientSettings.builder().clusterSettings(clusterSettings).codecRegistry(pojoCodecRegistry).writeConcern(WriteConcern.ACKNOWLEDGED).build(); mongoClient = MongoClients.create(settings); mongoDatabase = mongoClient.getDatabase(databaseName); }
Example #6
Source File: MongoDbResource.java From ditto with Eclipse Public License 2.0 | 5 votes |
private static MongodExecutable configureMongoDb(final String bindIp, final int mongoDbPort, final IProxyFactory proxyFactory, final Logger logger) throws IOException { final Command command = Command.MongoD; final ProcessOutput processOutput; if (logger != null) { processOutput = ProcessOutput.getInstance("mongod", logger); } else { processOutput = ProcessOutput.getDefaultInstanceSilent(); } final MongodStarter mongodStarter = MongodStarter.getInstance(new RuntimeConfigBuilder() .defaults(command) .processOutput(processOutput) .artifactStore(new ExtractedArtifactStoreBuilder() .defaults(command) .download(new DownloadConfigBuilder() .defaultsForCommand(command) .proxyFactory(proxyFactory) .progressListener(new StandardConsoleProgressListener()) .build())) .build()); return mongodStarter.prepare(new MongodConfigBuilder() .net(new Net(bindIp, mongoDbPort, false)) .version(Version.Main.V3_6) .cmdOptions(new MongoCmdOptionsBuilder() .useStorageEngine("wiredTiger") .useNoJournal(false) .build()) .build()); }
Example #7
Source File: MongosSystemForTestFactory.java From spring-data-examples with Apache License 2.0 | 5 votes |
private void initializeMongos() throws Exception { MongosStarter runtime = MongosStarter.getInstance(new RuntimeConfigBuilder() .defaultsWithLogger(Command.MongoS,logger) .processOutput(outputFunction.apply(Command.MongoS)) .build()); mongosExecutable = runtime.prepare(config); mongosProcess = mongosExecutable.start(); }
Example #8
Source File: MongosSystemForTestFactory.java From spring-data-examples with Apache License 2.0 | 5 votes |
public MongosSystemForTestFactory(IMongosConfig config, Map<String, List<IMongodConfig>> replicaSets, List<IMongodConfig> configServers, String shardDatabase, String shardCollection, String shardKey, Function<Command, ProcessOutput> outputFunction) { this.config = config; this.replicaSets = replicaSets; this.configServers = configServers; this.shardDatabase = shardDatabase; this.shardCollection = shardCollection; this.shardKey = shardKey; this.outputFunction = outputFunction; }
Example #9
Source File: ExampleMongoConfiguration.java From edison-microservice with Apache License 2.0 | 5 votes |
@Bean public MongoClient mongoClient(final MongoProperties mongoProperties) throws IOException { String bindIp = mongoProperties.getHost()[0]; int port = Network.getFreeServerPort(); IMongodConfig mongodConfig = new MongodConfigBuilder() .version(Version.Main.PRODUCTION) .net(new Net(bindIp, port, Network.localhostIsIPv6())) .build(); final MongodStarter runtime = MongodStarter.getInstance(new RuntimeConfigBuilder() .defaultsWithLogger(Command.MongoD, LOG) .build()); MongodExecutable mongodExecutable = runtime.prepare(mongodConfig, Distribution.detectFor(Version.Main.PRODUCTION)); mongodExecutable.start(); return new MongoClient(bindIp, port); }
Example #10
Source File: MongodManager.java From jpa-unit with Apache License 2.0 | 5 votes |
private void startMongo(final List<IMongodConfig> mongodConfigList) throws IOException { // @formatter:off final ProcessOutput processOutput = new ProcessOutput( logTo(LOGGER, Slf4jLevel.INFO), logTo(LOGGER, Slf4jLevel.ERROR), named("[console>]", logTo(LOGGER, Slf4jLevel.DEBUG))); final IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder() .defaultsWithLogger(Command.MongoD,LOGGER) .processOutput(processOutput) .artifactStore(new ExtractedArtifactStoreBuilder() .defaults(Command.MongoD) .download(new DownloadConfigBuilder() .defaultsForCommand(Command.MongoD) .progressListener(new Slf4jProgressListener(LOGGER)) .build())) .build(); // @formatter:on final MongodStarter starter = MongodStarter.getInstance(runtimeConfig); for (final IMongodConfig mongodConfig : mongodConfigList) { final MongodExecutable mongodExecutable = starter.prepare(mongodConfig); final MongodProcess mongod = mongodExecutable.start(); mongoProcesses.put(mongod, mongodExecutable); } }
Example #11
Source File: NonReactiveMongoClientTestConfiguration.java From mongodb-aggregate-query-support with Apache License 2.0 | 5 votes |
public NonReactiveMongoClientTestConfiguration() throws IOException { Command command = Command.MongoD; IDownloadConfig downloadConfig = new Mongo42xDownloadConfigBuilder().defaultsForCommand(command) .progressListener(new Slf4jProgressListener(LOGGER)) .build(); IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder().defaults(command) .artifactStore(new ExtractedArtifactStoreBuilder() .defaults(command) .download(downloadConfig)) .build(); final MongodStarter runtime = MongodStarter.getInstance(runtimeConfig); mongodExecutable = runtime.prepare(newMongodConfig(MongoDbVersion.V4_2_4)); startMongodExecutable(); }
Example #12
Source File: ReactiveMongoClientTestConfiguration.java From mongodb-aggregate-query-support with Apache License 2.0 | 5 votes |
public ReactiveMongoClientTestConfiguration() throws IOException { Command command = Command.MongoD; IDownloadConfig downloadConfig = new Mongo42xDownloadConfigBuilder().defaultsForCommand(command) .progressListener(new Slf4jProgressListener(LOGGER)) .build(); IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder().defaults(command) .artifactStore(new ExtractedArtifactStoreBuilder() .defaults(command) .download(downloadConfig)) .build(); final MongodStarter runtime = MongodStarter.getInstance(runtimeConfig); mongodExecutable = runtime.prepare(newMongodConfig(MongoDbVersion.V4_2_4)); startMongodExecutable(); }
Example #13
Source File: MongoClientTestConfiguration.java From mongodb-aggregate-query-support with Apache License 2.0 | 5 votes |
public MongoClientTestConfiguration() throws IOException { Command command = Command.MongoD; IDownloadConfig downloadConfig = new Mongo42xDownloadConfigBuilder().defaultsForCommand(command) .progressListener(new Slf4jProgressListener(LOGGER)) .build(); IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder().defaults(command) .artifactStore(new ExtractedArtifactStoreBuilder() .defaults(command) .download(downloadConfig)) .build(); final MongodStarter runtime = MongodStarter.getInstance(runtimeConfig); mongodExecutable = runtime.prepare(newMongodConfig(MongoDbVersion.V4_2_4)); startMongodExecutable(); }
Example #14
Source File: Environment.java From dremio-oss with Apache License 2.0 | 5 votes |
private final IRuntimeConfig newRuntimeConfig(Command command, boolean daemonProcess) { final StaticArtifactStore artifactStore = StaticArtifactStore.forCommand(command); resources.add(artifactStore); return new RuntimeConfigBuilder() .defaultsWithLogger(command, LoggerFactory.getLogger(MongoDBResource.class)) .artifactStore(artifactStore) .daemonProcess(daemonProcess) .build(); }
Example #15
Source File: EmbedMongoConfiguration.java From syndesis with Apache License 2.0 | 5 votes |
private static void startEmbeddedMongo() { final IStreamProcessor logDestination = new Slf4jStreamProcessor(LoggerFactory.getLogger("embeddeddmongo"), Slf4jLevel.INFO); final IStreamProcessor daemon = Processors.named("mongod", logDestination); final IStreamProcessor error = Processors.named("mongod-error", logDestination); final IStreamProcessor command = Processors.named("mongod-command", logDestination); final ProcessOutput processOutput = new ProcessOutput(daemon, error, command); final IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder() .defaults(Command.MongoD) .artifactStore(new ExtractedArtifactStoreBuilder() .defaults(Command.MongoD) .extractDir(new FixedPath(".extracted")) .download(new DownloadConfigBuilder() .defaultsForCommand(Command.MongoD) .artifactStorePath(new FixedPath(".cache")) .build()) .build()) .processOutput(processOutput) .build(); try { final IMongodConfig mongodConfig = createEmbeddedMongoConfiguration(); final MongodExecutable mongodExecutable = MongodStarter.getInstance(runtimeConfig) .prepare(mongodConfig); mongodExecutable.start(); } catch (IOException e) { throw new UncheckedIOException(e); } }
Example #16
Source File: Mongo42xDownloadConfigBuilder.java From mongodb-aggregate-query-support with Apache License 2.0 | 4 votes |
public DownloadConfigBuilder packageResolverForCommand(Command command) { packageResolver(new Mongo42xPaths(command)); return this; }
Example #17
Source File: Mongo42xPaths.java From mongodb-aggregate-query-support with Apache License 2.0 | 4 votes |
public Mongo42xPaths(Command command) { super(command); }
Example #18
Source File: StaticArtifactStore.java From dremio-oss with Apache License 2.0 | 4 votes |
public static StaticArtifactStore forCommand(Command command) { IArtifactStore store = new ExtractedArtifactStoreBuilder().defaults(command).build(); return new StaticArtifactStore(store); }
Example #19
Source File: Environment.java From dremio-oss with Apache License 2.0 | 4 votes |
private final IRuntimeConfig newToolRuntimeConfig(Command command) { return newRuntimeConfig(command, false); }
Example #20
Source File: MongoJavaRDDFT.java From deep-spark with Apache License 2.0 | 4 votes |
@BeforeSuite public static void init() throws IOException { Command command = Command.MongoD; try { Files.forceDelete(new File(DB_FOLDER_NAME)); } catch (Exception e) { } new File(DB_FOLDER_NAME).mkdirs(); IMongodConfig mongodConfig = new MongodConfigBuilder() .version(Version.Main.PRODUCTION) .configServer(false) .replication(new Storage(DB_FOLDER_NAME, null, 0)) .net(new Net(PORT, Network.localhostIsIPv6())) .cmdOptions(new MongoCmdOptionsBuilder() .syncDelay(10) .useNoPrealloc(true) .useSmallFiles(true) .useNoJournal(true) .build()) .build(); IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder() .defaults(command) .artifactStore(new ArtifactStoreBuilder() .defaults(command) .download(new DownloadConfigBuilder() .defaultsForCommand(command) .downloadPath("https://s3-eu-west-1.amazonaws.com/stratio-mongodb-distribution/"))) .build(); MongodStarter runtime = MongodStarter.getInstance(runtimeConfig); mongodExecutable = null; mongodExecutable = runtime.prepare(mongodConfig); mongod = mongodExecutable.start(); }
Example #21
Source File: Environment.java From dremio-oss with Apache License 2.0 | 4 votes |
private final IRuntimeConfig newRuntimeConfig(Command command) { return newRuntimeConfig(command, true); }
Example #22
Source File: EmbeddedMongoFactory.java From rya with Apache License 2.0 | 2 votes |
/** * Create the testing utility using the specified version of MongoDB. * * @param version * version of MongoDB. */ private EmbeddedMongoFactory(final IFeatureAwareVersion version) throws IOException { final MongodStarter runtime = MongodStarter.getInstance(new RuntimeConfigBuilder().defaultsWithLogger(Command.MongoD, logger).build()); mongodExecutable = runtime.prepare(newMongodConfig(version)); mongodProcess = mongodExecutable.start(); }