Source code for locust.shape

from __future__ import annotations
import time
from typing import Optional, Tuple, List, Type
from abc import ABC, abstractmethod

from . import User
from .runners import Runner


[docs]class LoadTestShape(ABC): """ Base class for custom load shapes. """ runner: Optional[Runner] = None """Reference to the :class:`Runner <locust.runners.Runner>` instance""" def __init__(self): self.start_time = time.perf_counter()
[docs] def reset_time(self): """ Resets start time back to 0 """ self.start_time = time.perf_counter()
[docs] def get_run_time(self): """ Calculates run time in seconds of the load test """ return time.perf_counter() - self.start_time
[docs] def get_current_user_count(self): """ Returns current actual number of users from the runner """ return self.runner.user_count
[docs] @abstractmethod def tick(self) -> Tuple[int, float] | Tuple[int, float, Optional[List[Type[User]]]] | None: """ Returns a tuple with 2 elements to control the running load test: user_count -- Total user count spawn_rate -- Number of users to start/stop per second when changing number of users user_classes -- None or a List of userclasses to be spawned in it tick If `None` is returned then the running load test will be stopped. """ ...