-
-
Notifications
You must be signed in to change notification settings - Fork 160
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
Template for tests #673
Comments
@tasxatzial I think we can close this now, right? |
It's no longer strictly necessary, but I'd still like to gather everything about test templates into a new issue to document the decisions made when creating a template or updating tests manually. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So far, tests are written and updated manually. In this issue, I'll be posting all the possible ways we've seen tests being written so far. I'll briefly mention the cons of each method and propose a template that could be used instead. Why do we need a template?
Method 1
The main drawback of this method is that it's unclear what the test does. The name of the function can give a clue; however, function names cannot always be reliably used to describe a test, as they can often become overly long, making them hard to read:
Method 2
The main problem here is that it shows as one test being run, when in fact it's two.
Method 3
This is arguably the best method since it allows us to use the description that comes from the problem specs, but it's still unclear how to choose an appropriate function name.
Also, test descriptions from problem specs are often very similar. It's incredibly easy to end up with duplicate names when someone reuses a previous test to create a new one, often through copy-pasting.
Taking all the above into account here's a proposed template:
with the following rules:
deftest
per test from the problem specifications.test-
oruuid-
. This allows to quickly match an implemented test with the problem specs.expected_value
goes first, and theactual_value
goes second. This is a common convention.expected_value
is a collection, a vector is used.actual_value
should be a call to the tested function. If the function argument is a collection, a vector is used.This isn't a perfect method—it still has some issues:
Now on to some examples:
Note that the namespace is required without referring to any functions. This approach helps avoid issues where a function name might clash with a function name from
clojure.core
.If the test line ends up being very long, splitting into multiple lines or using
let
is preferable:I might edit this post later if I’ve missed anything.
The text was updated successfully, but these errors were encountered: