The test suite requires shared tooling that is stored in a separate repository and is referenced as a submodule. After checking out the desired driver branch, check out the matching submodules:
git submodule init
git submodule update
To run the test suite against a local MongoDB deployment listening on port 27017, run:
rake
When run without options, the test suite will automatically detect deployment topology and configure itself appropriately. Standalone, replica set and sharded cluster topologies are supported (though the test suite will presently use only the first listed shard in a sharded cluster if given a seed list, or the one running on port 27017 if not given a seed list).
TLS, authentication and other options can be configured via URI options by
setting MONGODB_URI
environment variable appropriately. Examples of such
configuration are given later in this document.
The tests require a running MongoDB deployment, configured and started externally to the test suite.
Tests that are not appropriate for the running deployment will be skipped, with one exception: the test suite assumes that fail points are enabled in the deployment (see the Fail Points section below). Not every test uses fail points, therefore it is possible to launch the server without fail points being enabled and still pass many of the tests in the test suite.
There are many ways in which MongoDB can be started. The instructions below
are for manually launching mongod
instances and using
mlaunch
(part of mtools) for more complex
deployments, but other tools like
mongodb-runner and
Mongo Orchestration can
in principle also work.
The simplest possible deployment is a standalone mongod
, which can be
launched as follows:
# Launch mongod in one terminal
mkdir /tmp/mdb
mongod --dbpath /tmp/mdb --setParameter enableTestCommands=1
# Run tests in another terminal
rake
A standalone deployment is a good starting point, however a great many tests require a replica set deployment and will be skipped on a standalone deployment.
While a replica set can be started and configured by hand, doing so is cumbersome. The examples below use mlaunch to start a replica set.
First, install mtools:
pip install 'mtools[mlaunch]' --user -U --upgrade-strategy eager
# On Linux:
export PATH=~/.local/bin:$PATH
# On MacOS:
export PATH=$PATH:~/Library/Python/2.7/bin
Then, launch a replica set:
mlaunch init --replicaset --name ruby-driver-rs \
--dir /tmp/mdb-rs --setParameter enableTestCommands=1
The test suite willl automatically detect the topology, no explicit configuration is needed:
rake
Some tests require an arbiter to be present in the replica set. Such a
deployment can be obtained by providing --arbiter
argument to mlaunch:
mlaunch init --replicaset --arbiter --name ruby-driver-rs \
--dir /tmp/mdb-rs --setParameter enableTestCommands=1
To indicate to the test suite that the deployment contains an arbiter, set HAVE_ARBITER environment variable as follows:
HAVE_ARBITER=1 rake
A sharded cluster can be configured with mlaunch:
mlaunch init --replicaset --name ruby-driver-rs --sharded 1 --mongos 2 \
--dir /tmp/mdb-sc --setParameter enableTestCommands=1
As with the replica set, the test suite will automatically detect sharded cluster topology.
Note that some tests require a sharded cluster with exactly one shard and other tests require a sharded cluster with more than one shard. Tests requiring a single shard can be run against a deployment with multiple shards by specifying only one mongos address in MONGODB_URI.
MongoDB 4.2 (server and shell) added new command line options for setting TLS
parameters. These options follow the naming of URI options used by both the
shell and MongoDB drivers starting with MongoDB 4.2. The new options start with
the --tls
prefix.
Old options, starting with the --ssl
prefix, are still supported for backwards
compatibility, but their use is deprecated. As of this writing, mlaunch only
supports the old --ssl
prefix options.
In the rest of this document, when TLS options are given for mongo
or
mongod
they use the new --tls
prefixed arguments, and when the same options
are given to mlaunch
they use the old --ssl
prefixed forms. The conversion
table of the options used herein is as follows:
--tls prefixed option | --ssl prefixed option |
---|---|
--tls | --ssl |
--tlsCAFile | --sslCAFile |
--tlsCertificateKeyFile | --sslPEMKeyFile |
The test suite includes a set of TLS certificates for configuring a server
and a client to perform full TLS verification in the spec/support/certificates
directory. The server can be started as follows, if the current directory is
the top of the driver source tree:
mlaunch init --single --dir /tmp/mdb-ssl --sslMode requireSSL \
--sslPEMKeyFile `pwd`/spec/support/certificates/server.pem \
--sslCAFile `pwd`/spec/support/certificates/ca.crt \
--sslClientCertificate `pwd`/spec/support/certificates/client.pem
To test that the driver works when the server's certificate is signed by an intermediate certificate (i.e. uses certificate chaining), use the chained server certificate bundle:
mlaunch init --single --dir /tmp/mdb-ssl --sslMode requireSSL \
--sslPEMKeyFile `pwd`/spec/support/certificates/server-second-level-bundle.pem \
--sslCAFile `pwd`/spec/support/certificates/ca.crt \
--sslClientCertificate `pwd`/spec/support/certificates/client.pem
The driver's test suite is configured to verify certificates by default.
If the server is launched with the certificates from the driver's test suite,
the test suite can be run simply by specifying tls=true
URI option:
MONGODB_URI='mongodb://localhost:27017/?tls=true' rake
The driver's test suite can also be executed against a server launched with any other certificates. In this case the certificates need to be explicitly specified in the URI, for example as follows:
MONGODB_URI='mongodb://localhost:27017/?tls=true&tlsCAFile=path/to/ca.crt&tlsCertificateKeyFile=path/to/client.pem' rake
Note that some tests (specifically testing TLS verification) expect the server to be launched using the certificates in the driver's test suite, and will fail when run against a server using other certificates.
It is also possible to enable TLS but omit certificate verification. In this case a standalone server can be started as follows:
mlaunch init --single --dir /tmp/mdb-ssl --sslMode requireSSL \
--sslPEMKeyFile `pwd`/spec/support/certificates/server.pem \
--sslCAFile `pwd`/spec/support/certificates/ca.crt \
--sslAllowConnectionsWithoutCertificates \
--sslAllowInvalidCertificates
To run the test suite against such a server, also omitting certificate verification, run:
MONGODB_URI='mongodb://localhost:27017/?tls=true&tlsInsecure=true' rake
Note that there are tests in the test suite that cover TLS verification, and they may fail if the test suite is run in this way.
There are several types of OCSP tests implemented in the test suite.
OCSP unit tests are in spec/integration/ocsp_verifier_spec.rb
. To run
these, set OCSP_VERIFIER=1
in the environment. There must NOT be a process
running on the host port 8100 as that port will be used by the OCSP responder
launched by the tests.
For the remaining OCSP tests, the following environment variables must be set to the possible values indicated below:
OCSP_ALGORITHM=rsa|ecdsa
OCSP_STATUS=valid|revoked|unknown
OCSP_DELEGATE=0|1
OCSP_MUST_STAPLE=0|1
These tests also require the mock OCSP responder running on the host machine on port 8100 with the configuration that matches the environment variables just described. Please refer to the Docker and Evergreen scripts in the driver repository for further details.
Additionally, the server must be configured to use the appropriate server
certificate and CA certificate from the respective subdirectory of
spec/support/ocsp
. This is easiest to achieve by using the Docker tooling
described in .evergreen/README.md
.
OCSP connectivity tests are in spec/integration/ocsp_connectivity.rb
.
These test the combinations described
here.
To run these tests, set OCSP_CONNECTIVITY=pass
environment variable if
the tests are expected to connect successfully or OCSP_CONNECTIVITY=fail
if
the tests are expected to not connect.
Note that some of these configurations require OCSP responder to return
the failure response; in such configurations, ONLY the OCSP connectivity tests
may pass (since the driver may reject connections to servers when OCSP
responder returns the failure response, or OCSP verification otherwise
definitively fails).
When not running either OCSP verifier tests or OCSP connectivity tests but
when OCSP algorithm is configured, the test suite will execute normally
using the provided MONGO_URI
. This configuration may be used to exercise
OCSP while running the full test suite. In this case, setting OCSP_STATUS
to revoked
will generally cause the test suite to fail.
mlaunch can configure authentication on the server:
mlaunch init --single --dir /tmp/mdb-auth --auth --username dev --password dev
To run the test suite against such a server, run:
MONGODB_URI='mongodb://dev:dev@localhost:27017/' rake
Note: Testing X.509 authentication requires an enterprise build of the MongoDB server.
To set up a server configured for authentication with an X.509 certificate, first launch a TLS-enabled server with a regular credentialed user.
The credentialed user is required because mlaunch configures --keyFile
option for cluster member authentication, which in turn enables authentication.
With authentication enabled, mongod
allows creating the first user in the
admin
database but the X.509 user must be created in the $external
database - as a result, the X.509 user cannot be the only user in the deployment.
Run the following command to set up a standalone mongod
with a bootstrap
user:
mlaunch init --single --dir /tmp/mdb-x509 --sslMode requireSSL \
--sslPEMKeyFile `pwd`/spec/support/certificates/server.pem \
--sslCAFile `pwd`/spec/support/certificates/ca.crt \
--sslClientCertificate `pwd`/spec/support/certificates/client.pem \
--auth --username bootstrap --password bootstrap
Next, create the X.509 user. The command to create the user is the same across all supported MongoDB versions, and for convenience we assign its text to a variable as follows:
create_user_cmd="`cat <<'EOT'
db.getSiblingDB("$external").runCommand(
{
createUser: "C=US,ST=New York,L=New York City,O=MongoDB,OU=x509,CN=localhost",
roles: [
{ role: "dbAdminAnyDatabase", db: "admin" },
{ role: "readWriteAnyDatabase", db: "admin" },
{ role: "userAdminAnyDatabase", db: "admin" },
{ role: "clusterAdmin", db: "admin" },
],
writeConcern: { w: "majority" , wtimeout: 5000 },
}
)
EOT
`"
Use the MongoDB shell to execute this command:
mongo --tls \
--tlsCAFile `pwd`/spec/support/certificates/ca.crt \
--tlsCertificateKeyFile `pwd`/spec/support/certificates/client-x509.pem \
-u bootstrap -p bootstrap \
--eval "$create_user_cmd"
Verify that authentication is required by running the following command, which should fail:
mongo --tls \
--tlsCAFile `pwd`/spec/support/certificates/ca.crt \
--tlsCertificateKeyFile `pwd`/spec/support/certificates/client-x509.pem \
--eval 'db.serverStatus()'
Verify that X.509 authentication works by running the following command:
mongo --tls \
--tlsCAFile `pwd`/spec/support/certificates/ca.crt \
--tlsCertificateKeyFile `pwd`/spec/support/certificates/client-x509.pem \
--authenticationDatabase '$external' \
--authenticationMechanism MONGODB-X509 \
--eval 'db.serverStatus()'
The test suite includes a set of integration tests for X.509 client authentication.
To run the test suite against such a server, run:
MONGODB_URI="mongodb://localhost:27017/?authMechanism=MONGODB-X509&tls=true&tlsCAFile=spec/support/certificates/ca.crt&tlsCertificateKeyFile=spec/support/certificates/client-x509.pem" rake
The Kerberos-related functionality is packaged in a separate gem,
mongo_kerberos
. To run any of the Kerberos tests, a special gemfile must
be used that references mongo_kerberos
:
export BUNDLE_GEMFILE=gemfiles/mongo_kerberos.gemfile
bundle install
Ensure that BUNDLE_GEMFILE is set in the environment for both the
bundle install
invocation and the rake
/ rspec
invocation.
The driver test suite includes a number of Kerberos-related unit tests that
are skipped by default. To run them as part of the test suite, set the
MONGO_RUBY_DRIVER_KERBEROS
environment variable to 1
, yes
or true
as follows:
export MONGO_RUBY_DRIVER_KERBEROS=1
rake
Note that running the full test suite requires a MongoDB deployment. It is
possible to run just the Kerberos-related unit tests without provisioning a
MongoDB deployment; consult the .evergreen/run-tests-kerberos-unit.sh
file
for the full list of relevant test files.
The driver test suite includes a number of Kerberos-related integration tests
in the spec/kerberos
directory. These require a provisioned Kerberos
deployment and appropriately configured MongoDB deployment. One such deployment
is provided internally by MongoDB and is used in the driver's Evergreen
configuration; it is also possible to provision a test deployment locally,
either via the Docker tooling provided by the driver test suite or manually.
Run:
./.evergreen/test-on-docker -s .evergreen/run-tests-kerberos-integration.sh -pd rhel70
When SASL_HOST
environment variable is not set, the Kerberos integration
test script .evergreen/run-tests-kerberos-integration.sh
provisions a
local Kerberos deployment in the Docker container and configures the test suite
to use it.
Note: the tooling is currently set up to provision a working rhel70
container. Ubuntu distros are not presently supported.
The following additional environment variables must be set to run the Kerberos integration tests:
MONGO_RUBY_DRIVER_KERBEROS_INTEGRATION=1
SASL_HOST
: the FQDN host name of the MongoDB server that is configured to use Kerberos. Note that this is NOT the Kerberos domain controller (KDC).SASL_REALM
: the Kerberos realm. Depending on how Kerberos is configured, this can be the same as or different fromSASL_HOST
. The Evergreen configuration uses the same host and realm; Docker configuration provided by the Ruby driver uses different host and realm.SASL_PORT
: the port number that the Kerberized MongoDB server is listening on.SASL_USER
: the username to provide to MongoDB for authentication. This must match the username of the principal.SASL_DB
: the database that stores the user used for authentication. This is the "auth soure" in MongoDB parlance. Normally this should be$external
.PRINCIPAL
: the Kerberos principal to use for authentication, in the form ofusername@realm
. Note that the realm is commonly uppercased.KERBEROS_DB
: the database that the user has access to.
Note that the driver does not directly provide a password to the MongoDB
server when using Kerberos authentication, and because of this there is no
user password provided to the test suite either when Kerberos authentication
is used. Instead, there must be a local session established via e.g. kinit
.
Consult the .evergreen/run-tests-kerberos-integration.sh
file for details.
NOTE: Client-side encryption tests require an enterprise build of MongoDB server version 4.2 or higher. These builds of the MongoDB server come packaged with mongocryptd, a daemon that is spawned by the driver during automatic encryption. The client-side encryption tests require the mongocryptd binary to be in the system path.
Download enterprise versions of MongoDB here: https://www.mongodb.com/download-center/enterprise Download the Automatic Encryption Shared Library https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/shared-library/#std-label-qe-reference-shared-library-download Install and Configure mongocryptd: https://www.mongodb.com/docs/manual/core/queryable-encryption/reference/mongocryptd/
Install libmongocrypt on your machine:
Option 1: Download a pre-built binary
- Download a tarball of all libmongocrypt variations from this link: https://s3.amazonaws.com/mciuploads/libmongocrypt/all/master/latest/libmongocrypt-all.tar.gz
- Unzip the file you downloaded. You will see a list of folders, each corresponding to an operating system. Find the folder that matches your operating system and open it.
- Inside that folder, open the folder called "nocrypto." In either the lib or lb64 folder, you will find the libmongocrypt.so or libmongocrypt.dylib or libmongocrypt.dll file, depending on your OS.
- Move that file to wherever you want to keep it on your machine.
Option 2: Build from source
- To build libmongocrypt from source, follow the instructions in the README on the libmongocrypt GitHub repo: https://github.com/mongodb/libmongocrypt
Option 3: Use libmongocrypt-helper gem (Linux only)
- Run command
FLE=helper bundle install
Create AWS KMS keys Many of the Client-Side Encryption tests require that you have an encryption master key hosted on AWS's Key Management Service. Set up a master key by following these steps:
-
Sign up for an AWS account at this link if you don't already have one: https://aws.amazon.com/resources/create-account/
-
Create a new IAM user that you want to have permissions to access your new master key by following this guide: the "Creating an Administrator IAM User and Group (Console)" section of this guide: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user.html
-
Create an access key for your new IAM user and store the access key credentials in environment variables on your local machine. Create an access key by following the "Managing Access Keys (Console)" instructions in this guide: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html#Using_CreateAccessKey Once an access key has been created, store the access key id and the access key secret in environment variables. If you plan to frequently run Client-Side Encryption tests, it may be a good idea to put these lines in your .bash_profile or .bashrc file. Otherwise, you can run them in the terminal window where you plan to run your tests.
export MONGO_RUBY_DRIVER_AWS_KEY="YOUR-ACCESS-KEY-ID" export MONGO_RUBY_DRIVER_AWS_SECRET="YOUR-ACCESS-KEY-SECRET"
-
Create a new symmetric Customer Master Key (CMK) by following the "Creating Symmetric CMKs (Console)" section of this guide: https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html
-
Store information about your CMK in the following environment variables:
a. Region: Find your AWS region by following this guide: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#using-regions-availability-zones-describe (for example, your region might be "us-east-1" or "ap-south-2").
b. Amazon Resource Name (ARN): Read the following guide to learn more about ARNs and how to view your key's ARN: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys-console.html
Store these two pieces of information in environment variables. If you plan to frequently run Client-Side Encryption tests, it may be a good idea to put these lines in your .bash_profile or .bashrc file. Otherwise, you can run them in the terminal window where you plan to run your tests.
export MONGO_RUBY_DRIVER_AWS_REGION="YOUR-AWS-REGION" export MONGO_RUBY_DRIVER_AWS_ARN="YOUR-AWS-ARN"
-
Give your IAM user "Key administrator" and "Key user" privileges on your new CMK by following the "Using the AWS Management Console Default View" section of this guide: https://docs.aws.amazon.com/kms/latest/developerguide/key-policy-modifying.html
In one terminal, launch MongoDB:
mkdir /tmp/mdb
mongod --dbpath /tmp/mdb --setParameter enableTestCommands=1
In another terminal run the tests, making sure to set the LIBMONGOCRYPT_PATH
environment variable to the full path to the .so/.dll/.dylib
LIBMONGOCRYPT_PATH=/path/to/your/libmongocrypt/nocrypto/libmongocrypt.so bundle exec rake
If you would like to run the client-side encryption tests on a replica set or sharded cluster, be aware that the driver will try to spawn the mongocryptd daemon on port 27020 by default. If port 27020 is already in use by a mongod or mongos process, spawning mongocryptd will fail, causing the tests to fail as well.
To avoid this problem, set the MONGO_RUBY_DRIVER_MONGOCRYPTD_PORT environment variable to the port at which you would like the driver to spawn mongocryptd. For example, to always have the mongocryptd process listen on port 27090:
export MONGO_RUBY_DRIVER_MONGOCRYPTD_PORT=27090
Keep in mind that this will only impact the behavior of the Ruby Driver test suite, not the behavior of the driver itself.
To test compression, set the compressors
URI option:
MONGODB_URI="mongodb://localhost:27017/?compressors=zlib" rake
Note that as of this writing, the driver supports ztsd, snappy and zlib compression.
Servers 4.2+ enable zlib by default; to test older servers, explicitly enable zlib compression when launching the server:
mongod --dbpath /tmp/mdb --setParameter enableTestCommands=1 \
--networkMessageCompressors snappy,zlib
To specify server API parameters, use the SERVER_API
environment variable.
The server API parameters cannot be specified via URI options.
Both YAML and JSON syntaxes are accepted:
SERVER_API='{version: "1", strict: true}' rake
SERVER_API='{"version":"1","strict":true}' rake
Note that the input must be valid YAML or JSON and the version number must be a string, therefore all of the following specifications are invalid:
SERVER_API='{version:"1",strict:true}' rake
SERVER_API='{version: 1}' rake
SERVER_API='{"version":1,"strict":true}' rake
Generally, all URI options recognized by the driver may be set for a test run, and will cause the clients created by the test suite to have those options by default. For example, retryable writes may be turned on and off as follows:
MONGODB_URI='mongodb://localhost:27017/?retryWrites=true' rake
MONGODB_URI='mongodb://localhost:27017/?retryWrites=false' rake
Individual tests may override options that the test suite uses as defaults. For example, retryable writes tests may create clients with the retry writes option set to true or false as needed regardless of what the default is for the entire test run.
It is also possible to, for example, reference non-default hosts and replica set names:
MONGODB_URI='mongodb://test.host:27017,test.host:27018/?replicaSet=fooset' rake
However, as noted in the caveats section, changing the database name used by the test suite is not supported.
Some tests require internet connectivity, for example to test DNS seed lists and SRV URIs. These tests can be skipped by setting the following environment variable:
EXTERNAL_DISABLED=1
Some tests are designed to validate the driver's behavior under load, or otherwise execute a large number of operations which may take a sizable amount of time. Such tests are skipped by default and can be run by setting the following environment variable:
STRESS=1
Some tests fork the process to validate the driver's behavior when forking is involved. These tests are skipped by default and can be run by setting the following environment variable:
FORK=1
OCSP tests require Python 3 with asn1crypto, oscrypto and flask packages installed, and they require the drivers-evergreen-tools submodule to be checked out. To run these tests, set the following environment variable:
OCSP=1
To check out the submodule, run:
git submodule update --init --recursive
The test suite is run with the driver log level set to WARN
by default.
This produces a fair amount of output as many tests trigger various conditions
resulting in the driver outputting warnings. This is expected behavior.
To increase the driver log level to DEBUG
, set the
MONGO_RUBY_DRIVER_CLIENT_DEBUG
environment variable to 1
, true
or yes
.
This will produce additional log output pertaining to, for example, SDAM
events and transitions performed by the driver, as well as log all
commands sent to and responses received from the database.
To debug authentication and user management commands, set the
MONGO_RUBY_DRIVER_UNREDACT_EVENTS
environment variable to 1
, true
or
yes
. This will disable redaction of command monitoring payloads for sensitive
commands. Normally this environment variable should be used with
MONGO_RUBY_DRIVER_CLIENT_DEBUG
to see the command payloads.
If you get permission errors connecting to mongod
's socket, adjust its
permissions:
sudo chmod 0666 /tmp/mongodb-27017.sock
Alternatively, specify the following argument to mlaunch
or mongod
:
--filePermissions 0666
The test suite should be configured to connect to exactly the hostnames configured in the cluster. If, for example, the test suite is configured to use IP addresses but the cluster is configured with hostnames, most tests would still work (by using SDAM to discover correct cluster configuration) but will spend a significant amount of extra time on server discovery.
Some tests perform address assertions and will fail if hostnames configured in the test suite do not match hostnames configured in the cluster. For the same reason, each node in server configuration should have its port specified.
The test suite currently does not allow changing the database name that it
uses, which is ruby-driver
. Attempts to specify a different database name
in the URI for example will lead to some of the tests failing.
In order to run some of the tests, the mongo cluster needs to have fail points
enabled. This is accomplished by starting mongod
with the following option:
--setParameter enableTestCommands=1
Individual examples can be run by invoking rspec
instead of rake
. Prior
to running rspec
, ensure the test suite created users for itself - this
is done by the rake
command automatically, or you can manually invoke the
Rake task which configures the deployment for testing:
rake spec:prepare
Then, any of the standard RSpec invocations will work:
rspec path/to/file_spec.rb
To have the test suite report its current configuration, run:
rake spec:config
The test suite uses color output by default. To view the output in less
with color, use the -R
option:
rake 2>&1 | tee rake.log
less -R rake.log
The test suite is configured to use Byebug for debugging on MRI and ruby-debug on JRuby.
Call byebug
anywhere in the test suite to break into Byebug.
To debug on JRuby, the test suite must be started with the --debug
argument
to jruby
. This can be achieved by starting the test suite as follows:
jruby --debug -S rspec [rspec args...]
Call debugger
anywhere in the test suite to break into the debugger.
By default, when the test suite is running in a CI environment the debuggers are not loaded. The Docker runner emulates the CI environment, therefore to debug in Docker the debugger must be explicitly loaded first. To break into the debugger on MRI, call:
require 'byebug'
byebug
To break into the debugger on JRuby, call:
require 'ruby-debug'
debugger
- Install mongodb server v5.2+.
- Install haproxy.
- Install mongo-orchestration - https://github.com/10gen/mongo-orchestration/
- Install drivers-evergreen-tools - https://github.com/mongodb-labs/drivers-evergreen-tools. In ruby driver it is installed as git submodule under
.mod/drivers-evergreen-tools/
. - Start mongo-orchestration:
mongo-orchestration start
. - Start the cluster:
http PUT http://localhost:8889/v1/sharded_clusters/myCluster @.mod/drivers-evergreen-tools/.evergreen/orchestration/configs/sharded_clusters/basic-load-balancer.json
(this example uses httpie client, can be done with curl). - Start load balancer:
MONGODB_URI="mongodb://localhost:27017,localhost:27018/" .mod/drivers-evergreen-tools/.evergreen/run-load-balancer.sh start
. - Run tests:
TOPOLOGY=load-balanced MONGODB_URI='mongodb://127.0.0.1:8000/?loadBalanced=true' be rspec spec/
. - Stop load balancer:
MONGODB_URI="mongodb://localhost:27017,localhost:27018/" .mod/drivers-evergreen-tools/.evergreen/run-load-balancer.sh stop
. - Stop the cluster:
http DELETE http://localhost:8889/v1/sharded_clusters/myCluster
- Stop mongo-orchestration:
mongo-orchestration stop
.