Skip to content

AOMC-Coop/NgrinderStompTest

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NgrinderStompTest

aomc-test example

import random
from net.grinder.script.Grinder import grinder
from net.grinder.script import Test
from net.grinder.plugin.http import HTTPRequest
from net.grinder.plugin.http import HTTPPluginControl
from org.slf4j import LoggerFactory
from ch.qos.logback.classic import Level
from ch.qos.logback.classic import Logger
from HTTPClient import NVPair
from org.json import JSONObject, JSONArray
from com.stomp.client import StompClient
from com.stomp.model import Message

test0 = Test(0, "conn")
class TestRunner:
	# initlialize a thread 
	def __init__(self):
		grinder.statistics.delayReports=True
		self.conn()

	# test method		
	def __call__(self):
		result = self.client.sendMsg("hello", "155")
		if not result:
			err("send msg error")
			grinder.statistics.forLastTest.success = 0
		else:
			grinder.statistics.forLastTest.success = 1

	def conn(self):
		self.client = StompClient()
		return self.client.connect("http://127.0.0.1:8083/socketconnect")

test0.record(TestRunner.conn)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%