678
Sounds great in theory (programming.dev)
top 50 comments
sorted by: hot top controversial new old
[-] Vlyn@lemmy.world 169 points 1 year ago

TDD is great when you have a very narrow use case, for example an algorithm. Where you already know beforehand: If I throw A in B should come out. If I throw B in C should come out. If I throw Z in an error should be thrown. And so on.

For that it's awesome, which is mostly algorithms.

In real CRUD apps though? You have to write the actual implementation before the tests. Because in the tests you have to mock all the dependencies you used. Come up with fake test data. Mock functions from other classes you aren't currently testing and so on. You could try TDD for this, but then you probably spend ten times longer writing and re-writing tests :-/

After a while it boils down to: Small unit tests where they make sense. Then system wide integration tests for complex use-cases.

[-] b1ab@lem.monster 32 points 1 year ago

Totally agree.

I think we should all strive to do better. Unit tests, mock-ups, UX design, 2 week sprints with actual working deliverables, well documented use cases, every thing neatly stacked in Jira, dev,test,staging,prod environments, continuous integration and every thing else we are told to do.

Then reality sets in……

With all that said, 25 years as a dev, this utopian environment is almost impossible to find unless forced by regulatory compliance. Medical devices, life critical systems, etc. or if you have big piles of money.

[-] zib@kbin.social 22 points 1 year ago

In my experience, those things tend to be forced by project managers who believe the highest law of the land is proper scrum. Unsurprisingly, this makes all the devs miserable with no way to change anything because "this is just how it's done".

load more comments (1 replies)
[-] ChickenLadyLovesLife@lemmy.world 26 points 1 year ago

then you probably spend ten times longer writing and re-writing tests

This is always what I've seen personally when people use TDD. And it's worse because the inevitable time crunch towards the end of the project means the developers stop maintaining the tests, which renders all of the work put into the tests up to that point useless.

[-] PeriodicallyPedantic@lemmy.ca 14 points 1 year ago

That's not a problem with unit tests, that's a problem with project management

[-] ahal@lemmy.ca 15 points 1 year ago

It's also great for bug fixes. Write that sucker first and you have an easy way to reproduce the issue and check whether it's fixed.

[-] CoderKat@lemm.ee 10 points 1 year ago

Yeah, I'm constantly recommending junior devs to use TDD specifically for this. I don't recommend it for anything else. If they don't write the test first, it's possible that the test will end up testing the wrong thing and thus they can't be sure they really did fix the bug.

Sometimes it's hard to tell where to write the test ahead of time, so sometimes a slight variation I do is to write the test after (usually because it was such a struggle to figure out where the bug is), but when I'm testing it, I'll comment out the fix or whatever and make sure the test fails.

[-] gogosempai@programming.dev 7 points 1 year ago
load more comments (2 replies)
[-] ryathal@sh.itjust.works 72 points 1 year ago

Works great when you know what your doing before you start. That never actually happens in real life though.

[-] Zalack@startrek.website 22 points 1 year ago* (last edited 1 year ago)

And often if you box yourself into an API before you start implementing, it comes out worse.

I always learn a lot about the problem space once I start coding, and use that knowledge to refine the API of my system as I work.

[-] takeda@szmer.info 9 points 1 year ago

Exactly, from my experience, most of the time (primarily when I need to do something new) I start writing code, when it starts working then I am starting to refractor it so it doesn't look like crap.

Perhaps TDD would make sense, when before any actual work starts, we would have POC phase to understand what needs to be done.

[-] lobut@lemmy.ca 39 points 1 year ago

I like TDD in theory and I spent so many years trying to get it perfect. I remember going to a conference where someone was teaching TDD while writing tic tac toe. Unsurprisingly, he didn't finish in time.

The thing that I hate is people conflating TDD with testing or unit testing. They're vastly different things. Also, I hate mocks. I spent so long learning all the test doubles to pass interviews: what's the difference between a spy, fake, stub, mock, etc. Also doing it with dependency injection and all that. I much prefer having an in-memory database than mock what a database does. Last company I worked at, I saw people write tests for what would happen if the API returned a 404 and they wrote code that would handle it and all that. In practice, our HTTP library would throw an exception not return with a statusCode of 404. Kinda funny.

You obviously can't always get replacements for things and you'll need to mock and I get that. I just prefer to not use them if I can.

Also, TDD advocates love saying, you're just not doing it well or you just don't know enough.

I get it, you love TDD and it works for you and more power to you.

I definitely believe in testing and having resilient tests that will minimize changes upon refactoring, but TDD doesn't work for me for most of the work I do. It works for some and I love it when it does, but yeah .... sorry random long ramble.

[-] tvbusy@lemmy.dbzer0.com 15 points 1 year ago

After many failed attempts at TDD, I realized/settled on test driven design, which is as simple as making sure what you're writing can be tested. I don't see writing the test first as a must, only good to have, but testable code is definitely a must.

This approach is so much easier and useful in real situations, which is anything more complicated than foo/bar. Most of the time, just asking an engineer how they plan to test it will make all the difference. I don't have to enforce my preference on anyone. I'm not restricting the team. I'm not creating a knowledge vacuum where only the seniors know how yo code and the juniors feel like they know nothing.

Just think how you plan to test it, anyone can do that.

[-] ChickenLadyLovesLife@lemmy.world 14 points 1 year ago

I had a coworker who was big into TDD. He was using it on a disaster project that was way over budget and long overdue. I was sitting in on a meeting between him and the client when he tried to defend the project's status by saying "you don't understand - we've written six times as much test code as actual code!" The client almost punched him.

IMO it doesn't matter what methodology you use if a) you don't have the ability to understand what the client actually needs, and 2) you can't code your way out of a paper bag (or to put it more technically, if you over-architect your solution and then can't solve all the self-inflicted problems you run into).

[-] fiah@discuss.tchncs.de 5 points 1 year ago

a) you don’t have the ability to understand what the client actually needs

the client doesn't understand either. This I have had to learn to accept and not blame the client for, it's OK and we'll figure it out together

b) if you over-architect your solution

we can't figure out what we actually need by overarchitecting something to death. If and when you find you've coded yourself into a corner because you didn't architect well enough 6 months ago, then congratulations it seems like what you're doing is good because you've made enough progress to actually need a better architecture

obviously I'm oversimplifying and people more experienced than me understand better how to walk the tightrope between unmaintainable spaghetti and an overengineered mess, but me, I try to keep shit as simple as possible because you never know

load more comments (1 replies)
[-] anarchist@lemmy.ml 4 points 1 year ago* (last edited 1 year ago)

This reminds me when a senior engineer asked me to write exception handling on a one-off python script, not a production code - just a script devs can use internally. The "handling" was that the program should exit when a file is not found. He wanted me to try the file open, except the file error, print "file not found" message and exit(1).

Guess what, genius. Python already does that for you. No need to write an extra wrapper needlessly.

[-] mr_tyler_durden@lemmy.world 4 points 1 year ago

I much prefer having an in-memory database than mock what a database does.

Which sounds great in theory but then you get to find where your prod DB and testing DB differ and you have to keep chasing that. Unless you are using something like SQLite which has both (disk and in-memory) as an option.

I worked at a place that used a different in-memory DB (H2, IIRC) in place of our MySQL DB for testing. It ended up being hell to maintain and had to have hacks for how H2 and MySQL differ (tests would work in H2 but fail if run against MySQL or vice versa).

load more comments (2 replies)
[-] VanillaGorilla@kbin.social 38 points 1 year ago

With my stakeholders TDD is nearly impossible. I mean it's possible, but doesn't make sense as they shuffle their specifications every other day. I implement, they decide they wanted something different, I refactor, they don't like it, I refactor, they accept, I write tests.

Please send help

[-] Anticorp@lemmy.ml 20 points 1 year ago

Send help? We're all caught in the same fire.

I found a solution: I quit coding and became a school bus driver.

load more comments (1 replies)
load more comments (2 replies)
[-] SmoothSurfer@lemm.ee 23 points 1 year ago* (last edited 1 year ago)

Years of experience speaking:

  • Make it work
  • Make it right
  • Make it fast

If your end results are following this pattern, no one gives a fuck how you do

[-] magic_lobster_party@kbin.social 13 points 1 year ago

Make it maintainable should be up there too.

I’ve worked with projects that does the right thing, but no one can add new features to it because it’s a nightmare to work with. It’s at the level of not being able to move a button on the UI without breaking how the software interacts with the cloud.

load more comments (1 replies)
[-] dylanTheDeveloper@lemmy.world 4 points 1 year ago

Add make it cheap and you got yourself a deal

Also make it yesterday.

load more comments (2 replies)
[-] eleqtric-conjurer@artemis.camp 21 points 1 year ago

I actually love using TDD in my real life development job…

[-] JackbyDev@programming.dev 17 points 1 year ago

I write my code, comment it out, write tests that fail, then uncomment my code, then do the proper TDD loop. Some folks get too strict about the process at the beginning saying that that a test that doesn't compile is still a failing test. My brain doesn't work like that.

[-] Bsstahl@lemmy.az.social 16 points 1 year ago
[-] amio@kbin.social 16 points 1 year ago

It's criminally underutilized. Of course, one reason is that it's hard to TDD a moving target. Since it's also hard to get people to actually fucking specify things in a lot of real world cases, it's just one more thing you ought to do, but aren't allowed to.

load more comments (1 replies)
[-] babypuncher3000@feddit.ch 14 points 1 year ago

TDD is actually helpful once you get the hang of it.

[-] gogosempai@programming.dev 12 points 1 year ago

Yeah but getting the hang of it is the hard part. I don't know any dev in my company or my circle that uses it; we all did learn about it alright.

load more comments (1 replies)
[-] RagingToad@feddit.nl 4 points 1 year ago* (last edited 1 year ago)

It is a lifesaver in some cases

[-] interdimensionalmeme@lemmy.ml 11 points 1 year ago

How would you know what you're going to need or what it can do before you code it ?

[-] spike@discuss.tchncs.de 14 points 1 year ago

There's some things called software architecture, requirement engineering and software design. More dev teams should try this.

[-] DrMango@lemmy.world 11 points 1 year ago

Well so before you code it you still have an idea of what you want the program to do, right? So you write a test for the program to pass or fail based on that idea of functionality, and then you write the program to pass the test.

So for something simple like programming a calculator you might write test code that verifies whether your addition function properly adds two numbers together then write the actual addition function.

Later on as you continue to build the program your addition test will still be out there verifying that you haven't broken anything with subsequent code.

Some people will tell you that TDD tends to work better with established codebases in corporate environments where you have huge interrelated programs and maybe hundreds or even thousands of developers working concurrently as opposed to simple projects or startups where you might want to prioritize having a product set out before you start to implement rigorous testing requirements.

A lot of people don't like TDD because they see it as extra overhead and don't want to spend time writing test code when they could be writing "real code."

Proponents of TDD tend to point to the fact that it contributes to stability in the overall codebase and allows you to quickly and easily find and diagnose problems, and it can make you a better developer to think ahead rather than just dumping code into the codebase and assuming it's going to work.

[-] h3rm17@sh.itjust.works 6 points 1 year ago

Yeah, TDD is all fine and stuff until you have a system that communicates to a lot of other systems, and also has some weird dependencies, and since you are unit testing you need 300 foxtures and 100 mocks just to get the required coverage and then COVERAGE IS A FUCKING LIE.

[-] noodle@feddit.uk 7 points 1 year ago

You don't write a whole app in tests and then write the whole app in code, you make tests for the functionality as you go.

[-] Hexorg@beehaw.org 7 points 1 year ago* (last edited 1 year ago)

The Test part of TDD isn’t meant to encompass your whole need before developing the application. It’s function-by function based. It also forces you to not have giant functions. Let’s say you’re making a compiler. First you need to parse text. Idk what language structure we are doing yet but first we need to tokenize our steam. You write a test that inputs hello world into your tokenizer then expects two tokens back. You start implementing your tokenizer. Repeat for parser. Then you realize you need to tokenize numbers too. So you go back and make a token test for numbers.

So you don’t need to make all the tests ahead of time. You just expand at the smallest test possible.

[-] argv_minus_one@beehaw.org 4 points 1 year ago

It also forces you to not have giant functions.

No, being unable to read giant functions is what forces me not to have giant functions.

[-] Hexorg@beehaw.org 4 points 1 year ago

My friend, let me tell you a story during my studies when I had to help someone find a bug in their 1383-line long main() in C… on the other hand I think Ill spare you from the gruesome details, but it took me 30 hours.

load more comments (1 replies)
load more comments (1 replies)
[-] 7heo@lemmy.ml 8 points 1 year ago* (last edited 1 year ago)
[-] Gnubyte@lemdit.com 7 points 1 year ago

Write code to test your code then repl build and run it anyways and smoketest it to see if it actually works

Sounds like activities for people who don't have real work to do. These tech layoffs cut deep because there was so much fluff in the industry. I sort of blame these companies that marketed devops too hard and oversold overcomplicated solutions, but it's also the fault of the tech leads advising managers.

load more comments (2 replies)
[-] argv_minus_one@beehaw.org 6 points 1 year ago

It doesn't even sound great in theory. It sounds backwards in theory.

[-] fence_prude@lemmy.world 4 points 1 year ago

Sounds like you either need to establish better task parameters or you need to gain more experience programming.

[-] b1ab@lem.monster 8 points 1 year ago

This is very true.

Unfortunately most product managers SUCK at designing or making software.

Agile tries to fix this be supporting frequent iteration.

Unfortunately most programmers SUCK at writing good code.

TDD tries to fix this by forcing the consideration of end results (testing) at the beginning. It forces programmers and product teams to actually think and work. Make clear design decisions earlier on, but not to the point of waterfall.

It’s just a giant cesspool of failure due to human laziness that usually falls on the shoulders of QA.

Bottom line, making good software is hard. It takes time. But the market won’t support slow development. The business and sales teams remind me of Veruca Salt in Willy Wonka.

[-] RoadieRich@midwest.social 4 points 1 year ago

It's definitely great in theory until you inherit a codebase with no tests, poor documentation, and numerous reported bugs already live in production. Even better if it was written by people hired because they could do other things better than they could code - which looking at some of the unlabeled wiring messes we were left, isn't saying a lot.

[-] Razzazzika@lemm.ee 9 points 1 year ago* (last edited 1 year ago)

Good way to figure out how an unknown code base works is to add unit tests tho

[-] huginn@feddit.it 4 points 1 year ago

It's also the only way to migrate architecture safely.

load more comments (1 replies)
load more comments
view more: next ›
this post was submitted on 05 Aug 2023
678 points (97.7% liked)

Programmer Humor

31700 readers
727 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS