-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocust_test.py
28 lines (21 loc) · 1.17 KB
/
locust_test.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
from locust import HttpUser, task, between
import time
class LargeFileDownloadUser(HttpUser):
wait_time = between(1, 2)
@task
def download_large_file(self):
url = "/oem-share/sutton/bachman/sutton-workstation-2022-10-07/pc-sutton-bachman-focal-amd64-X00-20221004-139.iso"
headers = {"Host": "tel-image-cache.canonical.com"}
start_time = time.time() # Start measuring before the request
with self.client.get(url, headers=headers, stream=True, catch_response=True) as response:
if response.status_code == 200:
file_size = 0
for chunk in response.iter_content(chunk_size=1024 * 1024): # Read in 1MB chunks
file_size += len(chunk)
duration = time.time() - start_time # Measure total time
# Manually override Locust’s response_time
response.request_meta["response_time"] = duration * 1000 # Convert to ms
response.success()
print(f"Downloaded {file_size / (1024 * 1024):.2f} MB in {duration:.2f} seconds")
else:
response.failure(f"Failed with status {response.status_code}")