Posted by
jungjeongyun on
URL: http://ngrinder.373.s1.nabble.com/nGrinder-3-1-nGrinder-3-1-3-tp581.html
소스# -*- coding:utf-8 -*-
# A simple example using the HTTP plugin that shows the retrieval of a
# single page via HTTP.
#
# This script is auto generated by ngrinder.
#
# @author admin
from net.grinder.script.Grinder import grinder
from net.grinder.script import Test
from net.grinder.plugin.http import HTTPRequest
from HTTPClient import NVPair
from org.slf4j import LoggerFactory
from ch.qos.logback.classic import Level
from ch.qos.logback.classic import Logger
from net.grinder.plugin.http import HTTPPluginControl
control = HTTPPluginControl.getConnectionDefaults()
control.setTimeout(30000)
test1 = Test(2, "notice_request")
request1 = test1.wrap(HTTPRequest())
# control = HTTPPluginControl.getConnectionDefaults()
# if you want to follow the redirection, please modify the following option 1.
# contorl.setFollowRedirects(0)
# and add the import statement at the beginning
# from net.grinder.plugin.http import HTTPPluginControl
# if you want to increase the timeout, please modify the following option.
# control.setTimeout(3000)
class TestRunner:
def __init__(self):
logger = LoggerFactory.getLogger("worker");
logger.setLevel(Level.ERROR);
def __call__(self):
grinder.statistics.delayReports=True
result = request1.GET("
http://192.168.51.51/MDSM/1060/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX1?seq=1")
#
# result is a HTTPClient.HTTPResult.
# We get the message body using the getText() method.
# if result.getText().find("HELLO WORLD") != -1 :
# grinder.statistics.forLastTest.success = 1
# else :
# grinder.statistics.forLastTest.success = 0
# if you want to print out log..
# Don't use print keyword. This will make the output lost.
# instead use following.
# grinder.logger.info("Hello World")
if result.statusCode == 200 and result.getText().find("ok") != -1:
grinder.statistics.forLastTest.success = 1
else:
grinder.statistics.forLastTest.success = 0
--------------------------------------------------------------------------------------
스크립트 검증 결과2013-05-21 15:02:00,125 INFO The Grinder version 3.9.1
2013-05-21 15:02:00,128 INFO Java(TM) SE Runtime Environment 1.6.0_38-b05: Java HotSpot(TM) 64-Bit Server VM (20.13-b02, mixed mode) on Linux amd64 3.2.0-29-generic
2013-05-21 15:02:00,131 INFO time zone is KST (+0900)
2013-05-21 15:02:00,177 INFO worker process 0
2013-05-21 15:02:00,250 INFO instrumentation agents: byte code transforming instrumenter for Jython 2.5; byte code transforming instrumenter for Java
2013-05-21 15:02:02,087 INFO registered plug-in net.grinder.plugin.http.HTTPPlugin
2013-05-21 15:02:02,139 INFO running "notice_request.py" using Jython 2.5.3 (2.5:c56500f08d34+, Aug 13 2012, 14:54:35)
[Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)]
2013-05-21 15:02:02,141 INFO validation-0: starting threads
2013-05-21 15:02:02,188 INFO validation-0: finished
----------------------------------------------------------------------------------------------------------------
3.1에서는 잘 돌아가던 소스인데 어떻게 수정해야 될지 막막하네요...