Chess TDD 58: (Not) Castling through Check
In this episode, I took the newly minted threat evaluator and used it to prevent castling through check. The most interesting thing to note in this episode, however, aside from continued progress toward the final product, was how some earlier sub-optimal architectural shortcuts came back to bite us (if only temporarily). At this point, we’re pretty close to a full implementation, but if we were building more and more functionality on top of this, it would definitely be time to pause and clean house a bit.
What I accomplish in this clip:
- Integrated threat evaluator with castling.
- Prevented castling through check.
Here are some lessons to take away:
- Working sporadically on a project causes cost incursion that goes beyond just having to take time to get back up to speed. In this case, I realized that I’ve changed the way I’m using Trello on a lot of projects, but didn’t realize I hadn’t changed it here, so I wasted some time managing the board. Not a big deal, but definitely an example of the hidden cost of sporadically working on a project.
- I’m personally very context-dependent when it comes to outside-in TDD (ATDD) or so-called traditional TDD. Your mileage may vary, but the lesson to take away is that you should be able to articulate your approach, whatever it is. Why do you do it that way? The answer shouldn’t just be, “mmm… dunno.”
- I made the mistake in this video of renaming some tests while I had a failing test. As I stated in the video, the risk of this causing a problem is nearly nil, so it may seem that I’m going on about theory for theory’s sake. But this is really an important practice — not so that you can get the “TDD Badge of Purity,” but because there are times when making this mistake leads you to introduce more failures or to introduce a different reason for failure without realizing it. Your green test suite is like an early detection system, the way that pain tells your body something is wrong. If you start making changes with red tests, it’s like eating a big meal after leaving the dentist’s office loaded with Novocaine. You might start chewing through your tongue without realizing it.
- You saw the circular dependencies thing come home to roost in this episode with a stack overflow exception. Having circular dependencies in the code isn’t just bad for architectural purity. It causes tangible pain.
- You also saw me do something iffy to address the circular dependency problem. Architectural/design concessions beget more concessions if left unchecked. You don’t do one iffy thing and that’s the end of it. Sooner or later, it becomes a slippery slope.