Document
摘要: 整体思路 1.使用Jenkins集成各个模块 2.整体分为四个模块:创建监控模块、创建用户模块、创建测试数据模块、执行压测模块 3.使用Jenkins容器实现,最总只发布一个docker-compose文件 创建监控模块 1.在Jenkins容器中内置grafana+prometheus+Consu 阅读全文
posted @ 2022-03-09 11:53 lsepi 阅读(184) 评论(0) 推荐(0) 编辑
摘要: Jenkins实现下拉框选择参数,联动显示不同的子参数 安装插件“Active Choices” Job选择参数化构建过程,添加一个“选项参数” 设置好选项名称和参数值 再添加一个参数“Active Choices Reactive Parameter” 参数配置如下 if(branch.equal 阅读全文
posted @ 2022-03-04 10:24 lsepi 阅读(1017) 评论(0) 推荐(0) 编辑
摘要: 线程数:${__P(concurrent_number,100)} 并发数量,默认是100并发 Ramp-Up时间:${__P(ramp_time,1)} 所有线程启动时间,默认是1秒 循环次数:${__P(cycles,1)} 循环次数,默认是1次,当值为 -1时,则表示永远 持续时间:${__P 阅读全文
posted @ 2022-02-25 15:49 lsepi 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 执行linux,清理内存 echo 3 > /proc/sys/vm/drop_caches 阅读全文
posted @ 2022-02-25 15:44 lsepi 阅读(86) 评论(0) 推荐(0) 编辑
摘要: import os import sys def copy_file(srcfile, dstpath): if not os.path.isfile(srcfile): print("{} 文件不存在".format(srcfile), flush=True) sys.exit(1) else: 阅读全文
posted @ 2022-02-25 15:40 lsepi 阅读(52) 评论(0) 推荐(0) 编辑
摘要: def replace_contents(old_content, new_content, file_path): file_data = "" with open(file_path, "r", encoding="UTF-8") as f: for line in f: if old_cont 阅读全文
posted @ 2022-02-25 15:38 lsepi 阅读(64) 评论(0) 推荐(0) 编辑
摘要: import threading mutex_lock = threading.RLock() class Threads(threading.Thread): def __init__(self,name): threading.Thread.__init__(self) def run(self 阅读全文
posted @ 2022-02-25 15:36 lsepi 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 在【HTTP信息头管理器】中添加如下信息: x-Forwarded-For ${__Random(10,200,)}.${__Random(2,255,)}.${__Random(2,255,)}.${__Random(1,255,)} 阅读全文
posted @ 2022-02-23 14:28 lsepi 阅读(68) 评论(0) 推荐(1) 编辑
摘要: 重写unittest import unittest class ParametrizedTestCase(unittest.TestCase): """ TestCase classes that want to be parametrized should inherit from this c 阅读全文
posted @ 2022-01-21 15:04 lsepi 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 下载软碟通软件并安装 https://cn.ultraiso.net/uiso9_cn.exe 下载Win10操作系统,迅雷下载链接: magnet:?xt=urn:btih:71bfed06c686525d644bb200930297c12cf61766&dn=zh-cn_windows_10_c 阅读全文
posted @ 2022-01-20 21:41 lsepi 阅读(470) 评论(0) 推荐(0) 编辑