master
tongli 6 years ago
commit 031047aef7

@ -0,0 +1 @@
print('hello world')

Binary file not shown.

@ -0,0 +1,49 @@
from locust import HttpLocust, TaskSet, task
import json
class UserBehavior(TaskSet):
token = ''
userId = ''
headers = ''
def login(self):
data = {
"email": "xxxxxxx",
"passwd": "xxxxxxx",
}
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json'}
response = self.client.post(
'xxxxxx/login',
data=json.dumps(data),
headers=headers)
content = json.loads(response.content)
self.token = {"token": content['data']['token']}
self.userId = content['data']['userId']
def logout(self):
with self.client.get('xxxxxx/logout', params=self.token, catch_response=True) as response:
if response.status_code != 200:
response.failure()
def user_details(self):
data = {'userId': self.userId}
with self.client.get('xxxxxxxx/view', params=data, headers=self.headers, catch_response=True) as response:
if response.status_code != 200:
response.failure()
@task(10)
def login_logout(self):
self.login()
self.user_details()
self.logout()
class WebsiteUser(HttpLocust):
host = 'http://10.1.51.221:7600/'
task_set = UserBehavior
min_wait = 5000
max_wait = 9000

@ -0,0 +1 @@
33333

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Loading…
Cancel
Save