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

✨ Move to explicit minLength/maxLength constraints on array #986

Merged
merged 13 commits into from
Sep 17, 2020

Conversation

dubzzz
Copy link
Owner

@dubzzz dubzzz commented Sep 17, 2020

Before this PR, defining constraints on the size of an array required to use one of the following signatures:

  • fc.array(arb, maxLength)
  • fc.array(arb, minLength, maxLength)

This PR depreciates those signatures for another one fc.array(arb, {minLength, maxLength}) which is more explicit.

The reasons behind this change are:

  1. when seeing a call like fc.array(arb, 10) it was difficult to understand the meaning of the second argument: is is for the max? for the min?
  2. no signature to only specify a min length, specifying a min required the user to also specify a max
  3. difficult to use this kind of signature with fc.set, fc.uint32array... or even worst fc.object

The PR comes with a codemod to convert automatically implicit minLength and maxLength to the newly added object expression syntax.

Related to #89

In a nutshell

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

(✔️: yes, ❌: no)

Potential impacts

Generated values impact:

  • fc.func
  • fc.lorem

@codesandbox-ci
Copy link

codesandbox-ci bot commented Sep 17, 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 68e57dc:

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

@dubzzz dubzzz changed the title Explicit min max array ✨ Move to explicit minLength/maxLength constraints on array Sep 17, 2020
@coveralls
Copy link

coveralls commented Sep 17, 2020

Coverage Status

Coverage decreased (-0.2%) to 96.084% when pulling f4755c6 on explicit-min-max-array into 1778049 on master.

@dubzzz dubzzz merged commit f380455 into master Sep 17, 2020
@dubzzz dubzzz deleted the explicit-min-max-array branch September 17, 2020 19:01
@dubzzz
Copy link
Owner Author

dubzzz commented Sep 20, 2020

Related to #992

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

2 participants