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

Warn when arity of stubbing or verification doesn't match function.length #3

Open
searls opened this issue Sep 7, 2015 · 5 comments

Comments

@searls
Copy link
Member

searls commented Sep 7, 2015

If I do a test double func:

var dog = {
  bite: function (thing) {}
}
var woof = td.replace(dog, 'bite')

Then setting up a stubbing with a different arity should warn:

td.when(dog.woof('mailman', 'spritely')).thenReturn("UH OH") // arity mismatch warning 

This warning should be able to be muted on a case-by-case basis since function .length is unreliable.

td.when(dog.woof('mailman', 'spritely'), {ignoreArity: true}).thenReturn("UH OH") // no warning
@searls searls added this to the console.warn heuristics milestone Mar 30, 2016
@searls searls changed the title Add arity checks Warn when arity of stubbing or verification doesn't match function.length Dec 14, 2016
@searls
Copy link
Member Author

searls commented Dec 14, 2016

Hey @Schoonology what do you think of this given your hatred of function.length?

@Schoonology
Copy link
Contributor

I don't know what value this provides over our other messages (like the new "report" that tells you of missed stubbings). Do you run into this case often?

@searls
Copy link
Member Author

searls commented Dec 15, 2016

The value of this is it's one of the (in JS, very very) few places where we can give people a heads up that the contract between a subject and a dependency are out of sync with one another.

Example: a dependency foo(a) is defined through a unit test of a subject bar that invokes foo(a), and everything is happy. Months later, somebody updates foo to take two arguments foo(a,b), but the test of bar will keep testing as a so-called "fantasy test", because it's ignorant of the change in foo's signature. A warning like this would help

@samjonester
Copy link
Contributor

I'm inclined to agree with @Schoonology. Many JS functions have a "dynamic arity", or no explicitly defined arity at all. It seems like that feature would implicitly make the argument that "dynamic arity = bad", given the opinionated (for good reason) nature of other limitations in the library.

@searls
Copy link
Member Author

searls commented Dec 15, 2016

@samjonester two reactions:

  1. That's why I'd only suggest a warning plus a per-stubbing option to ignore it
  2. The purpose of td.js is to help design good dependencies, and I'd wager that 90%+ of the time, a "good" function I write for an internal API has a fixed, known arity.

Of course, how I intend for people to use test doubles (designing clean, isolated units that are decoupled from third party APIs) and how people actually use test doubles (mocking every third-party thing they can get their hands on), this warning would be triggered all the time and most often by people who aren't using the library as I intended, which I'm sure would lead to dozens more "this warning is bad, make it go away" issues, like we've seen in the case of "don't verify stubs"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
td.js 2.0
Backlog
Development

No branches or pull requests

3 participants