Skip to main content

Rust Sample Application​

View as Markdown

Introduction​

This is a sample app to test Keploy integration capabilities using rust and MongoDb. Buckle up, it's gonna be a fun ride! 🎢

🛠️ Platform-Specific Requirements for Keploy​

Below is a table summarizing the tools needed for both native and Docker installations of Keploy on macOS, Windows, and Linux:

Operating SystemWithout DockerDocker InstallationPrerequisites
macOS macOSSupported Native, Apple Silicon (Go, Node, Python, Java)GuideNative: nothing to install — no Docker, no Lima, no sudo.
Only if you choose a container route: Docker Desktop 4.25.2+, or Lima (which is also the route on an Intel Mac).
Windows WindowsSupported Native, x86‑64 (Go, Node, Python, Java)GuideNative: nothing to install — no WSL, no Docker, no Administrator.
Only if you choose a container route: WSL (wsl --install, Windows 10 2004+/build 19041+ or Windows 11 — also the route on Windows/ARM), or Docker Desktop 4.25.2+.
Linux LinuxSupportedSupportedLinux kernel 5.10 or higher

Keploy runs natively on macOS (Apple Silicon / arm64) and Windows (x86‑64) — neither has eBPF, so it intercepts traffic in userspace on both, and neither needs sudo or Administrator. Natively on macOS and Windows, Keploy understands HTTP/HTTPS, MySQL and MongoDB calls; calls to other services — PostgreSQL, Redis, Kafka, gRPC and the like — are captured only as raw bytes and usually don't replay, so for an app that runs in containers or depends on them, use Docker. Docker, Lima (macOS) and WSL (Windows) remain supported alternatives, and WSL is the route on Windows on ARM. On an Intel Mac use Lima: the Docker route on macOS still runs the native CLI on the host, so it is Apple Silicon only too.

Installation Overview​

The install is the same whatever your plan. You need a free Keploy account to record and replay: the first keploy record or keploy test signs you in, and your plan decides which additional features are available.

Quick Installation Using CLI​

On Linux and macOS (Apple Silicon), install Keploy with:

 curl --silent -O -L https://keploy.io/install.sh && source install.sh

You should see something like this:

       ▓██▓▄
▓▓▓▓██▓█▓▄
████████▓▒
▀▓▓███▄ ▄▄ ▄ ▌
▄▌▌▓▓████▄ ██ ▓█▀ ▄▌▀▄ ▓▓▌▄ ▓█ ▄▌▓▓▌▄ ▌▌ ▓
▓█████████▌▓▓ ██▓█▄ ▓█▄▓▓ ▐█▌ ██ ▓█ █▌ ██ █▌ █▓
▓▓▓▓▀▀▀▀▓▓▓▓▓▓▌ ██ █▓ ▓▌▄▄ ▐█▓▄▓█▀ █▓█ ▀█▄▄█▀ █▓█
▓▌ ▐█▌ █▌
▓

Keploy CLI

Available Commands:
example Example to record and test via keploy
config --generate generate the keploy configuration file
record record the keploy testcases from the API calls
test run the recorded testcases and execute assertions
update Update Keploy

Flags:
--debug Run in debug mode
-h, --help help for keploy
-v, --version version for keploy

Use "keploy [command] --help" for more information about a command.

🎉 Wohoo! You are all set to use Keploy.

On Windows (x86-64), Keploy is a single keploy.exe, installed from PowerShell without Administrator — see Run Keploy natively on Windows.

Other Installation Methods​

Install using Docker

Downloading and running Keploy in Docker

With this method your application and Keploy's agent run in Docker, but the keploy CLI — which starts them both — runs on your machine. Use it when your app runs in containers, or on macOS and Windows when your app depends on services beyond HTTP/HTTPS, MySQL and MongoDB: natively there, calls to other services — PostgreSQL, Redis, Kafka, gRPC and the like — are captured only as raw bytes and usually don't replay.

  1. Open up a terminal window.

  2. Create a bridge network in Docker using the following docker network create command:

docker network create keploy-network
  1. Install Keploy: on Linux and macOS with the command below, on Windows with the PowerShell steps. On macOS the CLI is Apple Silicon (arm64) only — on an Intel Mac, run Keploy with Lima instead.
 curl --silent -O -L https://keploy.io/install.sh && source install.sh

Examples:​

Record:

keploy record -c "docker run -p <appPort>:<hostPort> --name <containerName> --network keploy-network <applicationImage>" --container-name "<containerName>" --buildDelay 60

Test:

keploy test --c "docker run -p <appPort>:<hostPort>  --name <containerName> --network keploy-network <applicationImage>" --delay 10
Install Manually

Downloading the Keploy binary yourself

These download the same keploy binary the install command above installs.

On Linux​

Prerequisite: Linux kernel 5.10 or higher (uname -r shows yours). This picks the build for your architecture:

case "$(uname -m)" in
x86_64) ARCH=amd64 ;;
aarch64 | arm64) ARCH=arm64 ;;
*) echo "unsupported architecture: $(uname -m)" >&2; false ;;
esac &&
curl --fail --silent --show-error --location -o /tmp/keploy \
"https://keploy.io/ent/dl/latest/enterprise_linux_${ARCH}" &&
sudo install -m 0755 /tmp/keploy /usr/local/bin/keploy

The same steps work inside WSL on Windows and inside a Lima VM on macOS.

On macOS (Apple Silicon)​

mkdir -p ~/.keploy/bin &&
curl --fail --silent --show-error --location -o ~/.keploy/bin/keploy \
"https://keploy.io/ent/dl/latest/enterprise_darwin_arm64" &&
chmod +x ~/.keploy/bin/keploy
export PATH="$HOME/.keploy/bin:$PATH" # add this line to your ~/.zshrc too

There is no Intel macOS build: on an Intel Mac, use the Linux steps inside Lima.

On Windows (x86-64)​

Follow the PowerShell steps. On Windows on ARM, use the Linux steps inside WSL.

If you run Keploy inside WSL with Docker: setting up Docker Desktop for WSL 2

  1. Install Docker Desktop for Windows from here.

When developing on Windows with Docker Desktop and WSL 2, it's crucial to configure Docker Desktop to allow WSL 2 distributions to access the Docker daemon. This setup enables seamless integration between your Windows environment, WSL 2 Linux distros, and Docker.

By default, Docker Desktop may not be configured to work with all WSL 2 distros out of the box. Proper configuration ensures that you can run Docker commands from within your WSL 2 environment, allowing for a more native Linux development experience while leveraging the power of Windows.

This setup is essential for Keploy to function correctly in a WSL 2 environment, as it needs to interact with the Docker daemon to manage containers and networks effectively. For detailed instructions on how to configure Docker Desktop for WSL 2, please refer to the official Docker documentation.

Get Started! 🎬​

Setup app​

Now that we have bun installed, we will setup our application.

git clone https://github.com/keploy/samples-rust && cd samples-rust/CRUD-rust-mongo

Running App Locally on Linux/WSL 🐧​

We will be using Docker compose to run Mongo on Docker container.

Let's start the MongoDB Instance​

docker compose up -d

Capture testcase​

sudo -E env PATH=$PATH keploy record -c 'cargo run'

Generate testcase​

  1. Create Notes
curl --location 'http://localhost:8000/api/notes/' \
--header 'Content-Type: application/json' \
--data '{
"title": "You'\''ll learn how to build a CRUD API with FastAPI",
"content": "Fastapi is really easy to use",
"category": "FastAPI"
}'

which will return

{
"status": "success",
"data": {
"note": {
"id": "6618fa20875aedcfe96e08ed",
"title": "You'll learn how to build a CRUD API with FastAPI",
"content": "Fastapi is really easy to use",
"category": "FastAPI",
"published": false,
"createdAt": "2024-04-12T09:08:48.686Z",
"updatedAt": "2024-04-12T09:08:48.686Z"
}
}
}
  1. Get Notes
curl --location 'http://localhost:8000/api/notes/6618fa20875aedcfe96e08ed'

This is how keploy terminal would look like:

Testcase

Run the testcases​

Now, let's run the keploy in test mode again:-

sudo -E env PATH=$PATH keploy test -c 'cargo run'

Voila!! Our testcases has passed 🌟

Hope this helps you out, if you still have any questions, reach out to us .