etcd/tools/functional-tester
Gyuho Lee 0850ccbf45 *: revert "internal/version" change
Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
2018-02-26 17:11:40 -08:00
..
etcd-agent etcd-agent: use "pkg/transport.Proxy" 2018-01-24 17:37:09 -08:00
etcd-runner *: revert "internal/version" change 2018-02-26 17:11:40 -08:00
etcd-tester etcd-tester: fix spell check warnings 2018-02-26 10:03:54 -08:00
scripts tools/functional-tester: use Go 1.10 2018-02-19 02:27:37 -08:00
README.md tools/functional-tester: clean up Docker scripts 2018-02-14 11:26:32 -08:00
build tools/functional-tester: update "build" script 2018-01-24 15:26:17 -08:00

README.md

etcd functional test suite

etcd functional test suite tests the functionality of an etcd cluster with a focus on failure resistance under high pressure. It sets up an etcd cluster and inject failures into the cluster by killing the process or isolate the network of the process. It expects the etcd cluster to recover within a short amount of time after fixing the fault.

etcd functional test suite has two components: etcd-agent and etcd-tester. etcd-agent runs on every test machines and etcd-tester is a single controller of the test. etcd-tester controls all the etcd-agent to start etcd clusters and simulate various failure cases.

Requirements

The environment of the cluster must be stable enough, so etcd test suite can assume that most of the failures are generated by itself.

etcd agent

etcd agent is a daemon on each machines. It can start, stop, restart, isolate and terminate an etcd process. The agent exposes these functionality via HTTP RPC.

etcd tester

etcd functional tester control the progress of the functional tests. It calls the RPC of the etcd agent to simulate various test cases. For example, it can start a three members cluster by sending three start RPC calls to three different etcd agents. It can make one of the member failed by sending stop RPC call to one etcd agent.

Run locally

PASSES=functional ./test

Run with Docker

To run locally, first build tester image:

pushd ../..

make build-docker-functional-tester \
  -f ./hack/scripts-dev/Makefile

popd

And run example scripts.

# run 3 agents for 3-node local etcd cluster
./scripts/docker-local-agent.sh 1
./scripts/docker-local-agent.sh 2
./scripts/docker-local-agent.sh 3

# to run only 1 tester round
LIMIT=1 ./scripts/docker-local-tester.sh

# to run long-running tests with no limit
LIMIT=1 ./scripts/docker-local-tester.sh

# to run only 1 tester round with election runner and others
# default is STRESSER="keys,lease"
LIMIT=1 \
  STRESSER="keys,lease,election-runner,watch-runner,lock-racer-runner,lease-runner" \
  ./scripts/docker-local-tester.sh