-
Notifications
You must be signed in to change notification settings - Fork 530
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
atbash-cipher: Use Tera template for tests #2012
Conversation
This should stop configlet's warnings about missing tests. [no important files changed]
This PR touches files which potentially affect the outcome of the tests of an exercise. This will cause all students' solutions to affected exercises to be re-tested. If this PR does not affect the result of the test (or, for example, adds an edge case that is not worth rerunning all tests for), please add the following to the merge-commit message which will stops student's tests from re-running. Please copy-paste to avoid typos.
For more information, refer to the documentation. If you are unsure whether to add the message or not, please ping |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great. I usually try to write the template in a way to keep the diff small, unless there is a reason not to. In this case, it looks like it should be straight-forward to make the test file essentially identical to what it was before.
This should stop configlet's warnings about missing tests. Please let me know if things like this are worth doing or if I should just let old code be as long as it's working.
I do think this is worth doing! A lot of time I invested in maintaining the Rust track was writing the exercise generator and lifting exercises up to it one-by-one. I'm happy if you keep that effort going.
Just a heads-up though, some of the exercises are very difficult to use with the exercise generator, for various reasons:
- problem-specifications has a nasty, inconsistent data structure
- existing exercise design is completely different from what the tests in problem-specifications expect
- probably more I'm forgetting
I definitely recommand checking the tests in problem-specifications and the exerice design first, before starting to work on a complicated template. I had to abandon optimistic work in frustration more than once.
In some cases, it may be more appropriate to just update the tests (and more importantly, tests.toml
) manually.
The original had the advantage of manually formatting each test case, and based on the length of the input it decides between assert_eq!(encode("text"), "encoded") and assert_eq!(
encode("text"),
"encoded"
)
Looks like update-exercise already runs
That's great, I'm glad this is important. Seems like a very good way to get familiar with the workflow. I'll spam you with more requests for review in the coming days, until (if ever) we're both comfortable with me doing this kind of routine maintenance without bothering you.
I saw that with bowling, I don't know if it's doable, but it does look extremely complex. For what it's worth, I don't plan to touch any exercise that I haven't solved, and I always copy the test file on my own solution to see if it works. But that still means I have to check more complex cases closely to make sure that tests break when they are supposed to. Also 31 test cases 😱 |
This is to try and keep the tests as similar to before, even though I prefer the use with a wildcard for overall clarity.
Added separate commits for context, since everything is squashed anyway. |
Thanks! 😍 I think the best part about this is that you can mostly focus on making the template somewhat readable, rather than having to create an ugly mess just to get the output perfectly right.
That's perfectly fine. If I'm too busy it will just take a moment for me to respond. But that's open source. When I was the only maintainer, exercism contributors in the group "guardians" would do reviews for me. Now that we're two, we always have to review each other's work. |
This should stop configlet's warnings about missing tests. Please let me know if things like this are worth doing or if I should just let old code be as long as it's working.
[no important files changed]