There are two main consumers for HTTPact:
- API Wrapper libraries
- HTTP Client implementations
As such these are the two points where some testing utilities would be helpful.
For API Wrapper libraries we'd likely want an easy way to build a valid HTTP Client that returns expected responses. This way the API Wrapper library can test their error handling and entity conversion properties.
For HTTP Client implementations we might need to go further and build a web server with similar controls for expected responses although with a focus on generic HTTP behavior. Likely a solution a long the lines of Bypass.
There are two main consumers for
HTTPact:As such these are the two points where some testing utilities would be helpful.
For API Wrapper libraries we'd likely want an easy way to build a valid HTTP Client that returns expected responses. This way the API Wrapper library can test their error handling and entity conversion properties.
For HTTP Client implementations we might need to go further and build a web server with similar controls for expected responses although with a focus on generic HTTP behavior. Likely a solution a long the lines of Bypass.