Git Product home page Git Product logo

Comments (5)

richardszalay avatar richardszalay commented on May 20, 2024

Can you let me know what version of both .net and System.Net.Http you are targeting?

from mockhttp.

SteffenGorenflo avatar SteffenGorenflo commented on May 20, 2024

I use the following settings:
<package id="System.Net.Http" version="4.3.2" targetFramework="net462" />

from mockhttp.

richardszalay avatar richardszalay commented on May 20, 2024

I'm unable to reproduce the issue. What kind of project are you testing (Console, ASP.NET, Xamarin Android, etc)? If you can provide a minimal reproducible sample I'm happy to look into it further.

The sample code below throws Refit.ApiException: Response status code does not indicate success: 401, which is what I would expect.

  • Project type: Console
  • Target Framework: .NET 4.6.2
  • Dependencies:
    • System.Net.Http - 4.3.2
    • Refit - 3.1.0
    • RichardSzalay.MockHttp - 1.5.0

Code:

class Program
{
    static void Main(string[] args)
    {
        var mockHttp = new MockHttpMessageHandler();

        mockHttp.Expect("/oauth/token/")
                .Respond(HttpStatusCode.Unauthorized, "application/json", "{'ok':true}");

        var refitSettings = new RefitSettings
        {
            HttpMessageHandlerFactory = () => mockHttp
        };

        var backendApi = RestService.For<IBackendAPI>("http://localhost/", refitSettings);
        var result = backendApi.Auth().GetAwaiter().GetResult();
            

    }
}

public interface IBackendAPI
{
    [Get("/oauth/token/")]
    Task<BasicResponse> Auth();
}

public class BasicResponse
{
    public bool Ok { get; set; }
}

from mockhttp.

SteffenGorenflo avatar SteffenGorenflo commented on May 20, 2024

Thanks for the quick response. I wasn't able to look into it till now.

I noticed that my unit test project (which has all the correct dependencies versions above) is testing my Core project which has the following Version: PCL 4.6 - Profile151

Is this maybe the problem? I'm new to this .NET environment and maybe I mix somethings up.

Btw, that example of you is working with me as well.

from mockhttp.

SteffenGorenflo avatar SteffenGorenflo commented on May 20, 2024

Alright I fixed it. In my Test project there was somehow a reference to the System.Net.Http package with the assembly version "4.1.1.1".

After removing this reference and changing it to the correct reference (.net framework 4.6.2) it worked.

To be specific: I changed in MyProject.UnitTests.csproj the line

<Reference Include="System.Net.Http">
    <HintPath>..\packages\System.Net.Http.4.3.2\lib\net46\System.Net.Http.dll</HintPath>
</Reference>

to

<Reference Include="System.Net.Http" />

from mockhttp.

Related Issues (20)

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.