Giter Site home page Giter Site logo

Combine rstest with proptest? about rstest HOT 6 OPEN

la10736 avatar la10736 commented on June 23, 2024 4
Combine rstest with proptest?

from rstest.

Comments (6)

la10736 avatar la10736 commented on June 23, 2024 1

Maybe we can try to implement it after proptest-rs/proptest#153 is landed. In this case I can see a [proptest] attribute and desugar my test by take care of proptest syntax.

It will be something like:

pub fn fixture() -> u32 { 42 }

#[rstest]
#[proptest]
fn doesnt_crash(#[proptest::strategy="\\PC*".into()] s: &str, fixture: u32) {
    parse_date(&s);
}

or something like this

from rstest.

matthew-russo avatar matthew-russo commented on June 23, 2024 1

Hey -- made it here from the proptest issue. We have an issue over there for adding a way to add explicit cases to proptest:

proptest-rs/proptest#284

I had originally suggested using rstest for this but there were some counter arguments. I'm planning on adding some very basic casing functionality in to the attr proc macro once the impl lands. I think it should still be composable like you're mentioning here since you could just transform the cases in to rstest syntax but I'll make sure to get your input once the PR is up

from rstest.

la10736 avatar la10736 commented on June 23, 2024

I'll take a look to it. I'm in the middle of the rush (if we can call rush in a pet project) for the next release but I promise that I'll see what that's mean.

from rstest.

la10736 avatar la10736 commented on June 23, 2024

Just to understand. What do you mean is to use rstest in combination withproptest?
If you mean to userstest or rstest_parametrize inside a prpptest macro I don't think it's a simple task because the proptest macro will be processed before and cannot understand rstest syntax. Otherwise, if the question is use both crates in the same test module I don't see any limitation

Can you give me an use case example to work with?

from rstest.

svenstaro avatar svenstaro commented on June 23, 2024

For instance, I'd like to use something like

proptest! {
   pub fn fixture() -> u32 { 42 }

    #[rstest]
    fn doesnt_crash(s in "\\PC*", fixture: u32) {
        parse_date(&s);
    }
}

That'd be pretty neat. I'm already using them beside eachother.

from rstest.

la10736 avatar la10736 commented on June 23, 2024

Great!
I'll take a look to it when PR land. I just see some trouble to combine the async proposed syntax to the rstest one.... but it's just a detail.

from rstest.

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.