Coder Social home page Coder Social logo

alancs / systemtestingtools Goto Github PK

View Code? Open in Web Editor NEW
32.0 3.0 8.0 374 KB

Stubbing tool for HTTP calls to allow more comprehensive + deterministic tests

License: MIT License

C# 100.00%
system-testing mocking netcore22 test-server unit-testing component-testing stubs stub-responses assert-logs httpclient

systemtestingtools's People

Contributors

alancs avatar amikhaildev avatar rexrover2 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

systemtestingtools's Issues

Troubles stubbing a URL with complex query parameters, i.e. has "{" and "}" in URL

I am using SystemTestingTools Version 2.0.32. I am using the AppendHttpCallStub to set up my stub for the endpoint that I'm writing tests for. I am aware that when I feed in a URI into the said method, I need to escape the curly brackets by doubling them up. Not escaping them will cause an exception to be thrown in the method SetEndpoint as String.Format will throw a FormatException error. However, escaping before calling AppendHttpCallStub does not suffice. Later when the stubbed endpoint is called. The GetEndpoint method is invoked, and since the the previous String.Format call in SetEndpoint removes the escaped characters, the String.Format in this method is thrown.

Any advise on how to get around this is deeply appreciated!

var baseUrl= @"http://localhost:23068/";
var endpointUrl= @"{{ ""key"": ""value"" }}";
var stubUrl = $"{baseUrl}{endpointUrl}";
client.AppendHttpCallStub(HttpMethod.Get, new Uri(stubUrl), response);

204 No Content stubbed response not being handled

I am using SystemTestingTools Version 1.3.6 . I used the recorder function to capture a 204 responce (as suggested in the project README). Then I intended to use this captured response as stub for component tests. This is what the response looks like:

METADATA
...

REQUEST
...

--!?@Divider: Any text BEFORE this line = comments, AFTER = response in Fiddler like format

HTTP/1.1 204 NoContent
Server:Microsoft-IIS/10.0
X-Powered-By:ASP.NET
Date:Tue, 05 May 2020 03:41:23 GMT

There is no response body (as expected). I am using ResponseFactory.FromFiddlerLikeResponseFile("/path/to/stubfile")

I get the following exception:
System.ArgumentException : File is not in the right format, please consult https://github.com/AlanCS/SystemTestingTools/

Modifying the captured response and using null as response content is my workaround for now.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.