File tree Expand file tree Collapse file tree 3 files changed +22
-18
lines changed
je_load_density/wrapper/user_template Expand file tree Collapse file tree 3 files changed +22
-18
lines changed Original file line number Diff line number Diff line change 1818
1919---
2020> Project Kanban \
21- > https://github.com/orgs/Integration-Automation/projects/2/views/1 \
22- > Locust Wrapper \
23- > Wrapper for Locust, simplifying complex Locust configurations. \
24- > Solves problems:
25- >> * Checking Requests & Response for each load test
26- >> * Load automation for SOAP protocols
27- >> * Comparison of numerical values for each load test
28- >> * Detailed load test reports for each test.
29- ---
30- ### Features
31-
32- > * HTTP HTTPS stress automation and load automation
33- > * Action FIle
34- > * response compare
35- > * CLI with action file
36-
21+ > https://github.com/orgs/Integration-Automation/projects/2/views/1
22+ > * Load automation.
23+ > * Easy setup user template.
24+ > * Load Density script.
25+ > * Generate JSON/HTML/XML report.
26+ > * 1 sec / thousands requests.
27+ > * Fast spawn users.
28+ > * Multi test on one task.
29+ > * Specify test time.
30+ > * OS Independent.
31+ > * Remote automation support.
32+ > * Project & Template support.
3733---
3834
3935## install
Original file line number Diff line number Diff line change 1+ import datetime
2+ import sys
3+
14from locust import FastHttpUser , between
25from locust import task
36
Original file line number Diff line number Diff line change 44 {
55 "user" : "fast_http_user" ,
66 },
7- 50 , 10 , 5 ,
8- ** {
7+ 1000 , 100 , 30 ,
8+ web_ui_dict =
9+ {
10+ "host" : "127.0.0.1" ,
11+ "port" : 8089
12+ },
13+ ** {
914 "tasks" : {
1015 "get" : {"request_url" : "http://httpbin.org/get" },
1116 "post" : {"request_url" : "http://httpbin.org/post" }
You can’t perform that action at this time.
0 commit comments