本文整理汇总了Python中bzt.modules.grinder.GrinderExecutor.shutdown方法的典型用法代码示例。如果您正苦于以下问题:Python GrinderExecutor.shutdown方法的具体用法?Python GrinderExecutor.shutdown怎么用?Python GrinderExecutor.shutdown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bzt.modules.grinder.GrinderExecutor
的用法示例。
在下文中一共展示了GrinderExecutor.shutdown方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_full_Grinder
# 需要导入模块: from bzt.modules.grinder import GrinderExecutor [as 别名]
# 或者: from bzt.modules.grinder.GrinderExecutor import shutdown [as 别名]
def test_full_Grinder(self):
obj = GrinderExecutor()
obj.kpi_file = os.path.abspath(__dir__() + "/../grinder/test.log")
obj.engine = EngineEmul()
obj.execution.merge(
{"concurrency": {"local": 2}, "hold-for": 5, "scenario": {"requests": ["http://blazedemo.com"]}}
)
obj.prepare()
try:
obj.cmd_line = __dir__() + "/../grinder/grinder.sh"
obj.startup()
while not obj.check():
time.sleep(obj.engine.check_interval)
finally:
obj.shutdown()
self.assertRaises(RuntimeWarning, obj.post_process)
示例2: test_full_Grinder
# 需要导入模块: from bzt.modules.grinder import GrinderExecutor [as 别名]
# 或者: from bzt.modules.grinder.GrinderExecutor import shutdown [as 别名]
def test_full_Grinder(self):
obj = GrinderExecutor()
obj.kpi_file = os.path.abspath(__dir__() + '/../grinder/test.log')
obj.engine = EngineEmul()
obj.execution.merge({"concurrency": {"local": 2},
"hold-for": 5,
"scenario": {"requests": ['http://blazedemo.com']}})
obj.prepare()
self.assertEqual(len(obj.cmd_line), 5)
cmd_line = ' '.join(obj.cmd_line)
self.assertTrue(cmd_line.startswith('java -classpath'))
self.assertNotEqual(cmd_line.find('net.grinder.Grinder'), -1)
try:
obj.cmd_line = __dir__() + "/../grinder/grinder" + EXE_SUFFIX
obj.startup()
while not obj.check():
time.sleep(obj.engine.check_interval)
finally:
obj.shutdown()
self.assertRaises(RuntimeWarning, obj.post_process)