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

Allow empty string but fail on undefined #136

Closed
scholtzm opened this issue Oct 23, 2017 · 9 comments
Closed

Allow empty string but fail on undefined #136

scholtzm opened this issue Oct 23, 2017 · 9 comments

Comments

@scholtzm
Copy link
Contributor

scholtzm commented Oct 23, 2017

According to README, it should be possible to require empty string:

To allow empty strings but fail on undefined values use: string().required().min(0)

However, this does not seem to work:

const yup = require("yup")

const okString = 'foo';
const shouldBeOkString = '';
let nokString;

const schema = yup.string().required().min(0);

console.log(await schema.isValid(okString)); // true
console.log(await schema.isValid(shouldBeOkString)); // false <--
console.log(await schema.isValid(nokString)); // false

Same with yup.array().required().min(0) won't allow [].

Am I missing something?

@scholtzm
Copy link
Contributor Author

Don't want to create another issue so here's another example:

const yup = require("yup")

// want to accept any number or null, nothing else
const schema = yup.number().required().nullable(true);

console.log(await schema.isValid(1)); // true
console.log(await schema.isValid(23)); // true
console.log(await schema.isValid(null)); // false <--
console.log(await schema.isValid(undefined)); // false

@jquense
Copy link
Owner

jquense commented Oct 24, 2017

So required will always fail for absent values, e.g. null or undefined. If you want to distinguish between them you'll need a more nuanced test:

yup.addMethod(yup.mixed, 'defined', function (msg = '$path must be defined') {
   return this.test('defined', msg, (value) => value !== undefined)
})

const schema = yup.number().defined().nullable();

console.log(await schema.isValid(1)); // true
console.log(await schema.isValid(23)); // true
console.log(await schema.isValid(null)); // false <--
console.log(await schema.isValid(undefined)); // false

@scholtzm
Copy link
Contributor Author

scholtzm commented Oct 24, 2017

Thank you @jquense. This solution fixes the case from my additional comment.

What about the required().min(0) case?

@jquense
Copy link
Owner

jquense commented Oct 24, 2017

should work in that case as well. if you are only interesting in undefined failing it, you don't want to use required

@scholtzm
Copy link
Contributor Author

scholtzm commented Oct 25, 2017

Thank you, it indeed solves my issue.

However, are these sentences from the README valid?

To allow empty strings but fail on undefined values use: string().required().min(0)

In this case, '' will not pass the test.

To allow empty arrays but fail on undefined values use: array().required().min(0)

In this case, [] will not pass the test.

@jquense
Copy link
Owner

jquense commented Oct 25, 2017

yeah they seem outdated, care to PR removing them?

@scholtzm
Copy link
Contributor Author

Alright, see PR #137

@tnrich
Copy link

tnrich commented Sep 17, 2020

I don't see how to do the old

string().required().min(0) 

case anymore. Do I have to now provide a custom yup method? I made a SO question asking for help https://stackoverflow.com/questions/63943689/how-to-get-yup-string-to-require-string-of-any-length-including-0

Thanks!

@blasterbug
Copy link

In deed, string().required().min(0) fail miserably for empty strings.

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

No branches or pull requests

4 participants