A tool to convert HAR files into a locustfile.
Project description
Transformer
A tool to transform/convert web browser sessions (HAR files) into Locust load testing scenarios (locustfile).
This tool can be used when you have HAR files (containing recordings of interactions with your website) that you then want to replay in load tests using Locust.
Installation
Install from PyPI with pip:
pip install har-transformer
Usage
Import in your code and use it:
from transformer import transform
with open("locustfile.py", "w") as locust_file:
locust_file.write(transform.main("scenarios_directory/"))
Example HAR files are included in the examples
directory for you to try out.
How-to
Create a HAR file
Using Chrome Developer Tools
Record
- Prepare your scenario by thinking through the steps you want to execute
- Open Chrome in either Guest or Incognito mode (it's important to have no cookies prior to starting)
- Open the Developer Tools
- Open the Network panel
- Select Disable cache and Preserve log
- Clear the existing log by clicking the Clear :no_entry_sign: button
- Ensure recording is enabled, the Record button should be red :red_circle: (click to toggle)
- Navigate to your target site by entering the URL in the address bar e.g. https://www.zalando.de, https://www.zalando.de/damen-home/, etc.
- Perform your scenario by clicking through the pages, filling in forms, clicking buttons etc.
N.B. It's recommend that after each click/action, and before the next one, you wait until the network panel stops showing activity. This is to ensure that all requests are properly recorded.
Save
Once you have finished performing your scenario:
- End recording by clicking the Record :red_circle: button
- Right-click on any of the file names listed in the bottom pane of the Network panel
- Select Save as HAR with content
- Save the file on your machine
ℹ️ You can view the details of the recorded HAR by simply drag-and-dropping it into the Chrome Developer Tools Network panel.
Scenario weights
By default, all scenarios have the same weight 1, which means they should all be executed as often as the others.
You can specify a different weight for each HAR file by creating an associated weight file. Weights must be positive, non-null integers due to how Locust works. Consider the following scenario group:
$ ls
scenario1.har
scenario2.har
scenario2.weight
$ cat scenario2.weight
3
Here are the weights Transformer will specify in the corresponding locustfile:
Scenario | Weight |
---|---|
scenario1.har |
1 |
scenario2.har |
3 |
This means that Locust will run scenario2.har
3 times as much as
scenario1.har
.
Hierarchical scenarios
It may be the case that all your scenarios cannot be treated the same:
- some only apply to a part of your load test target,
- some should run more often than others.
For instance, the Zalando website works differently depending on its top-level domain: zalando.fr has an additional step before payment compared to zalando.de. This requires using different scenarios (i.e. different HAR files) depending on the tested domain. Moreover, to execute a realistic load test, we need to produce much more traffic targeting certain countries (i.e. groups of scenarios) than others.
To accommodate this way of working, our HAR files are organized in TLD-specific directories, each of which is potentially associated to a specific "weight" according to the relative amount of traffic expected:
scenarios/
├── Germany/
│ ├── scenario_1.har
│ ├── scenario_2.har
│ └── scenario_2.weight
├── Germany.weight
├── Switzerland/
│ └── scenario_1.har
└── Switzerland.weight
The "weight file" of directories (Germany.weight
, Switzerland.weight
) are
similar to scenario weight files but apply to the whole
directory (relatively to other directories of the same level).
Thus, in the previous example, if Germany.weight
is 6
and
Switzerland.weight
is 2
, then Germany scenarios will be executed (in total)
3 times more (6 / 2) than Switzerland scenarios.
A directory without a weight file has a weight of 1.
Scenarios can be arbitrarily nested, allowing you to organize and weight them as you want:
scenarios/
├── Germany/
│ ├── beauty/
│ │ └── checkout.har
│ ├── kids/
│ │ └── frontpage.har
│ ├── kids.weight
│ └── scenario_1.har
├── Germany.weight
├── Switzerland/
│ └── scenario_1.har
└── Switzerland.weight
To represent this, Transformer will produce nested Locust TaskSets in the resulting locustfile.
Blacklist specific URLs
By default, Transformer converts all requests found in input HAR files.
You can blacklist, i.e. ignore, certain URLs by creating a .urlignore
file in the directory
in which Transformer is called.
Example
A .urlignore
containing:
google
www.facebook.com
https://mosaic
... would ignore requests with URLs such as https://www.google.com
, https://www.facebook.com/
, and
https://mosaic01-abc.js
(amongst others).
An example blacklist file called .urlignore_example
exists
that you can use as a base.
Use plugins
In case you need some customization of the Locustfile generated by Transformer, you can use its plugin
mechanisms to achieve it. Please see plugins
documentation for more details.
Contributing
Please read CONTRIBUTING.md for details on our process for submitting pull requests to us, and please ensure you follow the CODE_OF_CONDUCT.md.
The only required dependency for local development is Poetry.
With Poetry, our Makefile
installs all necessary dependencies
and run all tests and linters:
make
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
- Serhii Cherniavskyi - @scherniavsky
- Thibaut Le Page - @thilp
- Brian Maher - @bmaher
- Oliwia Zaremba - @tortila
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE.md file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for har_transformer-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e160a8034f1f8022400ca5cfdc7d5c8f326aa25601752297c65cb83b119d0cf2 |
|
MD5 | bcc1bdc120ed9cb6fd806b2a3e4a5365 |
|
BLAKE2b-256 | d6ff80fd700a949617cc63435fd4dc2e7606ca2528c425f955b2ecedef500afd |