dcache/bench/locustfile.py

70 lines
1.7 KiB
Python
Raw Permalink Normal View History

2023-12-28 13:44:21 +05:30
import json
2023-12-28 19:15:07 +05:30
import time
2023-12-28 14:23:45 +05:30
import grpc
2023-12-29 16:07:45 +05:30
import gevent
from pprint import pprint
2023-12-29 16:07:45 +05:30
from locust import FastHttpUser, between, task, events
2023-12-28 13:44:21 +05:30
from dcache_py import dcache_pb2 as dcache
from dcache_py.dcache_pb2 import RaftRequest
from dcache_py.dcache_pb2_grpc import DcacheServiceStub
import adaptor
2023-12-28 14:23:45 +05:30
host = "localhost:9001"
captcha_id = "locust"
def add_captcha(stub: DcacheServiceStub, captcha_id: str):
msg = dcache.AddCaptchaRequest(
id=captcha_id,
mcaptcha=dcache.MCaptcha(
duration=30,
defense=dcache.Defense(
levels=[
dcache.Level(visitor_threshold=50, difficulty_factor=500),
dcache.Level(visitor_threshold=5000, difficulty_factor=50000),
]
),
),
)
resp = stub.AddCaptcha(msg)
pprint(f"Captcha added {captcha_id}: {resp}")
with grpc.insecure_channel(host) as channel:
stub = DcacheServiceStub(channel)
add_captcha(stub=stub, captcha_id=captcha_id)
2023-12-28 13:44:21 +05:30
2023-12-29 16:07:45 +05:30
pipeline_msgs = []
for _ in range(0,10):
pipeline_msgs.append(dcache.DcacheRequest(addVisitor=dcache.CaptchaID(id=captcha_id)))
pipeline_msgs = dcache.DcacheBatchRequest(requests=pipeline_msgs)
2023-12-28 19:15:07 +05:30
#def pipeline_generate_messages():
# for msg in pipeline_msgs:
# yield msg
2023-12-28 13:44:21 +05:30
class HelloGrpcUser(adaptor.GrpcUser):
stub_class = DcacheServiceStub
2023-12-28 14:23:45 +05:30
host = host
captcha_id = captcha_id
2023-12-28 19:15:07 +05:30
msg = dcache.CaptchaID(id=captcha_id)
def add_vote(self, captcha_id: str):
2023-12-28 19:15:07 +05:30
resp = self.stub.AddVisitor(self.msg)
2023-12-29 16:07:45 +05:30
def add_vote_pipeline(self):
res = self.stub.PipelineDcacheOps(pipeline_msgs)
2023-12-28 13:44:21 +05:30
2023-12-28 19:15:07 +05:30
# @task
2023-12-29 16:07:45 +05:30
# def addVote(self):
# self.add_vote(self.captcha_id)
2023-12-28 13:44:21 +05:30
2023-12-29 16:07:45 +05:30
@task
def addVotePipeline(self):
self.add_vote_pipeline()