You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to pass different (random) request Headers per each http request from an external file? if not, would you like to add this feature?
my use case is following, I would like to load test my application but for different user accounts in order to eliminate non-realistic cache hits. my app expects 'Authorization' request header to identify the end user.
The text was updated successfully, but these errors were encountered:
Hi @gunayus! Thanks for the interesting in the project and sorry about the late reply.
Regarding this feature, would it suffice with adding a new flag (that could be called --randomize-header for example) that would generate a random string for the header key that you define for each requests? Or is there a reason you want to define the headers in a file?
I think of the following way it could be implement in from a cli point of view:
thank you @rogerwelin for the reply. I don't think randomized Authorization header would help because the application would return 401 for each request.
That's why I should be able to provide valid header values from a file, then, cassowary can randomly select any of the provided headers,
Is it possible to pass different (random) request Headers per each http request from an external file? if not, would you like to add this feature?
my use case is following, I would like to load test my application but for different user accounts in order to eliminate non-realistic cache hits. my app expects 'Authorization' request header to identify the end user.
The text was updated successfully, but these errors were encountered: