.st0{fill:#FFFFFF;}

Can Improving Your Design Sense Help You TDD? 

 December 6, 2016

by Jon Reid

3 COMMENTS

When you’re new to test-driven development (TDD), there’s a strong tendency to continue writing code the way you used to. Then you step back and ask, “But how can you unit test this? TDD is so impractical!”

Almost always, my answer is: “Then don’t write it like that.”

Apple published a blog post, Working with JSON in Swift. I was looking for tips on Swift JSON parsing and found the beginning of the article quite helpful. But it took a bad turn at the end…

Apple Shows Us How NOT to Design Code

The article explores various aspects of JSON parsing. But then there’s a section titled, “Writing a Type Method for Fetching Results”:

You can create a type method on the Restaurant structure that translates a query method parameter into a corresponding request object and sends the HTTP request to the web service. This code would also be responsible for handling the response, deserializing the JSON data, creating Restaurant objects from each of the extracted dictionaries in the “results” array, and asynchronously returning them in a completion handler.

My goodness. How many responsibilities can we cram into a single class? Here’s how Matt Diephouse counts it:

How would you TDD such a thing? …The answer is, don’t!

TDD and the Single Responsibility Principle

TDD gives many kinds of feedback. One of them is, “How hard is it to write a test?” If a unit test is hard to write, its likely that the design is wrong.

If a unit test is hard to write, it's likely that the design is wrong.

Click to Tweet

That doesn’t mean we don’t think hard about how to tackle a problem! But after wrestling with some design ideas, writing tests should be much, much easier. Your TDD will improve as your design sense improves.

Of the SOLID principles heuristics, the Single Responsibility Principle is my closest advisor. How can we TDD the JSON parsing of a networking response? Here’s a list of the responsibilities:

  1. Parse the JSON into a Response Model

That’s it. I’m not even concerned with creating my Entities yet. For the TDD sample app which fetches Marvel comic characters, this means I’m not directly creating any Character objects. I just want to package the response.

Creating an Agnostic Response Model

A Response Model is the inverse of a Request Model. It’s a representation of what comes back “from the other side,” whatever that other side is. It could be JSON, it could be XML, it could be a Protocol Buffer. The rest of the app doesn’t know or care.

Clean response design

I once worked on an app that tightly coupled its domain Model objects to XML. The old services spoke XML, so it seemed natural to the developers to build XML parsing directly into the Models. …Until one day, I had to work with a new service. It returned an existing Model type, but spoke JSON instead!

Yeah. Don’t add serializing or deserializing to your domain models. It’s not their job.

Clean Architecture takes decoupling even further. The objects just to the right of the dashed lines define a Boundary. The Gateway is a protocol. The Request Model is input to the Gateway. The Response Model is its output.

To the left of the dashed lines is the actual Service I’m currently TDD-ing. It takes care of communicating with the Marvel Comics API.

It can be replaced. Maybe DC Comics comes out with their own API. As long as we’re able to map DC’s response into our Response Model, the rest of the app won’t care.

New Possibilities for Integration Testing

This also opens the door to Not Quite End-to-End Testing. The Gateway can be implemented by a stub service that offers canned responses. You could do UI testing with zero network latency!

Yes, I know that you can use Nocilla or OHHTTPStubs to stub networking in particular. But Clean Architecture isn’t just about isolating networking. It’s a way to isolate anything.

Let’s flip this on its head. Say we use these same principles, but isolate the UI instead. The core of our app would work with Commands, not view controllers. We could then do Not Quite End-to-End Testing of the actual networking layer, without involving the UI.

I’ve never seen any program written like this, but I’ve wondered about it for years. I want to head in this direction with the TDD sample app. How feasible is a Command-based architecture in a View Controller-centric world? Let’s find out! (Thank you for putting up with the mistakes I’ll make along the way, as we learn together.)

Testability ⇄ Design Sense

Design sense and testability are intertwined. Building with testability in mind naturally decreases coupling. Learning to see through the glasses of the Single Responsibility Principle increases cohesion. The concepts of coupling and cohesion go back at least 45 years. They’re worth our continued attention.

And the easiest way to build in testability is with TDD. Pay attention to the different forms of feedback TDD gives. It’s not just about passing the tests (after seeing each one fail). TDD is a cognitive process assisted by automation. When a test is hard to write, ask yourself why.

Take a look at your response parsing. Is it tightly coupled with your Models? Does it have unit tests? Are those tests simple?

[This post is part of the series TDD Sample App: The Complete Collection …So Far]

Jon Reid

About the author

Programming was fun when I was a kid. But working in Silicon Valley, I saw poor code lead to fear, with real human costs. Looking for ways to make my life better, I learned about Extreme Programming, including unit testing, test-driven development (TDD), and refactoring. Programming became fun again! I've now been doing TDD in Apple environments for 20 years. I'm committed to software crafting as a discipline, hoping we can all reach greater effectiveness and joy. Now a coach with Industrial Logic!

  • Hi Jon,

    Thanks for the article and continuing to spread “The Good News” ;) This comes up time and again with MSDN examples as well. You are right they’re authoritative, and are perpetuating bad habits, especially in impressionable developers who are looking for guidance and genuinely want to write good code.

    People are so intent on teaching everyone to “code” they just perpetuate an endless cycle of big balls of mud. I recently spoke with a teacher at school about how they were teaching children to write apps. I told them that was great! It would go a far way if you also taught them just a few design principles such as SRP and how important it is to write clean legible code. They didn’t want to hear any of it. “Oh we just want the kids to learn to explore code and la la la”. We’ll just kick the can down the road, that’s not what we’re teaching. I see… I’ll have to un teach your students when they arrive for a job… :/ Doesn’t have to be that way.

    Michael

  • {"email":"Email address invalid","url":"Website address invalid","required":"Required field missing"}
    >