Treat Test Code as Production Code
Testing an application has become an essential part of the software development lifecycle and I donāt know how life is without tests as I believe they contribute with a healthy and stable development process.
I also see tests as the go to when working on a new code for the first time. Perhaps the code itself is not self explanatory, itās very coupled to external dependencies, itās very complex or even not mature enough to a point where one could understand what the heck is going on and thatās where a simple unit test can save your bacon.
Although test code is not deployed to production, it should not be an excuse to write āhackyā or ādirtyā code. Instead, it should be as readable & maintainable as the code we write the test against.
So here are the 5 things I value the most and look for when writing tests Iād like to share in this blog post.
Donāt depend too much on the test runner
Tech is constantly evolving and so the tools we use on a daily basis. Should our test infrastructure depend too much on the test runner, most likely weāll have to rewrite everything from scratch when migrating from one framework to another or spend days/months trying to understand what has to be migrated.
Worst case scenario, we end up working with ālegacy codeā that is impossible to be migrated due to the amount of work that has to be done.
Think of Enzyme by Airbnb and React Testing Library to test React components for example. If you have written tests with Enzyme before, youāll soon realise that the way we write tests converge to the same similar boilerplate code over and over: mounting a component (via either shallow or mount methods), finding an element, clicking an element, changing the text of an input and later asserting whether the thing you are expecting to happen actually has happened.
Not much would really change when migrating from Enzyme to React Testing Library in terms of the test itself. What I mean by that is if we are testing that a Form component is going to render a loading spinner once a button is clicked, Enzyme or React Testing Library should still guarantee that a loading spinner is going to be rendered once a button is clicked.
Focusing on the test is more important than focusing on the tools we are using.
Invest in Dependency Injection
This is by far one of the techniques I used the most until today when writing tests.
I like to call dependency injection as a contract I create between the method and the injected object. With that, I can spin up a test really fast and Test-driven development (TDD) becomes so easy to understand and reason about that I donāt really mind writing the test before the actual code. I donāt always follow TDD but I can see its benefit when testing components that use some sort of injected dependency.
Make sure External Dependencies / 3rd party libraries wonāt break your app
The last thing we want is a broken application due to something we're restricted/blocked to make changes. So it's important to stay ahead of possible failures given that 3rd party libraries are the things we canāt control from the outside. Running blind with 3rd party dependencies and waiting for a bug in production to happen once they introduce a breaking change is far from being acceptable.
In my experience, running an end-to-end test overperforms a unit test just because we canāt be 100% certain we are stubbing dependencies the right way.
Reusable code
I strongly advocate for reusable code in tests. Needless to say why I chose āTreat test code as production codeā to be the title of this blog post.
My suggestion here is to look for patterns that are constantly repeated test after test: initial test setups, common API calls, common assertions and actions... If you care about reusability and maintainability in a codebase, bring that same concern to your tests and thank me later.
Confidence
This is not a strict recipe and Iām sure there are some exceptions. I also think that this is how you show new joiners on your team how much everyone cares about shipping code with confidence. And having any sort of test in place is much better than having no tests at all.
I hope that's helpful and interesting to you. šš¼
Did you know you can help me with this page?
If you see something wrong, think this page needs clarification, you found a typo or any other suggestion you might have feel free to open a PR and I will take care of the rest.
My entire site is available to edit on GitHub and all contributions are very welcome š¤š¼.
Hemerson Carlin, also known as mersocarlin, is passionate and resourceful full-stack Software Engineer with 10+ years of experience focused on agile development, architecture and team building.
This is the space to share the things he likes, a couple of ideas and some of his work.