Skip to main content

E2E & Load Tests

Goal of this document: Fully featured E2E & Load Tets to verify PATH works and scales.

E2E Test

Table of Contents

tl;dr How do I run the tests?

1. Run E2E tests

# Shannon E2E tests with all service IDs
make e2e_test_all

# Shannon E2E tests with specified service IDs only
make e2e_test eth,anvil

# Morse E2E tests with all service IDs
make morse_e2e_test_all

# Morse E2E tests with specified service IDs only
make morse_e2e_test F00C,F021

2. Run load tests

🔑 Grove Portal Credentials

A Grove Portal Application ID and API Key are required to run load tests against the Grove Portal.

Run make copy_e2e_load_test_config to copy and populate the load test config file with your Portal credentials.

You will be prompted to enter your Grove Portal Application ID and API Key. If you do not have these, you can get them by visiting the Grove Portal.

# Shannon load tests with all service IDs
make load_test_all

# Shannon load tests with specified service IDs only
make load_test eth,anvil

# Morse load tests with all service IDs
make morse_load_test_all

# Morse load tests with specified service IDs only
make morse_load_test F00C,F021

Overview

The E2E tests verify:

  • Correct request routing
  • Service responses (data + latency)
  • System reliability under load
  • Success metrics across different protocols (Morse & Shannon)

We use the Vegeta library for HTTP load testing:

  • Can generate thousands of requests/sec
  • Collects detailed metrics including latency percentiles (p50, p95, p99)
  • Supports custom configurations and attack parameters
  • Validates JSON-RPC responses and success rates

Vegeta

E2E & Load Test Modes

PATH E2E tests support two distinct modes of operation:

ModeMake TargetsPurposeHow it WorksUse Cases
E2E Testmake e2e_test
make morse_e2e_test
Full end-to-end testing that starts PATH in an isolated Docker container1. Spins up PATH in a Docker container using Dockertest
2. Uses protocol config (.morse.config.yaml or .shannon.config.yaml)
3. Runs tests
4. Tears down container
- Full system validation
- Continuous integration
- Regression testing
Load Testmake load_test
make morse_load_test
Performance testing against existing PATH instances1. Sends requests to a provided gateway URL (local or remote)
2. No Docker container setup required
- Testing production gateway
- Testing local PATH instances

E2E Test Config Files

There are a few types of configs:

  • E2E Test mode requires protocol-specific configuration because it spins up a local PATH instance.
  • Load Test mode targets an external or local PATH instance, so protocol configs are not needed.
Configuration FileE2E Test (Required?)Load Test (Required?)Default available?
./e2e/config/.morse.config.yaml (for Morse)
./e2e/config/.shannon.config.yaml (for Shannon)
./e2e/config/.e2e_load_test.config.yaml (custom)e2e/config/e2e_load_test.config.tmpl.yaml
Populate Configs

You can use the following commands to copy example configs and follow the instructions in your CLI:

For E2E tests:

  • make morse_prepare_e2e_config
  • make shannon_prepare_e2e_config

For Load tests:

  • make copy_e2e_load_test_config

Load Test Mode Configuration

You will need one of the following:

  1. Portal Access

    • gateway_url_override: https://rpc.grove.city/v1
    • Get credentials from the Grove Portal
  2. Local PATH Instance

    • gateway_url_override: http://localhost:3069/v1
    • Run make path_run in another shell to start PATH

Schema and Validation

The configuration uses a formal YAML schema with validation:

Schema Location: ./e2e/config/e2e_load_test.config.schema.yaml

VSCode Validation

If you are using VSCode, we recommend using the YAML Language Support extension for in-editor validation of the .config.yaml file.

Enable it by ensuring the following annotation is present at the top of your config file:

# yaml-language-server: $schema=https://raw.githubusercontent.com/buildwithgrove/path/refs/heads/main/e2e/config/e2e_load_test.config.schema.yaml

Supported Services in E2E Tests

All currently supported Grove Portal services are supported in the E2E & Load tests.

tip

To see the list of supported services for the tests, see the test_cases array in the E2E & Load Test Config file.

Environment Variables

These environment variables are set by the test make targets, but if you wish to set them manually, see the table below:

Env Vars Table
VariableDescriptionValuesRequired
TEST_MODEDetermines the test execution modee2e, loadYes
TEST_PROTOCOLSpecifies which protocol to testmorse, shannonYes
TEST_SERVICE_IDSSpecifies which service IDs to test. If not set, all service IDs for the protocol will be tested.Comma-separated list of service IDsNo

Extending/Updating/Adding EVM E2E Tests

To add new services or methods to the E2E tests, you will need to open a new PR to PATH's main branch.

  1. Add new service definitions to the services array in the e2e/config/services_shannon.yaml or e2e/config/services_morse.yaml configuration file
  2. Configure service parameters including contract addresses, start blocks, and transaction hashes for archival tests

Example new service configuration:

./config/services_morse.yaml

services:
- name: "New Chain Load Test"
protocol: "morse"
service_id: "FNEW"
archival: true
service_params:
contract_address: "0x..."
contract_start_block: 1000000
transaction_hash: "0x..."
call_data: "0x18160ddd"

Test Metrics and Validation

The E2E tests collect and validate comprehensive metrics across multiple dimensions:

CategoryMetrics Collected
HTTP Metrics- Success rates (HTTP 200)
- Status code distribution
- HTTP error categorization
Latency Metrics- P50, P95, P99 latency percentiles
- Average latency
- Per-method latency analysis
JSON-RPC Validation- Response unmarshaling success
- JSON-RPC error field validation
- Result field validation
- Protocol-specific validation
Service-Level Metrics- Per-service success aggregation
- Cross-method performance comparison
- Service reliability scoring
- Error categorization and reporting
Threshold Validation

Tests will fail if any configured thresholds are exceeded, ensuring consistent service quality and performance.

Troubleshooting

Running Binary manually (no docker)

Load tests may also be run against a local PATH instance.

To enable this, first set the gateway URL override:

yq eval '.e2e_load_test_config.load_test_config.gateway_url_override = "http://localhost:3069/v1"' -i ./e2e/config/.e2e_load_test.config.yaml

Then, in one shell, run:

# Replace with .morse.config.yaml for Morse
cp ./e2e/config/.shannon.config.yaml ./local/path/.config.yaml
make path_run

Once the PATH instance is running, in another shell, run one of the following:

Assuming you have configured PATH for the eth service ID on the shannon protocol.

# Shannon load test for `eth` service ID
make load_test eth

Reviewing PATH Logs

In E2E test mode, logs may be written to ./path_log_e2e_test_{timestamp}.txt.

In order to enable this, set the log_to_file field:

yq eval '.e2e_load_test_config.e2e_config.docker_config.log_to_file = true' -i ./e2e/config/.e2e_load_test.config.yaml

You should see the following log line at the bottom of the test summary:

===== 👀 LOGS 👀 =====

✍️ PATH container output logged to /tmp/path_log_e2e_test_1745527319.txt ✍️

===== 👀 LOGS 👀 =====

Debugging Anvil on Shannon Beta TestNet

🌿 Grove Employees Only

Review the Anvil Shannon Beta TestNet Debugging Playbook if you believe the Anvil Supplier is broken.