The Data Center App Performance Toolkit extends Taurus which is an open source performance framework that executes JMeter and Selenium.
This repository contains Taurus scripts for performance testing of Atlassian Data Center products: Jira, Confluence, and Bitbucket.
At the moment, Jira DC support is in beta. Confluence DC and Bitbucket DC support is coming soon.
-
Supported Jira versions:
- The latest Platform Release: 8.0.3
- The following Jira Enterprise Releases: 7.13.6 and 8.5.0
-
Supported Confluence versions:
- The latest Confluence Enterprise Release: 6.13.8
- Python 3.6+ and pip
- JDK 8
- Google Chrome web browser.
Please make sure you have a version of Chrome browser that is compatible with ChromeDriver version set in app/%product%.yml file (modules->selenium->chromedriver->version).
If a first part of ChromeDriver version does not match with a first part of your Chrome browser version, update Chrome browser or set compatible ChromeDriver version in .yml file.
Make sure that you have Python 3.6+, pip, and JDK 8 installed:
python3 --version
pip --version
java -version
We recommend using virtualenv for Taurus.
- Install virtualenv with pip:
pip install virtualenv
- Create new virtual env with python3:
virtualenv venv -p python3
- Activate virtual env:
source venv/bin/activate
- Install dependencies:
pip install -r requirements.txt
Make sure you have Python 3.6+, pip, and JDK 8 installed:
python --version or python3 --version
pip --version
java -version
Microsoft Visual C++ 14
Make sure you have Visual Studio build tool v14.22 installed. Otherwise, download it from Microsoft Visual C++ Build Tools: and do the following:
- Select Tools for Visual Studio 2019.
- Download and run Build Tools for Visual Studio 2019.
- Select the C++ build tools check box.
- Select the MSVC v142 - VS 2019 C++ x64/x86 build tools (v14.22) check box (clear all the others).
- Click Install.
We recommend using virtualenv for Taurus.
- Install virtualenv with pip:
pip install virtualenv
- Create new virtual env with python3:
virtualenv venv -p python
- Activate virtual env:
venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
If you see "There is newer version of Taurus available, consider upgrading." warning message during your test execution, please use the next command to apply the upgrade in your virtual environment.
pip install -r requirements.txt
Official Taurus installation instructions are located here.
Navigate to docs folder and follow instructions.