Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add global beforeEach/afterEach hooks #900

Merged
merged 19 commits into from
Sep 8, 2020

Conversation

brapifra
Copy link
Contributor

In a nutshell

This PR adds 4 new global parameters: beforeEach, afterEach, asyncBeforeEachandasyncAfterEach that will be executed during the execution of any property.
It solves the issue #876

✔️ New feature
❌ Fix an issue
❌ Documentation improvement
❌ Other: please explain

(✔️: yes, ❌: no)

Potential impacts

None

@brapifra brapifra changed the title Brapifra/876/feature Add global beforeEach/afterEach hooks Aug 18, 2020
@codesandbox-ci
Copy link

codesandbox-ci bot commented Aug 18, 2020

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Latest deployment of this branch, based on commit 131f119:

Sandbox Source
Vanilla Configuration
dubzzz/fast-check: example Configuration

@coveralls
Copy link

coveralls commented Aug 18, 2020

Coverage Status

Coverage increased (+0.09%) to 96.269% when pulling 131f119 on brapifra:brapifra/876/feature into baff08d on dubzzz:master.

Copy link
Owner

@dubzzz dubzzz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job @brapifra!

I put some comments in order to ensure we preserve consistency across the primitives offered by the API.


import * as stubArb from '../../stubs/arbitraries';
import * as stubRng from '../../stubs/generators';

describe('AsyncProperty', () => {
beforeEach(() => resetConfigureGlobal());
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer using afterEach in that case:

Suggested change
beforeEach(() => resetConfigureGlobal());
afterEach(() => resetConfigureGlobal());

The global configuration specified by the last it will not be cleaned for other tests. Global configuration can spread across test files.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤔 Actually we may even mock readConfigureGlobal and don't use any of configureGlobal or resetConfigureGlobal. But you can keep it that way for this PR

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, we could mock it. Although I usually prefer to write integration-like tests. But it's really a personal preference so I don't mind changing it 😄
Regarding the beforeEach/afterEach comment. I'm pretty sure jest runs each test module/file in isolation. Therefore, I think it doesn't really matter to use one or the other in this case...

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just to make sure, prefer a afterEach here


import * as stubArb from '../../stubs/arbitraries';
import * as stubRng from '../../stubs/generators';

describe('Property', () => {
beforeEach(() => resetConfigureGlobal());
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same use afterEach instead

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
beforeEach(() => resetConfigureGlobal());
afterEach(() => resetConfigureGlobal());

I think it would be safer to always clean properly after the run. Cleaning before do not ensure we clean stuff for next tests.

@brapifra brapifra requested a review from dubzzz August 26, 2020 19:03
@brapifra
Copy link
Contributor Author

brapifra commented Aug 26, 2020

I've made most of the requested changes. Let me know what you think @dubzzz !
The only thing that I didn't implement was the error throwing when a synchronous property is run and there is some async hook set up globally. Maybe I'm missing something but... why would we want to do that?
IMO synchronous properties should simply ignore those async hooks instead of throwing an error. e.g.

configureGlobal({
     asyncBeforeEach: () => {
          console.log("I just want to run this with my async properties and I don't want to break the sync ones");
     }
})

Copy link
Owner

@dubzzz dubzzz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Once again thanks a lot for this huge contribution. I added some comments and suggestions to update the code and offer more flexibility and sanity checks to the end-users

@brapifra brapifra requested a review from dubzzz August 27, 2020 19:33
Copy link
Owner

@dubzzz dubzzz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@brapifra Thank you so much for your work and time. Just a few remarks before we merge it. Really really thank for the time you already spent for this PR 👍 By the way, let's ignore the red codeclimate, I don't think that the error is relevant.

@brapifra brapifra requested a review from dubzzz September 5, 2020 17:39
@dubzzz
Copy link
Owner

dubzzz commented Sep 8, 2020

Perfect 👍

Great job! Thanks a lot for the Pull Request!
I'll try to release a new minor including this new feature very soon.

@dubzzz dubzzz merged commit 6ab97c2 into dubzzz:master Sep 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants