commit | f2f1323d4219b07654d4ddf4c461cc141ee6dc73 | [log] [tgz] |
---|---|---|
author | Thomas Draebing <thomas.draebing@sap.com> | Tue Nov 12 13:47:08 2019 +0100 |
committer | Thomas Draebing <thomas.draebing@sap.com> | Tue Nov 12 13:47:08 2019 +0100 |
tree | 5a36f809cd5d81c73c4d3381bbd6bc9833a6d4e1 | |
parent | f2450abf6f0e2600965ece577d7b1d3d875969de [diff] |
Allow to add CA for HTTPS-connections Tests against Gerrit servers using HTTPS were failing, since no valid CA was available. Now certificates that are mounted to `/var/loadtest/certs` will be used as a CA. Change-Id: I92d115cb9fc593c49a26f6abcaa62f9fee27ea6b
This project provides a tool to load test Gerrit by running a set of actions typically used by Gerrit users.
The test relies heavily on randomness. The script will for the duration of the tests loop through all possible actions that are defined. For each action it will calculate a random number between 0 and 1 and execute the action if the number is higher than a configured threshold. Thus, depending on the configuration, not all actions will be executed in each cycle of the loop, thereby simulating that users will not always do the same series of actions. By adjusting the probability thresholds different scenarios based on statistics can be simulated.
The python scripts are formatted using black
[2]. The code style is further checked by pylint
[3].
To install the tools, run:
pipenv install --dev
To lint the files, run:
pipenv run black $(find . -name '*.py') && pipenv run pylint $(find . -name '*.py')
Black will automatically format all python-files. Pylint, however, will not automatically fix issues in the code. Please fix the issues pylint is showing or in reasonable cases disable the respective rules in a reasonable scope.
The tool is meant to be run in a container. To build this container, run:
docker build -t gerrit/loadtester ./container
A configuration file in yaml-format can be used to configure the test run. The config.sample.yaml
-file gives an example-configuration.
The single configuration values are listed here:
key | description | default value |
---|---|---|
gerrit.url | URL of the Gerrit test server | http://localhost:8080 |
gerrit.user | Gerrit user used for tests | admin |
gerrit.password | Password of Gerrit user | secret |
testrun.duration | Duration for which to run the tests | null (indefinitely) |
testrun.initialization.createProjects.enabled | Whether to create new projects during initialization | true |
testrun.initialization.createProjects.number | How many new projects to create during initialization | 1 |
testrun.initialization.knownProjects | List of projects that the simulated user knows of from the beginning | nil |
testrun.waitBetweenCycles.enabled | Whether to pause between test cycles | true |
testrun.waitBetweenCycles.min | Minimum time of pause | 1 |
testrun.waitBetweenCycles.max | Maximum time of pause | 10 |
actions.* | Probability with which an action is performed in each cycle (0 : never, 1 : always) | 1 |
The following actions can be performed by the tests:
key | description |
---|---|
clone_project | Test performs a clone of a project, that is assigned to the simulated user |
create_project | Test creates a new project via REST |
fetch_project | Test fetches a project, that is assigned to the simulated user and was already cloned |
push_for_review | Test creates random commits in a cloned project and pushes them to refs/for/master |
push_head_to_master | Test creates random commits in a cloned project and pushes them to the remote's master |
query_hundred_open_changes | Queries changes via REST |
query_projects | Queries projects via REST |
review_change | Reviews a change via REST |
To run an instance of the load tester. run:
docker run -it gerrit/loadtester \ --config $CONFIG_FILE \ --duration $TEST_DURATION \ --password $GERRIT_PWD \ --url $GERRIT_URL \ --user $GERRIT_USER
The options are:
--config
(default: None
): Path to a config file (optional). The config file has to be present in the container, either by building it in or by mounting it. Parameters will overwrite configuration from file.--duration
(default: None
): Duration, for which to run the tests in seconds (optional; if not set, test runs until stopped)--password
(default: secret
): Password of Gerrit user used for executing actions--url
: URL of Gerrit (REQUIRED; e.g. https://gerrit.example.com
)--user
(default: admin
): User to be used for executing actionsIf the target Gerrit server is using the HTTPS-protocol, the load test requires a valid not self-signed CA. Certificates that are mounted to the /var/loadtest/certs
will be used to that perpose. This can be done like this:
docker run -it gerrit/loadtester \ -v <certificate dir>:/var/loadtest/certs
The docker containers may be used to run the load tests in Kubernetes to simulate multiple users (each instance acts as a single user). This project provides an example deployment yaml: ./kubernetes/load-tester/load-tester.*.yaml
. To install the Kubernetes setup, adjust the configuration in the yaml-files.
./kubernetes/load-tester/load-tester.secret.yaml
. The values have to be base64-encoded../kubernetes/load-tester/load-tester.configmap.yaml
. The config-file structure is the same as described above../kubernetes/load-tester/load-tester.deployment.yaml
.Afterwards, create all resources on the cluster:
Kubectl apply ./kubernetes/load-tester/load-tester.secret.yaml Kubectl apply ./kubernetes/load-tester/load-tester.configmap.yaml Kubectl apply ./kubernetes/load-tester/load-tester.deployment.yaml
Further, an example deployment for a logging stack based on ElasticSearch, FluentBit and Kibana to collect the logs created by the load testing scripts is provided in ./efk/
.
To install the EFK-stack, run:
helm install stable/elasticsearch \ -n elasticsearch \ -f ./kubernetes/efk/elasticsearch.yaml \ --namespace logging helm install stable/fluent-bit \ -n fluentbit \ -f ./kubernetes/efk/fluentbit.yaml \ --namespace logging helm install stable/kibana \ -f kubernetes/efk/kibana.yaml \ -n kibana \ --namespace logging
[1] https://github.com/pypa/pipenv [2] https://github.com/psf/black [3] https://www.pylint.org/