>So JMeter requires developer support to simulate the load. In your scenario , I believe that is the case. if you have existing JUnit's then you can run them via JMeter. >Also while creating JUnit test cases we may miss some sequence of request as >the same way real time application works. Perhaps. But you would be asserting some expected response. Im not aware of any tool that would satisfy your expectations http://java-source.net/open-source/testing-tools (closest seems to be something called jacareto and there are some swing automation tools that you might try)
regards deepak On Tue, Dec 15, 2009 at 9:57 PM, Jskathirvel < [email protected]> wrote: > > Hi, > > I agree that we can not vary the data for multiple user test for same > scenario. > But in our case the data send to server is huge and we are trying to store > the object stream as file and posting to server using JUnit test cases. > If the data changes over time we have to dump again all the data to > simulate. > Also while creating JUnit test cases we may miss some sequence of request > as > the same way real time application works. > So JMeter requires developer support to simulate the load. > > Please give your valuable suggestion. > > Thanks in advance. > Kathirvel > > > Deepak Shetty wrote: > > > > Hi > > JMeter wasn't primarily built to handle scenarios like these, but it can > > test out anything that java can test using beanshell/junit/java samplers. > >>Creating JUnit test case for all the scenario is a costly process right? > > In what way? development time? You'd essentially have to dummy up > whatever > > your swing application is doing for the scenario you are testing. Because > > this communication is binary, and because you'd want to vary your data, I > > doubt any record playback tool will be of much use.(you cant easily vary > > the > > binary) > > > > > > On Tue, Dec 15, 2009 at 8:06 PM, Jskathirvel < > > [email protected]> wrote: > > > >> > >> Thanks for your reply, > >> > >> I would like to know, is it limitation of JMeter?. > >> The client is Swing application which sends serialized Java Objects to > >> server. > >> Creating JUnit test case for all the scenario is a costly process right? > >> Is there any other tool which will capture the communication and perform > >> the > >> load test? > >> > >> Your valuable suggestion are welcomed. > >> > >> Thanks in advance, > >> Kathirvel > >> > >> > >> Deepak Shetty wrote: > >> > > >> > I dont think you can use Jmeter's HTTP sampler directly for this, > >> though > >> > you > >> > could write java code in a Beanshell/Java/Junit and execute that > which > >> > sends the serialized objects.. > >> > regards > >> > deepak > >> > > >> > On Tue, Dec 15, 2009 at 4:34 AM, Jskathirvel < > >> > [email protected]> wrote: > >> > > >> >> > >> >> Hi, > >> >> > >> >> I am facing a problem in capturing serialized Java Objects which will > >> be > >> >> posted to server from client by creating HttpURLConnection. > >> >> Can you help me how to capture those request data and load the > server. > >> >> > >> >> Thanks in advance. > >> >> Kathirvel > >> >> -- > >> >> View this message in context: > >> >> > >> > http://old.nabble.com/How-to-Capture-serialized-java-objects-tp26794060p26794060.html > >> >> Sent from the JMeter - User mailing list archive at Nabble.com. > >> >> > >> >> > >> >> --------------------------------------------------------------------- > >> >> To unsubscribe, e-mail: [email protected] > >> >> For additional commands, e-mail: [email protected] > >> >> > >> >> > >> > > >> > > >> > >> -- > >> View this message in context: > >> > http://old.nabble.com/How-to-Capture-serialized-java-objects-tp26794060p26806027.html > >> Sent from the JMeter - User mailing list archive at Nabble.com. > >> > >> > >> --------------------------------------------------------------------- > >> To unsubscribe, e-mail: [email protected] > >> For additional commands, e-mail: [email protected] > >> > >> > > > > > > -- > View this message in context: > http://old.nabble.com/How-to-Capture-serialized-java-objects-tp26794060p26806621.html > Sent from the JMeter - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >

