-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocustfile.py
41 lines (31 loc) · 1 KB
/
locustfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import math
from pathlib import Path
from locust import LoadTestShape, between, task
from locust.contrib.fasthttp import FastHttpUser
import random
testing_urls = Path('sitemap.txt').read_text().splitlines()
class WebUser(FastHttpUser):
@task
def load_test(self):
url = random.choice(testing_urls)
self.client.get(url)
# You can define custom load shape
class StepLoadShape(LoadTestShape):
"""
A step load shape
Keyword arguments:
step_time -- Time between steps
step_load -- User increase amount at each step
spawn_rate -- Users to stop/start per second at every step
time_limit -- Time limit in seconds
"""
step_time = 60
step_load = 10
spawn_rate = 1
time_limit = 86400 # 24h
def tick(self):
run_time = self.get_run_time()
if run_time > self.time_limit:
return None
current_step = math.floor(run_time / self.step_time) + 1
return (current_step * self.step_load, self.spawn_rate)