My scenario is like this.

Since I am trying to perform a load test with big amout of users. I want to
make sure that when I run the load test it gives exact responses.

Lets say i run the test for 1000 users under 5 Seconds delay. And each user
request will have its own responses. I save those responses. And the test
passes with no errors.
Now, I run the load test for those 1000 users I would like to compare or
assert the responses i get during the load test exactly matches the
responses I got before without load test. Or in other words I would like to
know that user1 is receiving the same response like the first test that was
run.

To achieve this, I had to save the responses as MD5 hash and save these in
a file and run the load test and assert the responses exactly matches md5
hash from previous test.

Now, when I approach my test saving the responses using MD5 hash,
1) if there is error on the first test (not under load test) I am unable to
figure out what the error is.
2) if there is no error on the first test and there is error on the load
test (which is during load test lets say user55 is not getting the correct
response that he is suppose to get.)


On Mon, Jun 24, 2013 at 3:53 PM, Deepak Shetty <shet...@gmail.com> wrote:

> hi
> a) does it work even once i.e. for a single user does your script work? If
> not - then save the entire response - debug your script whatever
> b) if it fails at random (it might always be failing for the same user or
> something in which cause its same as a) ), under load then you have no way
> out of saving the response and discarding the performance of your tests
>
> But like I said even 1 dynamic value causes your test to fail - it might
> not be what you are looking for.
>
> regards
> deepak
>
>
> On Mon, Jun 24, 2013 at 3:21 PM, umesh prajapati <praumes...@gmail.com
> >wrote:
>
> > Hi Deepak,
> >
> > I am running the test for very large amout of users. So, I would like to
> > make sure that the response I am getting during the load test exactly
> > matches the responses I am getting when I run the test with 5 seconds
> delay
> > per request
> >
>

Reply via email to