Keploy as a Temporal testing framework
Keploy records the gRPC API exchanges your service has with Temporal, then replays them byte for byte in tests. Your Temporal client runs unchanged and does its real work on every run, but CI needs no Temporal instance, no schema and no seed data.
keploy record -c "<your app start command>"What Keploy gives a Temporal team
Every Temporal call your service makes
Keploy records the gRPC exchanges between your worker and the Temporal service, plus the calls activities make, so a workflow can be tested without a Temporal cluster.
- gRPC API captured
- Activity calls captured
- Task queue responses kept
- No cluster in CI
Why Temporal integration tests slow teams down
The friction is rarely the assertions. It is everything around them — spinning up dependencies, keeping mocks honest, and repairing tests after every refactor.
Testing Temporal: by hand, with WireMock, or with Keploy
Testcontainers gives a test a real Temporal server at the cost of running one. A hand-written stub is cheap but never exercises the gRPC API. Keploy replays the recorded exchange with nothing running.
Select any row for the full comparison, with code.
What you write for Temporal vs what Keploy records
All three produce the same assertion. Only the third still passes after the next refactor without anyone editing it.
A hand-written stub of the Temporal client. The driver never runs.
WireMock runs the real Temporal. Fidelity is genuine; the job pays for it.
Recorded from one real request. Nothing here was typed by hand.
Times are estimates for authoring one endpoint’s coverage from scratch, not measurements.
Temporal testing tools, compared
The options a team on service and platform integrations actually reaches for, and where each one genuinely wins. Select a row for the full comparison.
Assessments reflect each tool’s documented behaviour, not benchmark measurements.
Record your Temporal app once, replay it forever
Keploy sits below your Temporal process at the network layer. It watches the calls your app already makes, then serves them back on replay so tests run with no dependencies attached.
Keploy records a GET call to /api/v1/orders/{id} on a Temporal service and captures the dependency calls it makes.
What Keploy mocks for Temporal, with zero config
5 of the 6 dependencies a typical Temporal service talks to are stubbed from the recording itself — no mock classes, no fixture files, no containers in CI.
- Outbound HTTPAuto-mocked
Outbound HTTP
Every outbound HTTP call
- Partial
gRPCView page
HTTP/2 frames from a gRPC client
- Auto-mocked
PostgreSQLView page
Postgres protocol beneath the driver
- Auto-mocked
RedisView page
RESP beneath the cache client
- Auto-mocked
MongoDBView page
Wire protocol beneath the Mongo driver
- Auto-mocked
Apache KafkaView page
Kafka protocol beneath the client
Your first Temporal test suite in under five minutes
Every command below runs against your existing Temporal service. Nothing in your source tree changes.
1Install the Keploy CLI
A single binary. It needs a Linux kernel with eBPF support, or Docker on macOS and Windows — and it adds nothing to your project's dependencies.
curl -sSL https://keploy.io/install.sh | bash2Record your service
Pass the command you already use to start the app. Keploy runs it and watches every socket it opens.
keploy record -c "<your app start command>"3Exercise the paths you care about
Use curl, your frontend, or an existing smoke script. Every request becomes a test case with its Temporal calls captured alongside it.
curl -X POST localhost:8080/orders/o-1/confirmcurl localhost:8080/orders/o-14Replay in CI
Replay serves the recorded dependency responses, so the job needs no service containers and no Docker daemon.
keploy test -c "<your app start command>" --delay 10
Ready to try it on your own Temporal service?
Works with the rest of your Temporal stack
Keploy records at the network layer, so framework and driver choices inside your Temporal app do not change how it captures traffic.
- Outbound HTTP
Outbound HTTP
The traffic being captured
Kubernetes
Where these services usually run
Docker
The other common runtime
gRPC
A common protocol alongside
Node.js
A common client runtime
Go
Another common client runtime
Testing the rest of your stack
- Cloud & Infra
Keploy as a Kubernetes testing framework
Record traffic from a running pod and replay it as tests in CI, without a cluster, a namespace, or a service mesh.
Read the guide - Cloud & Infra
Keploy as a Docker testing framework
Record traffic inside a container once and replay it in CI without Docker Compose, a test stack, or a daemon in the runner.
Read the guide - Cloud & Infra
Keploy as a gRPC testing framework
Record real gRPC exchanges over HTTP/2 and replay them as tests — no in-process stub server, no hand-written mock service implementation.
Read the guide - Cloud & Infra
Keploy as a GraphQL testing framework
Record real GraphQL operations once and replay resolver-level coverage without a mocked schema or hand-written resolver stubs.
Read the guide - Cloud & Infra
Keploy as a AWS Lambda testing framework
Record a Lambda handler's real invocation and downstream calls once, then replay them as tests without SAM local or a deploy.
Read the guide - Cloud & Infra
Keploy as a Amazon S3 testing framework
Record real S3 uploads, downloads, and presigned URL calls once and replay them in tests without a bucket or credentials.
Read the guide
Join our GlobalCommunity
Connect with developers worldwide. Follow updates, ask questions, share feedback, and ship faster with other Keploy builders.
“Best report of integration and API tests I've seen — which we don't get from RestAssured.”
G2“Future of microservices testing. I don't write tests now!”
Mahfooz A. · G2 · 5/5“An amazing product that simplifies the automation.”
Gartner · 4.0