DEV Community

Cover image for Top 5 Unit Test Problems That Haunt Software Developers
Pawel Kadluczka
Pawel Kadluczka

Posted on • Originally published at growingdev.net

Top 5 Unit Test Problems That Haunt Software Developers

Well-written unit tests are among the most effective tools for ensuring product quality. Unfortunately, not all unit tests are well written, and the ones that are not are often a source of frustration and lost productivity. Here are the most common unit test issues I encountered during my career.

Flaky unit tests

Flaky tests pass most of the time, but not always. They may randomly fail even though no code has changed. The quickest and most common "fix" developers employ is to re-run them. With time, the number of flaky tests grows, and even multiple re-runs are insufficient.

Re-run tests meme

Flaky tests are caused primarily by the following:

  • shared state
  • dependency on external systems

A shared state is the number one cause of test flakiness. Static variables could be one example. If one test sets a static variable and another passes only if this variable is set, the second test will fail if the order of execution changes.

Debugging flakiness caused by shared state is usually tricky because sharing state is rarely intentional.

Tests that depend on external systems tend to be flaky because the systems they rely on are outside their control. Deployments, crashes, or throttling will cause test failures. Network, which is inherently unreliable, is yet another contributor. The best fix is to mock external dependencies.

Multithreaded applications deserve special mention. Race conditions in the product code could make tests for these applications flaky, and finding the root cause is often challenging.

Slow tests

Slow tests are a productivity killer. If running tests for a code change takes more than a few seconds, developers will use it as an excuse to find a distraction.

One of the most common reasons tests are slow is their dependency on external systems: network calls and the time to process the requests initiated by tests add up.

But tests that depend on external systems are also flaky, so slowness and flakiness go hand-in-hand.

Again, mocking external dependencies is the best fix to make tests fast and reliable.

If relying on external systems is intentional (e.g., end-to-end testing), it is worth separating end-to-end tests into a dedicated suite executed separately, for instance, as part of the nightly build.

I was once on a team where running all the tests took more than two hours because most of them communicated with a database. These tests were also flaky, so merging more than one Pull Request a day was virtually impossible.

Bugs in unit tests

Tests are there to ensure the quality of the product, but nothing is there to ensure the quality of tests. As a result, tests may fail to do their job due to bugs. Unfortunately, identifying these bugs is not easy. Paying attention can help. For instance, if all tests continue to pass after changing the product code, it usually indicates either bugs in tests or missing test coverage.

Hard to maintain tests

Tying tests and implementation details closely usually causes numerous test failures after even simple product code changes. Keeping tests focused on functionality instead of on the implementation can significantly reduce the number of unnecessary test failures.

Writing "tests" only to hit the code coverage number

Test code written solely to meet code coverage goals is usually low quality. Assertions in such code are often missing because they don't contribute to the coverage goal but can cause failures. Test coverage reported by tools can make the manager look good, but this test code is useless as it can't prevent bugs. What's worse, the high coverage hides areas that do need attention.

Unit tests that require a complex setup (Bonus)

Unit tests that require tens of lines of setup are a nightmare. They are hard to understand, write, and update. Their complexity makes them fragile and leads to bugs. Such unit tests often indicate poorly designed code, e.g., god classes that have multiple responsibilities and, therefore, require many dependencies.

This is my list of the top 5 + 1 unit test issues. What's yours?


💙 If you liked this article...

I publish a weekly newsletter for software engineers who want to grow their careers. I share mistakes I’ve made and lessons I’ve learned over the past 20 years as a software engineer.

Sign up here to get articles like this delivered to your inbox:
https://www.growingdev.net/

Top comments (4)

Collapse
 
dlcardozo profile image
Diego Cardozo

Well, you said some good approaches to fix some of the issues that you exposed, but behind that what is more important is what you described, tests sharing state, tests added just for coverage, tests with a big setup that you can smell that something is rotten there and that shows up by itself that the mesure of unit must be put under crisis on that situation. It’s important as a profesional to know when to stop and learn from the mistakes done on the journey, change something like don’t test clases try testing behaviors, use in memory repositories for testing, create tests for specific infrastructure repositories that only test that implementation. There go my 2 cents. Thanks for the article.

Collapse
 
moozzyk profile image
Pawel Kadluczka

As you said - it's a journey. And often developers learn it the hard way. I sure did, so I wrote the article, to save or shorten some of this pain.

Collapse
 
canro91 profile image
Cesar Aguirre

I've seem them all :) In a past project, we were testing retry mechanisms of handlers (think of additional actions after running a database transaction) and nobody reduced the retry count and delays inside the unit tests, so we had a test suite that literally ran in minutes doing nothing. Arrrggg! So if you have tests for retrying logic, reduce the delays inside your tests :)

Collapse
 
moozzyk profile image
Pawel Kadluczka

Ouch! We had a test that that ran for 40 seconds (1000000 iterations). It turned out it was effectively testing a random number generator from the standard library...