sample.groovy


package org.ngrinder;


import static net.grinder.script.Grinder.grinder

import static org.junit.Assert.*

import static org.hamcrest.Matchers.*

import net.grinder.plugin.http.HTTPRequest

import net.grinder.plugin.http.HTTPPluginControl;

import net.grinder.script.GTest

import net.grinder.script.Grinder

import net.grinder.scriptengine.groovy.junit.GrinderRunner

import net.grinder.scriptengine.groovy.junit.annotation.BeforeProcess

import 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.3

import org.junit.Before

import org.junit.BeforeClass

import org.junit.Test

import org.junit.runner.RunWith


import HTTPClient.HTTPResponse

import HTTPClient.NVPair


/**

 * 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


@BeforeProcess

public static void beforeProcess() {

HTTPPluginControl.getConnectionDefaults().timeout = 6000

test = new GTest(1, "www.test.com")

request = new HTTPRequest()

test.record(request);

grinder.logger.info("before process.");

}


@BeforeThread 

public void beforeThread() {

grinder.statistics.delayReports=true;

grinder.logger.info("before thread.");

}


@Test

public void test(){

grinder.sleep(500)

HTTPResponse result = request.POST("https://www.test.com/", [new NVPair("ID","test"), new NVPair("passwd","b4dfd2d829dcc39be2ad47a09f2cbbf8")] as NVPair[])


if (result.statusCode == 301 || result.statusCode == 302) {

grinder.logger.warn("Warning. The response may not be correct. The response code was {}.", result.statusCode); 

} else {

assertThat(result.statusCode, is(200));

}

}

}



'IDE & Build > Test' 카테고리의 다른 글

ngrinder - cookie, header  (0) 2014.12.10
Posted by linuxism
,