File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Jython/Python and the fly likes Jython with Grinder for Load testing Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Languages » Jython/Python
Reply Bookmark "Jython with Grinder for Load testing" Watch "Jython with Grinder for Load testing" New topic
Author

Jython with Grinder for Load testing

Abhay Kumar
Greenhorn

Joined: Jun 03, 2003
Posts: 15
Hi All,

Need some Help in Writing Jython scripts which will be used with Grinder.

I need to write a script which executes a batch(.bat) file.
the batch file is interactive, i.e it accepts paramets during its execution.

I was able to write a script which executes a batch file, but when i am trying to give the inputs, its not taking..

can you please help me.

Here is what I have written.
Let me know where am i wrong and how do i solve this issue.
---------------------
from net.grinder.script import Test;
from net.grinder.script.Grinder import grinder;
import TestGrind;

log = grinder.logger.output;
test = Test(1, "Execute");
class TestRunner:
def __call__(self):
session = test.wrap(TestGrind("client.bat"));

---------------------
best regards,
Abhay
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Jython with Grinder for Load testing
 
Similar Threads
Jython embeded in java application
Jython installation with Tomcat 4.1.12
how can create datasources during build time? (connection pooling api?)
Reading Properties file in Jython
Testing in abbot (Want to add a batch file in script)