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

fix: Fix an issue where invalid VerifierOptions keys with Array values would cause a TypeError #432

Merged

Conversation

TimothyJones
Copy link
Contributor

PR Template

This PR fixes an issue raised by Gustavo Souza on slack here, where an unknown key with an array value would cause the Verifier validation to fail with cannot read property forEach of undefined.

It also adds a test for this case.

The test also passes.

@TimothyJones
Copy link
Contributor Author

I don't know how the ubuntu build ever worked, but I'll fix that in this PR too.


context('when given an unknown array argument', () => {
it('should return a Verifier object', () => {
expectSuccessWith({
Copy link
Member

Choose a reason for hiding this comment

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

Should the user be aware that an invalid option was provided, and bail because of it?

otherwise they might feel that the argument is correctly being set, but it isn't

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I thought about adding a warning - but the existing behaviour (for unknown options that don't have an array value) was to silently ignore them.

I'm not sure if there are some unvalidated options - if we want to warn, we'll have to double check the list.

Copy link
Member

Choose a reason for hiding this comment

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

hmmm, whilst that wouldn't be my preference, it is the way it is currently so I wouldn't want to break userspace too much.

looking at the users provided file, the only invalid option I think was tags which is now providerVersionTags and log option is no longer in v10 of pact-js post moving to the rust core.

Copy link
Member

Choose a reason for hiding this comment

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

that is probably one for another PR tho!

context('when given an unknown array argument', () => {
it('should return a Verifier object', () => {
expectSuccessWith({
madeupArg: [''],
Copy link
Member

Choose a reason for hiding this comment

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

would js treat [''] as different to [] (because js)

and would that make a diff for this logic (rules || []).forEach((rule) => {

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Nope 👍

rules is from the rules object above - which is only accessed using the key. The value is only relevant for entering in the Array.isArray branch, which was missing the undefined check.

You can see the same (rules || []) pattern on the other branch - I'm not wild about having inline defaults, but I didn't want to change the code too much just to match personal preferences.

@mefellows
Copy link
Member

Thanks team! 🙏

We chose not to fail when incorrect arguments were passed because the previous implementation didn't either, and who knows what people would do. Now, in theory, the implementation did fail - just not with a warning, so we could potentially introduce that.

I'm still inclined to leave it as a warn or silently ignore, because there are still plenty of those that would still upgrade from 9.x.x and then run into this behaviour.

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