-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API - Execution Context #7
Comments
Execution Context of Multiple RequestsIn many situations it can be convenient to have multiple requests within one test case - e.g. if some extra steps have to be performed before and/or after execution of main functionality. For such scenarios there are two exposed dictionaries To identify each request, user have to name it - this can be done by decorating Then, the work with older request (and their responses) is pretty straightforward:
var newBookReq = tp.Requests["NewBook"];
var getBookRes = tp.Responses["GetBook"];
var newBookBody = await newBookReq.Content.ReadAsStringAsync();
var getBookBody = await getBookRes.Content.ReadAsStringAsync();
tp.Test("Bodies of POST and GET requests should match",
() => newBookBody.Should().BeEquivalentTo(getBookBody)); |
Request and Response ObjectsThe initial proposal lacked with real structure of 💡 This evoke the question, if the end-user should be able to access whole What do you say @Burgyn? |
For end-user it is necessary to work with the attributes of current
Request
and itsResponse
. Currently executed request and its response is stored in these attributes:Since, usually tests are run within collection, user should be able to access to older request/responses by its name. Naturally, this has one condition - the request/response has to be named in order to find it. Retrieval of these information wil be pretty straightforward:
The text was updated successfully, but these errors were encountered: