Giter Club home page Giter Club logo

Comments (5)

andrzejchm avatar andrzejchm commented on July 20, 2024

while the logs might be misleading, they are not an indicator of whether the functionality is working or not. By default, the http's response body gets delayed indeed, and logs are printed out as soon as the response dispatcher finds a match for given request.

To reiterate: Logs are immediately logging responses while the real response gets delivered after some delay. This is a good point though to delay logs aswell

from restmock.

maximelebastard avatar maximelebastard commented on July 20, 2024

Ok, I get that !
But even when I do not watch the logs, the test ends in about 3 seconds - so I guess it is not working anyway.

What debug info can I give you ?

from restmock.

andrzejchm avatar andrzejchm commented on July 20, 2024

is bernardWebService.logout() a synchronous call? if its not, that is the case why tests finish before actual response gets delivered.

from restmock.

maximelebastard avatar maximelebastard commented on July 20, 2024

bernardWebService.logout() calls a Retrofit API method:

public boolean logout() throws IOException {
        // BernardAPI is an interface using Retrofit annotations
        Response<Void> response = BernardAPI.logout().execute();
        return response.code() == 200;
    }

The execute method of retrofit is synchronous, as written on its javadoc:

  /**
   * Synchronously send the request and return its response.
   *
   * @throws IOException if a problem occurred talking to the server.
   * @throws RuntimeException (and subclasses) if an unexpected error occurs creating the request
   * or decoding the response.
   */
  Response<T> execute() throws IOException;

from restmock.

andrzejchm avatar andrzejchm commented on July 20, 2024

Keep in mind MockWebServer, followed by RESTMock, delays the body of a response, not the entire response. so what you'd have to do is to wait for the entire body to arrive and then check the response.code. So something like this:

public boolean logout() throws IOException {
        // BernardAPI is an interface using Retrofit annotations
        Response<Void> response = BernardAPI.logout().execute();
        String body = response.body().string()
        return response.code() == 200 && body != null && !body.isEmpty();
    }

take a look into f7df1a4 for a unit test that demonstrates this behavior

from restmock.

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.