本文共 3105 字,大约阅读时间需要 10 分钟。
ngrinder 的 groovy 脚本是顺序结构的,用户可通过编写脚本执行过程中被预置的函数进行用户操作,完成各种复杂的测试工作。
ngrinder 使用进程和线程来模拟多个用户。例如,如果您设置了如下的测试。只有一个代理将被激活,1个进程将被调用,然后这个进程将包括2个运行线程。每个线程的行为就像1个用户。因此,2个虚拟用户正在运行。如果将代理计数增加到2,则总共有4个虚拟用户(Vusers)。
并发量=代理数x进程数x线程数
如果在Vuser per agent 中输入总的虚拟用户数时,nGrinder根据内部算法,会进行适当的计算,如输入100,当agent数为1时, 会变成99,该算法可以通过 process_and_thread_policy.js 这个文件来修改。若果agent 的内存4G以下的话,建议进程不要超过10个,线程数不要超过200.
- 官方最新测试:4G内存的agent 最多可以模拟4000 虚拟用户。
依据上面对agent、进程与线程的解释,就比较好理解ngrinder groovy 脚本的
结构了。控制器将脚本分发给agent,每个agent按照算法启动对应数量的进程,每个进程里在启动对应数量的线程,执行测试任务。
注解 | 描述 | 执行次数 | 用例 |
---|---|---|---|
@BeforeProcess | 在进程被调用之前执行的函数 | 每进程一次 | 加载被线程共享的资源文件,定义 公共变量等 |
@AfterProcess | 在进程被终止之前执行该函数 | 每进程一次 | 关闭资源文件 |
@BeforeThread | 在每个线程被调用之前执行的函数 | 每线程一次 | 登录目标系统,建立线程内的一些值,例如,Cookie 处理 |
@AfterThread | 在每个线程被终止之前执行的函数 | 每线程一次 | 退出系统 |
@Before | 每个被 @Test 注解的方法被执行前应执行的函数 | 同虚拟用户数 | 每个被 @Test 注解的方法的共享逻辑、变量设置 |
@After | 每个被 @Test 注解的方法被执行后应执行的函数 | 同虚拟用户数 | 很少使用 |
@Test | 主测试行为,将被被执行多次 | 同虚拟用户数 | 测试体 |
/*这个脚本是对需要验签接口的压测*/import static net.grinder.script.Grinder.grinderimport static org.junit.Assert.*import static org.hamcrest.Matchers.*import net.grinder.plugin.http.HTTPRequestimport net.grinder.plugin.http.HTTPPluginControlimport net.grinder.script.GTestimport net.grinder.script.Grinderimport net.grinder.scriptengine.groovy.junit.GrinderRunnerimport net.grinder.scriptengine.groovy.junit.annotation.BeforeProcessimport net.grinder.scriptengine.groovy.junit.annotation.BeforeThread// import static net.grinder.util.GrinderUtils.* // You can use this if you're using nGrinder after 3.2.3import org.junit.Beforeimport org.junit.BeforeClassimport org.junit.Testimport org.junit.runner.RunWithimport java.util.Dateimport java.util.Listimport java.util.ArrayListimport org.slf4j.LoggerFactory; import ch.qos.logback.classic.Level;import HTTPClient.Cookieimport HTTPClient.CookieModuleimport HTTPClient.HTTPResponseimport HTTPClient.NVPairimport java.text.SimpleDateFormat;import org.apache.commons.codec.binary.Base64;import java.security.spec.PKCS8EncodedKeySpec;import java.security.KeyFactory;import java.security.PrivateKey;import java.security.Signature;import java.util.Arrays;import org.apache.commons.lang.StringUtils;import java.lang.StringBuilderimport java.io.UnsupportedEncodingException;/** * A simple example using the HTTP plugin that shows the retrieval of a * single page via HTTP. * * This script is automatically generated by ngrinder. * * @author admin */@RunWith(GrinderRunner)class TestRunner { public static GTest test public static HTTPRequest request // 定义全局变量 public static NVPair[] params = [] public static Cookie[] cookies = [] public static String private_key public static String[] contents = [] @BeforeProcess public static void beforeProcess() { HTTPPluginControl.getConnectionDefaults().timeout = 6000 test = new GTest(1, "Test1") request = new HTTPRequest() // 获取加密私钥内容 contents = new File("./resources/rsa_private_key_pkcs8.pem") as String[] StringBuilder private_str = new StringBuilder(); for(int i=0;i
转载于:https://blog.51cto.com/13673090/2306627