-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.py
233 lines (157 loc) · 4.96 KB
/
tasks.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import random
from time import sleep
from locust import HttpUser
import networkx as nx
import numpy as np
def between(min_, max_):
return min_ + random.random() * (max_ - min_)
class StateMeta(type):
def __new__(mcs, classname, bases, class_dict):
return type.__new__(mcs, classname, bases, class_dict)
class State(metaclass=StateMeta):
data = {}
children = {}
@classmethod
def get_next(cls):
choices = list(cls.children.keys())
weights = list(cls.children.values())
if choices:
return np.random.choice(choices, p=weights)
return None
def execute(self, *args, **kwargs):
raise NotImplementedError
class TransitionMeta(type):
def __new__(mcs, classname, bases, class_dict):
current_state = class_dict['current_state'] or None
transitions = class_dict['transitions'] or {}
if current_state is not None:
current_state.children = transitions
return type.__new__(mcs, classname, bases, class_dict)
class Transition(metaclass=TransitionMeta):
current_state = None
transitions = {}
class MarkovChain(nx.MultiDiGraph):
def __init__(self, root, **attr):
super().__init__(**attr)
self.root = root
self.states = [root]
self.add_state(root)
def add_state(self, state):
for next_, w in state.children.items():
self.add_edge(state.__name__, next_.__name__, label=str(w), weight=w)
if next_ not in self.states:
self.states.append(next_)
self.add_state(next_)
def generate_chain(self):
chain_ = [self.root]
while True:
next_ = chain_[-1].get_next()
if next_ is not None:
chain_.append(next_)
else:
break
return chain_
def run(self, *args, **kwargs):
"""
Run through the entire MarkovChain.
The context will be updated and passed through the chain.
:param args:
:param kwargs:
"""
context = {}
for state in self.generate_chain():
result = state.execute(self, *args, **kwargs, **context)
if result is not None:
context.update(result)
products = [
"0PUK6V6EV0",
"1YMWWN1N4O",
"2ZYFJ3GM2N",
"66VCHSJNUP",
"6E92ZMYYFZ",
"9SIQT8TOJO",
"L9ECAV7KIM",
"LS4PSXUNUM",
"OLJCESPC7Z"]
class Index(State):
def execute(self, locust: HttpUser):
locust.client.get("/")
sleep(between(2, 15))
class SetCurrency(State):
def execute(self, locust: HttpUser):
currencies = ["EUR", "USD", "JPY", "CAD"]
locust.client.post("/setCurrency", {"currency_code": random.choice(currencies)})
sleep(between(2, 15))
class BrowseProduct(State):
def execute(self, locust: HttpUser):
locust.client.get("/product/" + random.choice(products))
sleep(between(5, 30))
class ViewCart(State):
def execute(self, locust: HttpUser):
locust.client.get("/cart")
sleep(between(5, 30))
class AddToCart(State):
def execute(self, locust: HttpUser):
product = random.choice(products)
locust.client.get("/product/" + product)
sleep(between(5, 30))
locust.client.post("/cart", {
"product_id": product,
"quantity": random.choice([1, 2, 3, 4, 5, 10])})
sleep(between(2, 15))
class Checkout(State):
def execute(self, locust: HttpUser):
locust.client.post("/cart/checkout", {
"email": "[email protected]",
"street_address": "1600 Amphitheatre Parkway",
"zip_code": "94043",
"city": "Mountain View",
"state": "CA",
"country": "United States",
"credit_card_number": "4432-8015-6152-0454",
"credit_card_expiration_month": "1",
"credit_card_expiration_year": "2039",
"credit_card_cvv": "672",
})
sleep(between(2, 15))
class Close(State):
def execute(self, locust: HttpUser):
pass
class IndexTransition(Transition):
current_state = Index
transitions = {
SetCurrency: 0.3,
BrowseProduct: 0.6,
Close: 0.1
}
class SetCurrencyTransition(Transition):
current_state = SetCurrency
transitions = {
BrowseProduct: 0.8,
Close: 0.2
}
class BrowseProductTransition(Transition):
current_state = BrowseProduct
transitions = {
BrowseProduct: 0.2,
AddToCart: 0.6,
Close: 0.2
}
class AddToCartTransition(Transition):
current_state = AddToCart
transitions = {
BrowseProduct: 0.2,
ViewCart: 0.6,
Close: 0.2
}
class ViewCartTransition(Transition):
current_state = ViewCart
transitions = {
BrowseProduct: 0.3,
Checkout: 0.7,
}
class CheckoutTransition(Transition):
current_state = Checkout
transitions = {
Close: 1
}