🚀 TDD, Where Did It All Go Wrong (Ian Cooper)

  Рет қаралды 546,623

DevTernity Conference

DevTernity Conference

6 жыл бұрын

❗️ATTENTION ❗️
Registration to DevTernity is running:
👉 devternity.com
Since Kent Beck wrote the book on TDD in 2002 a lot of words have been dedicated to the subject. But many of them propagated misunderstandings of Kent's original rules so that TDD practice bears little resemblance to Kent's original ideas. Key misunderstandings around what do I test, what is a unit test, and what is the 'public interface' have led to test suites that are brittle, hard to read, and do not support easy refactoring. In this talk, we re-discover Kent's original proposition, discover where key misunderstandings occurred and look at a better approach to TDD that supports software development instead of impeding it. Be prepared from some sacred cows to be slaughtered and fewer but better tests to be written.

Пікірлер: 581
@simonvv1002
@simonvv1002 4 жыл бұрын
Notes I made during this presentation (just a dump, might be useful to some): - Test requirements, not low level - Test public API. Given when then - Test the exports from a module - Focus on higher-level - Test modules, not class - Refactoring is needed to see what is implementation and what is exports from module - Test behaviours - Think about your code as an api - Test the abstraction, not the implementation - Test are isolated and with shared fixture (to run quickly) - Red-green-refactor (go fast to working code) - No new tests during refactoring - Heavy coupling is the problem with all software - Thin public api - Refactoring = changing internals - Patterns in the refactoring - If you're not really sure, write tests for implementation (delete the tests) - Not classes, behaviours - Don't isolate classes in testing - Private methods (these are implementation details)
@vborovikov
@vborovikov 3 жыл бұрын
so it's just common sense?
@DanHaiduc
@DanHaiduc 3 жыл бұрын
@@vborovikov Yes, but people don't seem to be having it. Hence the need for this talk.
@DanHaiduc
@DanHaiduc 3 жыл бұрын
Also, keep tests fast (
@dyyd0
@dyyd0 3 жыл бұрын
@@DanHaiduc Clarification: whole test suite should run in under a few minutes, not just one unit test. And having DB communication during testing is OK as long as it is isolated from other tests (by either cleaning it or using exclusive instances or what ever. Basically memory based db that is recreated for each test).
@DanHaiduc
@DanHaiduc 3 жыл бұрын
@@dyyd0 You are absolutely right. After watching Fast Test, Slow Test I have realized that the whole test suite should run in **less than two seconds**. It is possible if you don't invoke any big frameworks during the tests: kzbin.info/www/bejne/iHLbmpyIha2Gb80
@kevinfleischer2049
@kevinfleischer2049 3 жыл бұрын
I like this talk. What I learned: "Tests protect something. You want them to protect requirements, not implementation details. Thats why you delete tests that were only there to make it happen, but are not a result of a requirement"
@DEvilParsnip
@DEvilParsnip 2 жыл бұрын
a beautiful TLDR , that you soooooooooo much.
@JorgetePanete
@JorgetePanete 4 ай бұрын
That's*
@TheDavidlloydjones
@TheDavidlloydjones 4 ай бұрын
That's loony, Kevin. Tests are small, mechanical procedures. They challenge mechanical workings of a program. Getting reuirements and design right is an intellecual (and political) process. It has to be done by people representing the interests being served by the work at hand. It's not a matter of test, it's a matter of debate and judgement.
@kevinfleischer2049
@kevinfleischer2049 4 ай бұрын
@@TheDavidlloydjones What you describe regarding requirements is not opposing to what I wrote. But you are wrong regarding how tests should be written. The way you describe will result in tests that break when you refactor SW. Thus your tests will hinder changes. It is a mistake that I've done in the past but one that is worth preventing.
@ForgottenKnight1
@ForgottenKnight1 3 ай бұрын
When management makes the test coverage of some tool a "requirement" the whole TDD thing goes tits up. I've seen it a dozen times and a dozen times it has the same result - a lot of tests that don't test jack shit, they are just there to do some coverage by either "verifying" something or "testing" implementation details.
@ruixue6955
@ruixue6955 3 жыл бұрын
21:00 where did it go wrong in TDD 22:30 recommended book 23:53 24:01 *do not test implementation details, test behaviors* 24:15 in *classic modern TDD cycle* , I will write a test before add that method, and that test will govern will that method succeeds or fails 24:30 *the trigger to writing a test in TDD practice is essentially adding a method to a class, THAT IS THE WRONG THING!* 24:50 *THE TRIGGER in TDD for creating a new test is that you have requirement, you want to implement* 26:03 testing the public API 26:13 what is the contract your software has with the world 26:28 (API) will not change rapidly 26:36 *how you implement that requirement (contract, API) is unstable* 26:44 what your software offers to consumers is the *stable contract, that is what you should test* 26:54 not HTTP API 28:46 SUT (system under test) is not a class
@7th_CAV_Trooper
@7th_CAV_Trooper 21 күн бұрын
classes have public contract too.
@ikeo8666
@ikeo8666 3 жыл бұрын
The problem comes from tools that do "CODE COVERAGE". Because of that metric, devs just end up testing their implementation so the chart that goes to the bosses and regulators is "oh look 99% code coverage of tests" when in practice it's doing absolutely nothing to improve the code.
@batesjernigan1773
@batesjernigan1773 2 жыл бұрын
I get the knee jerk reaction but IMO it can tell you a lot if it's below 80%. I think there should be a minimum but chasing 100% coverage isn't something worth having for the reason you mentioned.
@robertwhite3503
@robertwhite3503 2 жыл бұрын
Yes, I think test coverage tools mat have led me astray. I don't use them but it implies that all methods should be tested. Also the test first methodology makes me think of testing methods because I think in terms of writing methods. However I am going to try writing tests based on the expected behaviour. Generally everything I write starts with a web page and ends in a database update. Mostly of this boils down to the public services which are often not complex so may end up testing methods anyway. Where I have private methods this is arguably the tricky stuff that needs testing but may-be not.
@fennecbesixdouze1794
@fennecbesixdouze1794 2 жыл бұрын
No, that's not where the problem comes from. There's a fairly big name in extreme programming who does hundreds of talks that everyone watches and listens to who repeatedly ad-nauseam says you must write a test before writing each single new line of code. He even says you cannot call yourself a professional if you don't do that. The problem is that we have people like that, leaders and speakers in our field, who are talking out of their ass.
@Arthur-cd8yq
@Arthur-cd8yq 2 жыл бұрын
As far as I understand in here, 100% code coverage is exactly what Ian Cooper is trying to achieve. The main point of dissension is that his 100% is behaviour testing (but if all your app does is exactly what the behaviours expect it to do, that's 100% of code covered), and actually any line of code happens after having written tests. It basically tells you "don't test implementations, but test every. single. requirement", which is to say, 100% code coverage
@EdouardTavinor
@EdouardTavinor 2 жыл бұрын
i once had the idea of generating a file with a million lines in which each line just adds 1 to a number. at the end i write an unit test: assert(myFunction(), 1000000). And instantly our code coverage goes up 30%!
@alinaqvi2638
@alinaqvi2638 5 жыл бұрын
This guy is speaking from hard earn't real-world experience. We need more engineers like him imparting their knowledge. Rather than 25 year olds who have real industry experience of 1.7 years and have already written 2 books.
@626Pilot
@626Pilot 4 жыл бұрын
Robert C. Martin has been programming for over 50 years, and he disagrees. He says go for 100% coverage. If you don't test implementation, you are going to miss bugs and design flaws.
@ishcatu
@ishcatu 4 жыл бұрын
@@626Pilot Robert C. Martin actually agrees with what is said in this talk. It can be read in his article about test contra-variance. Just google: cleancoder test contra-variance.
@redhotbits
@redhotbits 4 жыл бұрын
@@626Pilot uncle bob is full of shit
@nicogreco6926
@nicogreco6926 4 жыл бұрын
"He says go for 100% coverage..." Code Coverage is a hollow stat that many inexperienced developers put far to high emphasis on. You can still have various bugs with 100% code coverage, just because you covered all cases doesn't mean the cases are valid behavior.
@tamashumi7961
@tamashumi7961 4 жыл бұрын
@Peter Mortensen no test fails when a comment starts telling lies due to the underlying code changes. This is why better avoid comments. I appreciate there might be complexity in certain systems which is hard to grasp withouta comment though.
@gareth9012
@gareth9012 2 жыл бұрын
15 years ago in my one of my first contract programming jobs (I was a late starter), Ian took me onto his team, assigned me a more experienced programmer as a mentor and told me to read Kent Beck's TDD book. It completely changed the way I approached programming. I'm immensely grateful of the time he took to teach me. Great guy.
@pavel_espinal
@pavel_espinal Жыл бұрын
I must confess that I've been mostly reluctant to the idea of TDD until just now. This is how TDD should have been "sold" or introduced from the beginning. Many people make TDD sound like if you have to know how the implementation of your methods is going to look like even before writing your first line of code. Outstanding talk.
@colin7406
@colin7406 3 жыл бұрын
You know this is a good video when you look at the like to dislike ratio with the maddening creaking going on through out the presentation
@MaZeeT
@MaZeeT 2 жыл бұрын
Didn't aged to well :(
@Oktokolo
@Oktokolo Жыл бұрын
The creaking likely comes from something rubbing at the mic or its cable whenever he moves. Testing the recording setup before going on air still is extremely underrated...
@basileagle314
@basileagle314 Жыл бұрын
@@Oktokolo maybe the conference should have followed TDD principles
@Oktokolo
@Oktokolo Жыл бұрын
@@basileagle314 I wonder, what TDD would look like outside development...
@basileagle314
@basileagle314 Жыл бұрын
@@Oktokolo before you start using the microphone you talk normally in a large room to make sure they can't hear you at the back
@lucasterable
@lucasterable 2 жыл бұрын
35:15 "the unit in isolation is the test". This is HUGE! Need a quote from Beck's book.
@common_collective
@common_collective 5 жыл бұрын
I never understood the benefits of TDD until I watched this talk. This is gold. Ian Cooper seems to be about the only person making sense on this subject
@SallyWaters24
@SallyWaters24 5 жыл бұрын
I'd add to the short list: Kent Dodds.
@cryp0g00n4
@cryp0g00n4 3 жыл бұрын
Yea he definitely seems like he has a real understanding from his experiences as a software engineer and did what the book he described did for him - which was condense his years of experience in succint medium.
@developer_hatch
@developer_hatch 2 жыл бұрын
This comment is duplicated... odd.
@0netom
@0netom Жыл бұрын
IIRC, David Chelimsky's RSpec book made me understand benefits of TDD and trick of writing tests first. Then Uncle Bob's Clean Code series deepened my understanding. Now, 15 years later, I still struggle with using it, because when you work in teams, your colleagues are not disciplined enough to follow such practices closely and once they made a mess, it's really hard to stay on course... :( But it worth the effort!
@encapsulatio
@encapsulatio Жыл бұрын
@@0netom How is using TDD helpful if you already can just evaluate every function in Clojure?
@MrFedX
@MrFedX 4 жыл бұрын
I’ve had a hard time getting inte TDD and now I realize why. Great talk giving the philosophy and practice of TDD. I’ll read Kent Becks book right away and start testing behaviour. :)
@gamemusicmeltingpot2192
@gamemusicmeltingpot2192 3 жыл бұрын
this talk is twice as effective after I have used TDD myself, helped me identify mistakes or incorrect ways of thinking a lot
@syrus3k
@syrus3k 5 жыл бұрын
This is absolute gold and an eye opener.. thanks, thanks a million, thanks without end.
@davemasters
@davemasters 4 жыл бұрын
lol @ the stick man reference
@Endomorphism
@Endomorphism 4 жыл бұрын
Its always goes straight in the box of understanding when someone talk about actual philosophy of subject. He is talking with experience. Real Gold!!! THANX :-)
@vekzdran
@vekzdran 4 жыл бұрын
Amazing lecture. Appreciate the hard-experience led talk and that is what gives it immense value, not the TDD/BDD but the higher understanding WHAT should be tested, i.e. the user behaviour. Fantastic, thank you.
@BlazingMagpie
@BlazingMagpie 3 жыл бұрын
I was stuck for months on this question about TDD: "How are you supposed to write the tests for the methods before you know how the structure will look like?". This answers it completely.
@Whyoakdbi
@Whyoakdbi 3 жыл бұрын
hahahah same man! I was like - Am I supposed to be some sort of genius to figure out in my head all the functions I need to write and before I write them, write tests for all of them, and often those functions change because I refactor the code because the initial implementation was not optimal enough..
@oscarmvl
@oscarmvl 3 жыл бұрын
And what’s the answer?
@BlazingMagpie
@BlazingMagpie 3 жыл бұрын
@@oscarmvl You don't write tests at small scale: you write test for program's end goal, not tests for implementation details. That way you can refactor internal details without having to also rewrite all of the tests and still be able to find when program starts to fail.
@oscarmvl
@oscarmvl 3 жыл бұрын
@@BlazingMagpie makes a lot of sense, thanks for the quick reply!
@Whyoakdbi
@Whyoakdbi 3 жыл бұрын
@@BlazingMagpie actually that's a bad idea. You can never test all possible scenarios like that
@paulhammond8583
@paulhammond8583 2 жыл бұрын
The best tech talk I've ever watched. Had a huge impact on my career.
@rv4tyler
@rv4tyler Жыл бұрын
'Think about your code as an api' was my biggest take away from using TDD process. That was my biggest pivot in the way I wrote code.
@jerrychen2663
@jerrychen2663 2 жыл бұрын
Since the video suggests that we should write unit tests for modules, not classes. Hence, before starting TDD, the first thing we need to do is to divide the system into modules well.
@OnlyForF1
@OnlyForF1 16 күн бұрын
You don’t though! All you need to start test driven development is a single behaviour you’d like to verify functions as expected
@ruixue6955
@ruixue6955 3 жыл бұрын
30:43 *don't write tests to cover implementation details (because those change)* 30:53 *write tests only against stable contract of the API* 31:02 *Refactoring* is the key step, which enables u to *achieve the goal of separating between things like implementation details u don't need to test and the things you do need to test*
@ismailm123
@ismailm123 6 жыл бұрын
Watched the original version of this talk a few years ago. This updated version is even better.
@ismailm123
@ismailm123 3 жыл бұрын
@Peter Mortensen there you go 😉
@wealcome_company
@wealcome_company 6 жыл бұрын
The best talk about TDD ever, thanks!
@TokyoXtreme
@TokyoXtreme 5 жыл бұрын
Creaking intensifies.
@dthompsonza
@dthompsonza 4 жыл бұрын
sniffs :P
@portlyoldman
@portlyoldman 3 жыл бұрын
Nearly drove me mad...
@JSmith73
@JSmith73 3 жыл бұрын
NVIDIA RTX Voice ftw.
@ikeo8666
@ikeo8666 3 жыл бұрын
why did I read this comment? the whole video is ruined now
@narthur157
@narthur157 3 жыл бұрын
I had to stop
@shutupandshave1926
@shutupandshave1926 2 жыл бұрын
This presenta....CREAK...tion is absolutely ...SQUEAK... fantastic.
@fazlizekiqi2324
@fazlizekiqi2324 4 жыл бұрын
Great lecture! Explanation about the "duck tape programmer" was funny!
@gpk6458
@gpk6458 3 жыл бұрын
This is the most important thing I've seen this year. Wish I'd seen it earlier.
@this-is-bioman
@this-is-bioman 19 күн бұрын
It's been a while since your comment. How is your code doing today? Still into TDD or alredy cured? 😅
@manfredbergmann6160
@manfredbergmann6160 5 жыл бұрын
Awesome talk. Ian brings it to the point.
@maik8338
@maik8338 Жыл бұрын
I want to say, that this is one of the most helpful speeches on TDD or software development in general I have ever heard. Just one tiny thing...the background noice, I think it's the floor, drives me crazy.
@dmytroromantsov9847
@dmytroromantsov9847 3 жыл бұрын
This video gave me a few really important insights into the development process. Thanks!
@mykytafastovets8333
@mykytafastovets8333 4 жыл бұрын
Incredibly useful, especially when thinking through how to implement TDD correctly after starting lean, but your product starts reaching enterprise level
@orange-vlcybpd2
@orange-vlcybpd2 5 жыл бұрын
23:59 - "dont test implementation, test behaviour" 34:46 - "the test becomes the first consumer of your code"
@ashrasmun1
@ashrasmun1 5 жыл бұрын
Can you elaborate?
@626Pilot
@626Pilot 5 жыл бұрын
@@ashrasmun1 I can elaborate! This video is full of terrible advice, and the best reason to watch it is to find out what not to do. If you "only test behavior" you can have a huge pile of shit in your code, which just happens to pass your "behavioral only" tests. That pile of shit will slow you down as soon as you have some new use case that your original "behavioral test" didn't account for, because your code will tend to lean into your "behavioral only" tests. Whatever they let your code get away with is "okay" because the test says so, right? This, of course, _is the whole point._ We _incorrectly_ think it's onerous to test 100% of our code, every line, so we try to get away with less than that. (If any at all.) Undisciplined coders will flatly refuse (or strenuously object, under management pressure) to write tests, no matter what anyone says. Consummate professionals who care about what happens as a result of their work will, among other things, test 100% - every line. What this video presents is ~70-80% of the way there. (I mean this literally; you will hit about 70-80% code coverage with what he suggests.) The last 20-30% of code that isn't tested is where much of the shit is going to hide. Some of the shit may be in your tested methods; but if you bring those un-tested methods under the control of tests, you will soon find it necessary to refactor and get rid of the shit. I used to do this "integration only" testing myself. It was far better than nothing, but it still left much to be desired. I kept having to go back and fix shit in the untested code, over, and over, and over again. I kept finding bad designs hiding in that untested code, and lax behavior that enabled bad designs to persist in tested methods. Finally, I got sick of it, and decided to try 100% coverage, just for a month, to see if I liked it. Everything got WAY better. It's so much easier to refactor when everything is tested, and so much harder to get away with a shitty design as well. If I have to go back and fix or extend this 100%-tested code, it's _easy._ Easier, by a wide margin, than that kind of work has ever been before, and I have been doing this for _decades._
@BlackLinerer
@BlackLinerer 5 жыл бұрын
@@626Pilot I do not agree. If you do TDD, then you can delete every line of code that is not covered by the test, because it can't be needed. --> 100%
@626Pilot
@626Pilot 5 жыл бұрын
@@BlackLinerer If you do TDD, you hit 100% coverage, so what isn't covered by the test is the lines you throw away. Any line that is important enough to put into production is important enough to cover.
@zzzfortezzz
@zzzfortezzz 5 жыл бұрын
​@626Pilot : I'm no expert here, but I wonder. If you do 100% coverage, then when you change the way you implement the behavior, just small change, it doesn't impact the behavior, but it does break tests, I think it's unnecessary. Since you said it was just 1 month that you tried, I think it's still kind of too soon to tell. However, here's another clip that talk about the bad parts of TDD, the speaker's team was obsessed with code coverage, and it nearly killed their project: kzbin.info/www/bejne/roGvaWesq7GqjqM And another article having a little part discussing about code coverage: medium.com/javascript-scene/mocking-is-a-code-smell-944a70c90a6a ``` In my experience, increasing coverage beyond ~90% seems to have little continued correlation with lower bug density. Why would that be? Doesn’t 100% tested code mean that we know with 100% certainty that the code does what it was designed to do? It turns out, it’s not that simple. What most people don’t realize is that there are two kinds of coverage: - Code coverage: how much of the code is exercised, and - Case coverage: how many of the use-cases are covered by the test suites [...] 100% code coverage does not guarantee 100% case coverage. Developers targeting 100% code coverage are chasing the wrong metric. ``` As I said, I'm no expert, still in progress of practicing TDD. However, I'll go with the more experienced experts since their explanations are more reasonable.
@geshtu1760
@geshtu1760 4 жыл бұрын
I clearly hold a minority opinion, but it still seems to me that TDD (and all ideologies like it) comes from a magical place where business/user requirements are clear and determined in advance and never change, and developers somehow not only know in advance how they will develop a thing and what challenges they will face, they also somehow know the best way to do it, such that their design / API will not change. After coding for over 20 years and working many years in automated test, I have yet to meet such a developer. Coding involves exploration. You can't test for what you haven't yet discovered, and only a fool pretends there is nothing to discover. My disagreement with TDD is not because I think it is slower. It is because I just don't think developers (or anyone for that matter) are good at predicting the future. I suspect what ends up happening is that tests get updated after the software is done, which is fine but it's not what we're being sold. I have not written (m)any pieces of software where I knew the correct design or even how it would eventually work, before I started. I have a rough idea, but you can't write tests for a rough idea and expect nothing to change. Invariably the process of writing software involves some measure of exploration of the problem space and some iteration over various interfaces and designs, before eventually the API or UI or design begins to take shape and stabilise. Often the first attempt is not the best one, and yet you need to make that first attempt in order to better understand the problem space, and by then you will have gained the knowledge required to implement a more robust solution. Sometimes this process repeats several times. This solution may well (and indeed often does) change the contract with its would-be consumers (but that's ok because they haven't been finalised yet either). It seems to me that if you write the tests first, your lack of knowledge/foresight of the final product will be reflected in the tests, and they will then constrain the implementation unnecessarily, as you inevitably implement the code to conform to the tests rather than to solve the problem you originally intended to. Is it really so bad to write software, or even just a component, and THEN write the tests now that you better understand how all the pieces fit together? You write the code, and iterate until the design feels right. The interface is also perfected here. Then having understood the thing to be tested, you (or better, someone else who understands the thing to be tested, or better still, both) write the tests that are designed to (a) validate the contract between software and consumer and (b) try to break that contract. Apologies for long rant but I assume someone will correct me and I will learn something new.
@raulvazquez3511
@raulvazquez3511 4 жыл бұрын
> comes from a magical place where business/user requirements are clear and determined in advance and never change It takes several iterations to get the requirements right, and on each iteration, they will change. Looking at the latter part of your comment, I think you agree on this. > Coding involves exploration That's the key, where TDD helps is on exploring the unit (as a use case, not a class) instead of the entire system. > You write the code, and iterate until the design feels right. [...] having understood the thing to be tested, you (or better, someone else who understands the thing to be tested, or better still, both) write the tests that are designed to (a) validate the contract between software and consumer and (b) try to break that contract. Yeah, that's it. The difference with test-first TDD is and the iteration is done. Instead of favoring the iterations on design, it favors the iterations on getting the requirements right. Around 40:20 Ian goes deeper into the Red Green Refactor cycle. First, the requirements (with tests) are a bare definition, something that doesn't work (red), some code is written and to make the test work, at this point the code is DIRTY and SINFUL, there IS NOT good design, but this initial design and this initial definition can provide feedback quickly, it can be validated and with more details come a better understanding (even validate them with someone else as you said), a few iterations might be needed to get to an acceptable behavior (green) the important thing is to not forget the exploration, to no forget the discoveries, the new details of the requirements, and the way TDD does it, is writing them in the test, once there, the design can be improved (refactor), so the design can be changed without changing the requirements (already validated by tests at this point). With this approach, the requirements details (and their validation, with test) come before the design. The logic behind it, is: What's more important? The system behavior fulfilling the requirements or the design behind it? In TDD, a change in a test should come from a change in the requirements (the contract), a change in the design (refactor) should not affect the test, in practice, this is hard to get, but knowing it, changes at what level the tests are written and lowers the coupling.
@PetrGladkikh
@PetrGladkikh 3 жыл бұрын
@@raulvazquez3511 good design fullfills requirements, there's no contradiction. And it is not optional, while unit tests restrict how you can (or willing to) change your system. I still fail to see why should I bang my head against every wall in the room (tests red), make random turns (bad implementation), and only then walk our of room suddenly realising where door is (gainining understanding). I prefer to look around, to see where the door is. Then write a test to cover that - the test would be a lot simpler then. Still no answer why I should write tests BEFORE the code. Also I think TDD is a misnomer. It is actually a Unit Test Driven Development, by the way.
@PetrGladkikh
@PetrGladkikh 3 жыл бұрын
@@raulvazquez3511 Also I have question about word "quickly". Why? I think here is the core of disagreement, I think that people who like TDD - are the ones who _feel_ productive doing it. You create problems, you solve problems, all that brownian motion. While if you sit there thinking you are not typing anything - that arguably may not feel like a productive activity. But it is the result that matters.
@raulvazquez3511
@raulvazquez3511 3 жыл бұрын
@@PetrGladkikh the result is what matters, of course. Some people feel safer doing small steps and constantly verifying they are on the right path.
@DotSimLtd
@DotSimLtd 3 жыл бұрын
Can I buy you a beer? I can't agree enough. If you do TDD for most projects you will spend your entire time and budget before you have even delivered a prototype to a very unhappy customer.
@jhaand
@jhaand Жыл бұрын
Great talk. It mostly reflects the philosophy we used at the project I was working on in 2017.
@mpldr_
@mpldr_ 2 жыл бұрын
"Have programmers speak to customers" With most programmers I've met so far, this would be a great way of either getting rid of your customers or getting your programmers really annoyed.
@peterbaan9671
@peterbaan9671 Жыл бұрын
Yeah, you need an SME of sorts who speaks customer and speaks engineer at the same time.
@thibauthanson7670
@thibauthanson7670 Жыл бұрын
Sure, let's pile on with the stereotype, good job.
@peterbaan9671
@peterbaan9671 Жыл бұрын
​@@thibauthanson7670 - Stereotpes exist for a reason. Programmers are usually not "peoples people", nor salesmen, nor managers. There are some scenarios where it can be beneficial to have the programmer join the meeting with the customer, but it is rarely a good idea. You see, customer relations is a 100% different cattle of fish compaired to programming. You need to know what can and what can't be said in front of the customer, you have to be extremely polite all the time, you have to agree to their scope while changing that scope, etc. Having the programmer speak to the customer is a bad idea for the same reasons as having a physician as the Minister of Health. It sounds good, but the position won't utilize the very skills that makes somebody a doctor. Some time it works, but not because the human in question is a good doctor, but because he is good at politics.
@jonharson
@jonharson Жыл бұрын
Customers who reach engineering will be sacrificed to a Canaanite god, these are the rules of the game
@olleharstedt3750
@olleharstedt3750 2 жыл бұрын
Imagine if this guy actually had presented some numbers. Bugs per developer, bugs per change request, cost of TDD before and after his approach... We need empiricism.
@derhintze
@derhintze Жыл бұрын
Yeah, I think anyone likes to replace feelings with evidence. But that's really hard to achieve. Did you have a look in "Software Creativity" by Robert L. Glass? That one's a nice, balanced book on this topic.
@this-is-bioman
@this-is-bioman 19 күн бұрын
You mean numbers that are going to be manipulated, faked and staged for the sake of getting them as soon as they are tracked?
@juliakirshina4244
@juliakirshina4244 2 жыл бұрын
this is the best TDD talk I have ever seen !!!!
@dimpukumar4678
@dimpukumar4678 4 жыл бұрын
Very informative. Thanks for posting!!
@johnnyw525
@johnnyw525 Жыл бұрын
Short version: If your tests will be broken by refactoring, you've written bad tests (generally speaking -- there's probably couple of unavoidable exceptions).
@this-is-bioman
@this-is-bioman 19 күн бұрын
Every refactoring is an exception lol it's natural that tests break if you move functions around or create new classes or functions. Otherwise it wouldn't be refactoring 😂
@mar.m.5236
@mar.m.5236 4 жыл бұрын
That talk fixes all my problems I had with TDD... Have to read the originals... TY
@larserikaa
@larserikaa Жыл бұрын
One of my favorite TDD talks ever! Thanks!
@ShirazEsat
@ShirazEsat Жыл бұрын
Where did we go wrong? When we started making "units" small. Excellent presentation, with a lot to learn from it.
@johannesprinz
@johannesprinz 5 жыл бұрын
Awesome talk! Bit of a mic drop at 1:02 DI Containers being evil, should use factories instead?!?! Love to hear more on this!
@youtux2
@youtux2 11 ай бұрын
24:50 The trigger in TDD for creating a new test is that you have a requirement you want to implement.
@pepijnkrijnsen4
@pepijnkrijnsen4 Жыл бұрын
I'm about halfway through TDD by example and listening to this talk again for probably the fifth time. TDD is extremely straightforward and incredibly deep at the same time. I'm still working on fully incorporating it in practice but it's SO much fun.
@lepidoptera9337
@lepidoptera9337 Жыл бұрын
Why are you telling us that you like to torture yourself? ;-)
@jmrah
@jmrah 4 жыл бұрын
It's too bad he was running out of time at 57:00. I would have loved to hear more elaboration on the testing that should be done with the adapters in the Ports and Adapters model. Sure, I can test my application through my ports, but how do I know that my adapters and ports communicate correctly? How do I know, for example, that my HTTP adapter returns a 404 when my core applications throws a UserNotFoundException? Surely, I don't duplicate all my ports tests, but calling them through the adapter interface. It would have been nice to hear a little more about that part.
@mikerollin4073
@mikerollin4073 3 жыл бұрын
Thanks for sharing this talk
@alejandroagua5813
@alejandroagua5813 3 жыл бұрын
The best way is to be flexible. Like everything in life, there are tradeoffs. There's a tradeoff between the time it takes to ship your code and make your boss happy and to do TDD. You should know when it's good to apply TDD and when it's good to selectively tests only behaviors and high-level codes. Most of the time you want to strike the right balance between time to market and the time you spend on the TDD routine. But when being duct tape programmer is needed, high level over implementation detail, behavior over implementation, functionality over structure, public API over internal classes, write features or refactor over idly watching reds and greens.
@DodaGarcia
@DodaGarcia 2 жыл бұрын
I was apprehensive about the length of the video but once I read “ports and adapters” two minutes into it I knew I had made the right call
@qeithwreid7745
@qeithwreid7745 3 жыл бұрын
Great. Really clear. Thank you.
@70ME3E
@70ME3E 4 жыл бұрын
this is gold. THIS is how testing makes sense.
@this-is-bioman
@this-is-bioman 19 күн бұрын
Have you applied anything from this presentation that has changed your code? It's been a while since your comment.
@qasimazhar773
@qasimazhar773 2 жыл бұрын
An awesome talk. Big thank you.
@tomasnadvornik2826
@tomasnadvornik2826 Жыл бұрын
My man's fought so hard to keep that snot in. Respect
@Joe333Smith
@Joe333Smith 11 күн бұрын
He's absolutely right about not testing one class or function in isolation. You test a functionality. This was always super obvious to me. But he spelled out the reasons in a little bit more detail whereas I kind of just implicitly felt it.
@amitev
@amitev 6 жыл бұрын
A lot of wisdom in one hour
@PieJee1
@PieJee1 2 жыл бұрын
Good talk and i had the same experience with too much tdd. But i still make unit tests for classes that are low level or has no framework dependencies for example all value objects. I think you need balance even though it is less clear for junior developers when to write a unit test and when to write an integration test
@trinhngo2204
@trinhngo2204 Жыл бұрын
Nice speech, thank you An interesting viewpoint on TDD and i totally agree about how it slows down whole development process (by wrong testing implementation)
@stevecarter8810
@stevecarter8810 5 жыл бұрын
35:11 I've spent nearly a decade thinking I was the only one who spotted that
@williamlong4112
@williamlong4112 3 жыл бұрын
35:11 I've spent nearly a decade thinking I was the only one who spotted that
@EduardsSizovs
@EduardsSizovs 2 жыл бұрын
Probably one of the best videos on TDD.
@neozoan
@neozoan Жыл бұрын
I particularly appreciated the bit about using unit tests to aid in building implementation details and then deleting them. I've got quite a few of those to hunt down and it makes sense, as these are often superseded by higher level tests that focus on the public interface.
@lepidoptera9337
@lepidoptera9337 Жыл бұрын
If your public interface test is not performed by wetware, then you are doing it wrong.
@RonnyBubke
@RonnyBubke 4 жыл бұрын
Great Talk. Use it to convince people to do it right.
@EnricoGalassi
@EnricoGalassi 5 жыл бұрын
Amazing talk!
@jasperschellingerhout
@jasperschellingerhout 3 жыл бұрын
I believe it was UCSD Pascal that introduced the concept of unit (which I also believe was an inside the joke - Pascal is also a unit of pressure). A unit in Pascal was similar to the combination of the interface and implementation files separated as .h(pp) and .c(pp) files in C\C++. When referencing a unit you only had access to the interface section. It was essentially the "exports", the "interface", or the "header" section. You had no access to internals. The analogy with exports from Modules in Node.JS works very well, its pretty much a 1-1
@rursus8354
@rursus8354 5 ай бұрын
Wow! I formulated my own scratch hacking method (for script writing) and tought it to my pupils, and Phase 1 and 2 sounds very similar to the Q'n'D phase of and the refactor phase of TDD. Thank you! That was interesting indeed..
@manawa3832
@manawa3832 5 жыл бұрын
If your tests are brittle, that means your program is brittle. Trust me, this is a common pitfall. For example, I have a TimeWatcher object with a bunch of tests. The TimeWatcher uses Utc to compare timestamps and does some stuff. My tests reflect this. Later I decide, oh no, I need to use my Local Time. You make the change, and your tests break. This is proof that your program is brittle. What you should have done was construct the TimeWatcher with an object that abstracts away dealing with variations of time. That way, you simply add a new LocalTime object, test it with new tests, and inject it into TimeWatcher. None of your tests break. Your code needs to be open for extension, but closed for modification. If it's not, your tests will let you know.
@xybersurfer
@xybersurfer Жыл бұрын
but then you would have to anticipate, that you might later want to use Local Time instead of UTC?
@cryp0g00n4
@cryp0g00n4 3 жыл бұрын
Fantastic talk!
@suchoss4770
@suchoss4770 5 жыл бұрын
Well there were a lot of Bobs in our department ten years ago. Today all department is loked in maintenance...
@kcsongtv4184
@kcsongtv4184 4 жыл бұрын
great talk and well educative.thanks alot for this wonderful video
@sumantkanala
@sumantkanala 5 жыл бұрын
Oh boy, the part where he describes "programmer anarchy" build fast, fail fast, ship small really resonates with what I had been doing!
@BryonLape
@BryonLape 5 жыл бұрын
It went wrong at the same point as everything else, when the professionals got ahold of it and wrote books on the subject, without ever actually doing it.
@fooked1
@fooked1 5 жыл бұрын
This is really helpful advice
@vanivari359
@vanivari359 Жыл бұрын
Amen. For like 10 years i have this fight again and again that this IDE-driven approach of testing (tests focussed on methods) and especially TDD is horrible and responsible for the lack of adoption. It's tedious because while my public interface is pretty much set from minute one, i rewrite my class and method structure behind it constantly until it stabilizes. But that definition of what a unit is, was completely ruined by the industry, by IDE test-class generators and also by most TDD tutorials, which usually are so simple, that it looks like the method is the unit. If some of those tutorials would have added just another class to the unit and spoke about this issue, we would not have this mess today. Also amen to the Gherkin-tool topic. I have not seen a single project in which the business actually cared (meaning read/write them) about those tests because most of them are not capable or interested to structure requirements precise enough even in natural language and most POs in large companies are just "managers managing external providers" anyways. So at the end, i still like to align automated acceptance tests with the customer, but i don't force my team to deal with stuff like Gherkin unless they really want to (as if that ever happens). BTW: not complaining about Gherkin, Cucumber etc. Its a great idea, it works very well, but it's extremely hard to get the value out of it because almost every tool that tries to pull the business deeper into the development (BPEL, BPMN, BRM etc.) fails because at the end a developer has to do the job anyways. I love BPMN frameworks, but there are like 10 business analysts on the planet able to change an executable BPMN process without breaking it.
@gregbell2117
@gregbell2117 5 жыл бұрын
I wish our industry could get its story right. My understanding of the point of TDD was that it was supposed to show you when your design needed re-working. Tough/weird to test? Refactor. The test drives development.
@user-ph4zo2sr5v
@user-ph4zo2sr5v 5 жыл бұрын
It is far more subtle than that, though when you start asking *when* to test. Before each feature? Each method/function? Each line? Do you test after a feature, or method, or line? There are trade-offs everywhere. I am far more productive if I can experiment with implementation without ANY tests and then write tests to cover the *behaviour* afterwards. There is no right way... but testing absolutely should be considered an integral part of development. Guesswork otherwise.
@gregbell2117
@gregbell2117 5 жыл бұрын
I don't see how test-last is beneficial there. With a failing test written first, you're free to experiment with implementation, always knowing that it still works. That's unless you've written a test at too low of a level, so that it's sensitive to changes to your implementation.
@user-ph4zo2sr5v
@user-ph4zo2sr5v 5 жыл бұрын
It's too subtle and specific to the exact work you're doing to prescribe a "test-first" or "test-after" across the board. For example, when experimenting with frontend implementations it often isn't viable to have a high level test which will not be sensitive to the implementation - what do you hook into? words on the screen or element classes or types.. what if they change (usually do during that early phase)? I'm not going to write tests, regardless of how high level they are, which hook into an experimental HTML structure which is under constant change. It would slow me down far too much as I'd have to keep updating the tests. Again, this is highly dependent on what you are developing, as test-first absolutely does make sense in a lot of cases.
@gregbell2117
@gregbell2117 5 жыл бұрын
Absolutely right. I think this subtlety is missing in a lot of TDD discussion. I really do not want to feel friction when I want to refactor just because a pile of tests are going to fail if I change one little thing. I use screengrab based regression testing sometimes (ie. the changes I'm making should not affect the output). Other times I'm testing business logic, so my "unit" is a feature (a BDD/TDD mix) and I'm looking for specific values in the DOM, not place in the DOM hierarchy or other specifics.
@626Pilot
@626Pilot 4 жыл бұрын
This video is not about TDD. It is about the half-measures developers resort to when they find TDD difficult to work with. It rewards code that's easy to test, and punishes code that's hard to test. The secret is that code that's hard to test is _bad,_ and needs to be refactored. This secret is not known to these developers. They confuse the steep learning curve for evidence that there is something wrong with TDD. They assume it will _always_ be hard. So they come up with any excuse to skip this test, skip that test, etc. And then they write a blog or give a speech about how clever they are to have done this. Thinking that real TDD is too hard or not worth it is a _symptom._ It _goes away_ the more you stick with it. Being rewarded for writing easily testable code, and punished for writing code that's hard to test, forces you to give up bad habits. The habits are bad because of the fundamental truth at the center of TDD: *Loose coupling and testability are the same thing.*
@BorysMadrawski
@BorysMadrawski 3 жыл бұрын
It was about BDD and about how to not overkill ourselves with enforced TDD approach to have 100% coverage for every line of code in just a business code. Of course there is still a space for TDD if you develop/maintain a very technical code with a stable interface, like a framework (f.e. Spring), or some algorithms, when you really need to test every method and almost every possible combination of interactions and data.
@shantanushekharsjunerft9783
@shantanushekharsjunerft9783 3 жыл бұрын
Basically automate the test that developers do manually anyways after implementation to verify correctness of the feature. That automated test is TDD.
@algimantas.stancelis
@algimantas.stancelis Жыл бұрын
No. TDD is when you write test before you implement the feature.
@nikosc
@nikosc 5 жыл бұрын
Very nice talk
@pepijnkrijnsen4
@pepijnkrijnsen4 3 жыл бұрын
Fantastic talk
@HELLOWORLD-ix9eg
@HELLOWORLD-ix9eg 4 жыл бұрын
Summary: Test the overall behavior (public API) not internal implementation details.
@JamesSmith-cm7sg
@JamesSmith-cm7sg 4 жыл бұрын
In a monolith web app that's browser testing only then?
@cluster027
@cluster027 3 жыл бұрын
Wish I saw this earlier. You'd have saved me an hour.
@dyyd0
@dyyd0 3 жыл бұрын
@@JamesSmith-cm7sg You may want to look at some Uncle Bob videos on this (ModelViewController). You do not want to include UI layer in testing web app if at all possible. As Ian pointed to in his talk as well in this video, UI can change without the underlying behavior changing.
@JamesSmith-cm7sg
@JamesSmith-cm7sg 3 жыл бұрын
@@dyyd0 The UI should 100% be tested, but not unit testing, browser/end to end tests.
@gamemusicmeltingpot2192
@gamemusicmeltingpot2192 3 жыл бұрын
@@JamesSmith-cm7sg api does not mean the UI or http api, it means any part of your module that is used externally, i.e public methods but not the internal implementation this tests all the required behaviour and relevant code without breaking all the tests if the internal implementation is changed
@user-dt9xb7sn2q
@user-dt9xb7sn2q Жыл бұрын
This talk is describing the original TDD concept or so called "classicist" school. There's also the new school of TDD often called "mockist". Both are opposing each other. And this talk is somewhat cliticizing the mockist approach. To get a full picture I'd recommend everyone to learn both concepts and decide for themselves which of the two could better fit their field. What works for microservice architecture might not always work for a mobile app. What I don't understand from this talk and the classicist approach in general is the refactoring step, which seems completely optional to me. Why would you refactor after something is already working? Because of a smell? How would you know it's a smell? Because you've read smart books? (the majority does not read books). Also a higher (than a class or function) level tests are more brittle. They do enable safe refactoring without changing the tests, but on the other hand require changing multiple tests should the business requirements change. Likewise the mockist approach drives not only the implementation but also its design. One could say it's not TDD but DDD: Design Driven Development, as you have to come up with design before writing any unit test. Although you could write a higher level test if you like to, but I prefer writing it last to not have it hanging there red all the way through. And when the business requirement changes you often need to only change a test or two and write more for new units. You can also safely reuse your code, because even the smallest unit is tested.
@researchandbuild1751
@researchandbuild1751 4 жыл бұрын
43:48 huh great point. I always get stuck on the analysis paralysis portion these days. I think i need to get Kents book
@robertmuller1523
@robertmuller1523 2 жыл бұрын
The reason why developers tend to focus on testing methods, is that many organisations have established some kind of governance that uses code coverage or even method coverage as a central KPI. If you force developers to write at least one unit test for every single method that must achieve a code coverage of at least 75% of every single method, then you cannot complain when someone says "I have to write a unit test, because I have to add a new method".
@tamilmaranc
@tamilmaranc 3 жыл бұрын
excellent ppt sir
@eimaisklhros
@eimaisklhros 3 жыл бұрын
So, if I need to get some specific object(or a list) from the db based on something (ex name, address etc) is it wrong to mock my repository in order to test a certain behavior of what this class does? I have an ETL process where I need to test that my processor(module where the business is focused, the T in ETL) passes a specific object to the writer(the L) based on a specific reader input(the E). What I do is test the processor(not its other 10 -20 private methods, those are implementation details) by inserting a certain object and I assert that the object after the process is the one I need. like input = new Foo(param1,param2) This is where I mock the repository based on my business case. every BarRepository returns "someFooStringBecauseOfFooParam1) result = myProcessor.process(input) assertTrue(result, Bar(someParamsBasedOnTestCase). of course I could use an in-memory db for that...I just find it easier to create objects based on scenarios I want to test..
@benjaminpapin4312
@benjaminpapin4312 2 жыл бұрын
simply the video that could make the word a better place if everyone was spending an hour of their time watching it.
@ghevisartor6005
@ghevisartor6005 6 ай бұрын
What a find tests a lot useful for is when i need to check how a small piece of code works without running the entire app and navigating to that page, i know there is c# interactive but many times it's quicker this way. You write the code in the test and debug it, easy done.
@davidjulitz7446
@davidjulitz7446 4 жыл бұрын
Easy and clear.
@foobarz-coding
@foobarz-coding 4 ай бұрын
I was doing unit test for the last 2 weeks in my current job for the first time . I was mocking to dependecies of the class and also spying on the implemntation . I knew that I'm doing something wrong . Nice Lecture Now I understand how to go . what do you thing guy about mocking repositories with in Memory database for Unit test ?
@XeonProductions
@XeonProductions 2 ай бұрын
Maybe the reason I hate TDD so much is that I've always been on projects that are rapidly changing with poorly defined requirements. I very seldom encounter a project where I have good enough requirements to write tests BEFORE writing the code. I've also worked on projects where the leads are obsessed with code coverage and code smells, even though the code was still a bug ridden mess. I've spent more time writing tests, refactoring tests, debugging tests, and researching how to write tests than I ever did writing any of the code. The time and cost savings just wasn't there, and still isn't there. In my experience my untested code has been no more buggy than my tested code. You then have the massive bloat that comes along with making every single dependency in a class injectable (interface hell) so that it can be "easily testable", even though most of the dependencies you are injecting will NEVER need to have an alternative implementation during the lifetime of the code. You then have the problem of poorly written tests by inexperienced or low skilled developers, which will throw up false positives or falsely show that something is passing giving you a false sense of security.
@matthewclarke3989
@matthewclarke3989 5 жыл бұрын
Great talk, this is going to change how I approach TDD. My only complaint is there's a irritating/distracting sound as he walks around on stage. If that could be edited out, that would be perfect...
@ABCo-ABMedia
@ABCo-ABMedia 2 жыл бұрын
It's the microphone rubbing against his glasses, not a whole lot can be done about it really
@harrievanderlubbe2856
@harrievanderlubbe2856 2 жыл бұрын
and the runny nose
@harleyspeedthrust4013
@harleyspeedthrust4013 Жыл бұрын
A lot of this stuff seems obvious, and yet the codebases I work on are still polluted with pointless, over-mocked tests that poke far too deep into implementation details. I can think of many tech debt stories I've worked on that require some refactoring, and the refactoring breaks a bunch of these poorly written tests. So a lot of my time is spent understanding and developing these tests, and figuring out what I need to change to get them up to date. At this point I wouldn't even be surprised if someone on the team proposed tests to test our tests.
@spankyspork5808
@spankyspork5808 Жыл бұрын
That just sounds like being a programmer to me. Things change and code has to be updated, whether it's tests or not. Just because tests can be poorly written doesn't mean you shouldn't write them. I don't see the issue. If your implementation details are changing to the extent that it's that painful to refactor your code, it sounds like a design issue, not a testing issue.
@BukovTervicz
@BukovTervicz 3 жыл бұрын
This saved my life
@tocu9808
@tocu9808 3 жыл бұрын
Be conscious of right abstraction level. And the key is to identify, properly, your 'unit' under test.
@ComradeOgilvy1984
@ComradeOgilvy1984 7 ай бұрын
16:16 What I have noticed is that BDD gives the illusion of better quality, while costing effort and not delivering more quality in a manner that matters. Yes, it sounds nice to wave a pretty test report in front of a Product Manager or Product Owner. Yes, it sounds nice to believe that PMs could be writing some of the tests. While this might generate enthusiasm in a few early meetings, the PM and PO will soon decide they have better things to do than worry about this stuff. Now you have additional code that is your BDD abstraction layer to maintain, for no actual value delivered.
@Austin9435
@Austin9435 4 жыл бұрын
Will the creaking ever stop! This is such a good talk and it is ruined by it.
@robertkelleher1850
@robertkelleher1850 2 жыл бұрын
Made it all the way to 41:42 and just realized why the slides are so confusing. All the slide headers are outside the frame and we can't see them.
@user-cu4bk2gm6q
@user-cu4bk2gm6q 6 ай бұрын
Test Behavior not implementation, this mindset could be applied to Unit Test or Integration Test. What I was hearing, Testing the API, is more toward integration test, treating it as a black box. This is essential and important, and makes the test easy to write and focus. However, depending on scenario, a complex scenario would result is many complex test scenario and very difficult to debug and know what went wrong. Imagine manually testing the API and you get some error. Do you know immediately know what went wrong most of the time? When practicing TDD and really changing it minially and incrementally, you might know what went wrong, but if a developer writes many codes, implementing many logical units then runs the test and suddenly many test scenarios failed. Or, the code already completed, the requirement didnt change, but the devs went to refactor to improve the codes. This could be very risky because single point of failure can result in many test scenarios failed. Furthermore, an API could be doing many checks, from other services or databases. How could the developer test without knowing what to mock or what test data to prepare? For example, the developer could be working on Order requirement which would need to ensure that the product exists, is active and probably several other criteria or condition that's more related to the Product availability, which maybe implemented in another requirement and handled in Product Service. Since the current requirement is focusing on making an Order, if one don't mock the Product Service, a lot of things can go wrong and fail the test which cause the developer debugging for no reasons. This often happen for Manual Test before Test Automation, we develop our feature, deploys them, do some manual testing and simething went wrong, we have to spend time to trace and debug and found out it has nothing to do with out code, there was condition in another service which resulted in the unexpected behavior. Furthermore, we used to have comolex scenarios for a requirement where there are more than 10 complex precondition checks before the process can be allowed to perform, that is just the precondition checks and lets say fir 10 preconditions, there would mean at least 20 scenario for success and failed scenario each... But wait, in we're testing at the highest level, it would also mean, we have to consider any possible dependcy on the preconditions or chains/combinations, which means the scenario would've easily been more than 20 and complex to even handle and think. Even with manual testing, we would have to prepare all the possible datas before hand and test each scenario, at the same time not to make ourself overwhelm and confused, especially when something fails, we went to debug, and make some changes, and something else fails now. This is real experience as we have devs who prefer to write high level test, the test itself ishas so many combination of scrnario that reading it is scary and confusing, the dev ended up spendong more time to debug and fix than completing the requirement which was to add addtional precondition to the existing precondition. It was a big mess. What we do then instead is to write unit test on each precondition, thay means a t method level. By writing at unit or method level, the focus is so much smaller and simple, yes it requires mock but we only needed to mock for what we wanted to test, we dont need to know the entire state of the object or record. The concept is just similar like how we should break stories smaller, make things small and test it and we should test behaviors. Lastly, just saying testing API is incorrect. If you're writing a shared or reusable method which others will be calling it. Should you ensure its tested and behave accordingly? The requirement does have to be coming from the customer. Similarly when working as a team delivering single user story, everyone maybe delivering parts of the feature and wouldnt it be better to ensure each parts is tested and behave according so that we would prevent something went wrong when we integrate the codes? Saying only testing API is very much about single developer mindset and a simple use case scenario. Sure, maybe to some developers they are so good that its not a problem to only test at high level even with complex scenario, but feom my experience and working with many developers, pairing and coaching, putting a bigger scope often create complexity, confusion, messy implementation, which is very difficult to read and maintain, and only testing at high levels, it doesnt require much of clean code, someone could write everything in 1 function and not worry about single rrsponsibility. The idea of making a unit testable is to make it small, single responsibility which makes the test easy to write, small scope and focused. For my practice and experience, our goal is that we should test the requirement, which usually is on the API which we would write integration test, but we encourage unit testing at lower levels. In the beginning, we find most devs would not write unit or low level test and focus all on integration test which is the API since its easy to write and they have many private methods, but when a scenario fails, they would end up need to know which oart of the code fails, which could actually be more than the requirement have stated, e.g. request body is incorrect, the format is incorrect and many more conditions which are more technical than the requirement stated in the user story and because there are no unit test, high level test may not cover those since its based on the requirements. Furthermore, if we were to add those, the high level test complexity will grow and lastly high level test dont exactly run fast because usually we dont mock dependencies, that would also mean every test scenario we have requires more time to run and process. I think and strongly believe, behavior test is not just about high level or Api test or integration. behavior is just that, behavior, a feature is a feature, if you provide a library or reusable method or deliver a working unit to another developer, you're delivering a feature that has behaviors, and you can unit test them to ensure they behave correctly. And for other dev using the unit, can choose to mock the behavior when they're unit testing their method when they are using your unit. E.g. you deliver a unit that provide formatting of a value, or a unit that provide 'isProductValid' that accepts a product object, you can write test at unit level so that you dont have to test at higher level, imagine if there are many API thay needs to validate product, and shoud each of the API repeat the same redundant test??? If a requirement change, then what happens? We often break and look at if the requirement could or make sense to be tested at lower level, especially if you have multiple layers and worked by multiple developers... Without mocking, each developer will try to test the same scenario over and over again; in fact, this just happen recently, when 2 developers are working together on the same user story, and one developer is working on a lower level layer, written some unit and tested them, and another developer which writes at rhe high level and calling the method written by the other developer, repeat the same test at high level. From the higher level, the test scenario on that method itself has over 10 scenarios. And that layer isnt even the API level yet, now do we have to repeat it again at API level, which would result in more scenario?
@LarryRix
@LarryRix Жыл бұрын
3X more "test code" than "dev code" (and other problems). This is where Design by Contract (see Eiffel) shines. DbC is when your test code comes out of the test environment/harness/mock and becomes a part of the production code itself. Where the compiler is smart enough to exercise, report, and utilize your "contract assertions" (e.g. "test assertions") in everything except the production code. Even then-you can include some, part, or all of your "contract" code in various "versions" of production code (if you choose). This means you only need enough "test" (TDD) code to spin-up objects and exercise them. Therefore-test code is smaller, mocks fewer, supporting data structures are smaller and the whole "3X more test code" scenario is greatly reduced in size, scope, complexity, time, and money impact on your project. You may further dice this up by creating many small libraries, where each library lives insulated with its own production product and test environment-such that-small changes to a library do not necessarily "leak" out all over your project code base.
@nomanziad3314
@nomanziad3314 7 ай бұрын
Nice Talk!
@privateparty4900
@privateparty4900 Жыл бұрын
24:55 I want to watch this but I'm not sure I'm going to make it with the mic rubbing.
@andrewreiser3584
@andrewreiser3584 2 жыл бұрын
The thing I find remarkable about this talk is the notion that the whole industry (pretty much) has misunderstood a whole approach to development, only to waste the money of their employers. I only did TDD once for about 3 weeks, when I walked off the project. It was back in 2011 when all this nonsense was at its highest hype. The other remarkable thing is - why hasn't Kent Beck been screaming at us for a decade "You're all doing it wrongly". Why just sit back and let the industry hang itself? Very odd.
@andrewreiser3584
@andrewreiser3584 2 жыл бұрын
@@Grauenwolf Because you engage in excess onanism.
@ScottKorin
@ScottKorin 2 жыл бұрын
Being able to talk to a db would get rid of all of the mocking I know that I end up doing in my tests. This is an interesting idea and one my team has been avoiding for years. So we mock our data access layer
@LuaanTi
@LuaanTi Жыл бұрын
The tricky thing is that this tends to effectively _hide_ the mocking code - that test database is _also_ part of the test suite, and needs to be understood, maintained, faked, reconstructed... There are some ways to avoid these, and you'll find they actually fit pretty well with attempts to code better (not just test better). Once the DAL is decoupled from the business logic, you no longer need to mock the DAL - it's completely external. If your business logic _calls_ the DAL, of course you need to mock it. It's not always easy, but I find it tends to result in code that's much easier to understand and predict. It also means your tests can focus on exactly what Ian and Kent are talking about - making sure the high-lever requirements are satisfied. When product A has tax B and discount C, the result should be D. It should be completely irrelevant to the business logic how the data gets there - that's not the responsibility of the business logic! But it's also very easy to intertwine the logic and the DAL; easy to convince yourself it's necessary even. Of course, ultimately the main problem is that software is hard to write and maintain, and very complex. Too many people expect there to be a simple fix - simplicity is the key, yes... but that doesn't mean doing the simple thing is also easy :D It's much the same with writing anything else - it's hard to make thing that is terse and easy to understand; anyone can write a wall of text. Anyone can use superfluous flowery language. A good writer could write this comment in two sentences :D Which funnily enough seems to me appropriately similar - if you use automated tools to help you, and abuse them - you can always write exactly all the words I wrote as two sentences, and feel smug how you "beat the system" (or worse "achieved the goal"), just like you can chase magical 100% coverage numbers, line number counts (or lengths), split a class into four (completely interdependent) classes and pat yourself on the back on how you "lowered the dependencies" even though you did no such thing. The tools aren't good enough to catch you cheating, and often guide you in the entirely wrong direction. I especially have a peeve with dependency analysers and DRY analysers - they don't understand what they're analysing, and it just doesn't work without understanding. Just because two pieces of code share the same text values _doesn't mean they're repetitions_ . The key thing always is "when something changes, do _both_ of these have to change?" Does the code cover the same requirement, or do they cover two separate requirements that just _happen_ to be similar right now?
@GabrielGasp
@GabrielGasp 11 ай бұрын
@@LuaanTi I believe that’s exactly where Ports and Adapters come in, if your business logic only expects to receive an adapter (concrete implementation) that satisfies a port (an abstraction like an interface) to communicate with the outside world (database, rest apis, etc) you can easily create a simple mock adapter that "fits" in that port and run your tests with it.
TDD Revisited - Ian Cooper - NDC Porto 2023
1:13:26
NDC Conferences
Рет қаралды 11 М.
🚀  Does TDD Really Lead to Good Design? (Sandro Mancuso)
58:00
DevTernity Conference
Рет қаралды 41 М.
Тяжелые будни жены
00:46
К-Media
Рет қаралды 3,5 МЛН
Osman Kalyoncu Sonu Üzücü Saddest Videos Dream Engine 118 #shorts
00:30
🚀 The Clean Architecture (Ian Cooper)
53:05
DevTernity Conference
Рет қаралды 82 М.
Why Would Anyone Hate TDD? | Prime Reacts
46:52
ThePrimeTime
Рет қаралды 139 М.
A Daily Practice of Empirical Software Design - Kent Beck - DDD Europe 2023
59:14
Domain-Driven Design Europe
Рет қаралды 26 М.
Test Driven Development vs Behavior Driven Development
18:42
Continuous Delivery
Рет қаралды 148 М.
Why Isn't Functional Programming the Norm? - Richard Feldman
46:09
Why Hasn't TDD Taken Over The World?
15:38
Continuous Delivery
Рет қаралды 46 М.
Jim Coplien and Bob Martin Debate TDD
20:59
toalexsmail
Рет қаралды 157 М.
TDD Is A BROKEN Practice
17:14
Continuous Delivery
Рет қаралды 26 М.
Apple. 10 Интересных Фактов
24:26
Dameoz
Рет қаралды 112 М.
iPhone green Line Issue #iphone #greenlineissue #greenline #trending
0:10
Rk Electronics Servicing Center
Рет қаралды 4,5 МЛН
📱 SAMSUNG, ЧТО С ЛИЦОМ? 🤡
0:46
Яблочный Маньяк
Рет қаралды 1,3 МЛН
IPad Pro fix screen
1:01
Tamar DB (mt)
Рет қаралды 3 МЛН
Apple, как вас уделал Тюменский бренд CaseGuru? Конец удивил #caseguru #кейсгуру #наушники
0:54
CaseGuru / Наушники / Пылесосы / Смарт-часы /
Рет қаралды 4,1 МЛН