Code Monkey home page Code Monkey logo

Comments (3)

paulschuetz avatar paulschuetz commented on June 9, 2024

Can't this be achieved using during() method? see https://github.com/awaitility/awaitility/wiki/Usage#assert-that-a-value-is-maintained

from awaitility.

hczedik avatar hczedik commented on June 9, 2024

In theory, during() would be perfect for checking that a condition is maintained for some time.
In practice, during() also needs a timeout (atMost) and only checks that the condition is maintained for a minimum time during the complete timeout. This behavior is (in my opinion) unexpected, as it does not fail-fast if the condition is false already at the beginning, or changes during any of the polling attempts. For a more complex use case, this behavior makes sense, but for the simple scenario requested here, it doesn't.

I think it could be fixed, by allowing setting the timeout to the same value as the during() duration (and this probably should also be the default behavior for during() without an explicitly set timeout/atMost). Unfortunately this does not work, due to this bug: #186

Also related: #204
In general, my impression is that the current behavior of during() is counter-intuitive (and buggy) and does not allow for the most simple use cases.

from awaitility.

u3r avatar u3r commented on June 9, 2024

Same here, I want to write some tests that verify a specific condition holds true for a minimum amount of time (and NOT necessarily changes afterward).
Alternative api suggestion:

 await()
   .during( Duration.ofSeconds(10) )
   .holdsTrue( Provider<T>, Predicate<T>);

from awaitility.

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.