Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Image

Book Review: Test-Driven JavaScript Development 55

eldavojohn writes "Test-Driven JavaScript Development by Christian Johansen is a book that thoroughly guides the user through some of the more advanced aspects of the JavaScript language and into Test-Driven Development (TDD). Throughout it, Johansen introduces great methods and utilities like libraries to accomplish all aspects of TDD in JavaScript. The book begins with Johansen demonstrating and teaching the reader some of the more advanced aspects of JavaScript to ensure that the following lessons in TDD are well understood. The best part of the book is in the last half where Johansen builds a chat client and server completely out of JavaScript using TDD right before the readers' eyes." Keep reading for the rest of eldavojohn's review.
Test-Driven JavaScript Development
author Christian Johansen
pages 475
publisher Addison-Wesley Professional
rating 9/10
reviewer eldavojohn
ISBN 978-0-321-683915
summary An in depth look at Test Driven Development in JavaScript.
First off the audience for this book are JavaScript developers interested in TDD. More specifically, I would identify the audience being the poor developers that have slaved over JavaScript for endless hours only to find out that there are 'discrepancies' in how their JavaScript functions in one browser versus another (or even across versions of the same browser). If you've ever came into work one day to learn that the latest version of Internet Explorer or Mozilla Firefox now throws errors from the deep recesses of your code and you have absolutely no idea where to start, then this book may be an item of interest to you. After all, wouldn't it be great to pull up the new browser and simply watch all your tests complete code coverage with glaring red results listing specific problematic locations?

Secondly, I'd like to establish that I'm writing this review with two key assumptions. The first assumption is that JavaScript is not in and of itself evil. You might hate JavaScript (as did I at one time) but it's a very flexible and enjoyable language when you're not battling some crazy 'feature' that a particular JavaScript engine exhibits or some issue with the dreaded Document Object Model (DOM). The second assumption is that TDD is a net positive when done correctly. To some, it may be a hard sell and the author of the book is no blind preacher. TDD has its pitfalls and the book adequately notes these claiming that TDD can actually work against you if used improperly. Feel free to wage wars in the comments debating whether or not the average JavaScript monkey is capable of avoiding pitfalls and learning to write good unit tests — I'm not getting sidetracked in this review on those topics.

This book is divided into four parts. The first part of the book gives you a slight taste of testing right off the bat in chapter one (Automated Testing). Johansen starts by showing a strftime function written in JavaScript and demonstrates briefly the very clumsy standard method of testing the method in a browser. From there he introduces Assertions, Setup, Teardown and Integration Tests. What I particularly enjoyed about this book is that these key components are not forgotten after introducing them, Johansen constantly nods to the reader when duplicate code could be moved to Setup or Teardown.

Chapter two is devoted to 'turning development upside-down.' This chapter analyzes the mentality of writing a test, running the test, watching it fail, making the test pass and then refactoring to remove duplication (if necessary). Johansen stresses and restresses throughout the book that the simplest solution should be added to pass the test. Fight the urge to keep coding when you are sure what comes next and just make sure you have unit tests for that new code. The third chapter runs through many test frameworks in JavaScript and settles in on JsTestDriver weighing the pros and cons of each option. Lastly, it is demonstrated how to use JsTestDriver both inside Eclipse and from the command line (something I deeply appreciated). Chapter Four expands on this by proposing learning tests which are tests that you keep around to try out on new browsers to investigate what you depend on. I'm not entirely sold on this practice but this chapter is definitely worth the look at performance testing it provides in a few of the more complete aforementioned frameworks.

The next 145 pages are devoted to the JavaScript language itself. The reader will find out in later chapters why this was necessary but this second part felt too long and left me starving for TDD. There's a ton of great knowledge in these chapters and Johansen demonstrates an impressive display in his understanding of ECMAScript standards (all versions thereof) and all the JavaScript engines that implement them. In the following four chapters, the reader is shown the ins and outs of scope, functions, this, closures, anonymous functions, bindings, currying, namespaces, memorization, prototypical inheritance, tons of tricks with properties, mixins, strict mode and even the neat features of tddjs and JSON. What I was most impressed with in this chapter was how much care Johansen took with noting performance pitfalls in all of the above. Example: "closures in loops are generally a performance issue waiting to happen" and on for-in arrays he says "the problem illustrated above can be worked around, as we will see shortly, but not without trading off performance." Johansen seems tireless in enumerating the multitude of ways to accomplish something in JavaScript only to dissect each method critically. If you skip these sections, at least look at 6.1.3 as the bind() implementation developed there becomes critical throughout much of the book's code.

Chapter nine provides yet more dos and do nots in JavaScript with a tabbed panel example that demonstrates precisely what obtrusive JavaScript is and why it is labeled as such. Chapter ten is definitely not to be skipped over as it provides feature detection methods (specifically with regard to functions and properties) that are seen in later code snippets. Part two is devoid of any TDD yet rich in demonstrating the power of JavaScript. This is where the book loses a point for me as this seemed too long and a lot of these lessons — though informative — really seemed like they belonged in another book on the JavaScript language itself. I constantly wondered when I would start to see TDD but to a less experienced developer, these chapters are quite enlightening.

In the third part, we finally get to some TDD in which an Observer Pattern (pub/sub) is designed using tests with incremental improvements in true TDD fashion. Most importantly to the audience, we encounter our first browser inconsistencies that are tackled using TDD. This chapter illustrates how to make your first tdd.js project using the book's code and build your first tests followed up with the isolation of the code into setup and teardown functions. Rinse, wash, repeat for adding observers, checking for observers and notifying observers (all key functionality in the common observer paradigm). This is a great pragmatic example for TDD and the chapter wraps up with error checking and a new way to build a constructor. As we do this, we have to make changes to the tests and Johansen illustrates another critical part of TDD: fixing the tests after you've improved your code.

The twelfth chapter takes our Ajax friend the XMLHttpRequest object and gives it the same treatment as above. Of course, you might know it as the Msxm12.XMLHTTP.6.0 object or a variety of names so this is where our browser differences are exposed. On top of that, we're exposed to stubbing in order to test such an object. The author explores three different ways of stubbing it while building tests for GET requests. After building helpers to successfully stub this, we move on to POST, finally send data in a test and then pay attention to the testing of headers. Personally these two chapters were some of the best in the book and illustrated well a common method of utilizing TDD and stubbing to build up functional JavaScript.

Chapter thirteen builds on the previous chapter by examining polling data in JavaScript and how we might keep open a constant stream of data. Before jumping to the solution, the author investigates strategies like polling intervals and long polling which have their downfalls. We eventually come to the Comet client (which uses JSON objects) and build up our test cases that support our development of our new streaming data client. One important aspect brought up is the trick of using the Clock object to fake time. This was completely new to me and very interesting in simulating time with tick() to quickly fake and test expected lengths of time.

Chapter fourteen was definitely outside of my comfort zone. JavaScript on the server-side? Blasphemy! Johansen begins to bring together the prior elements to form a fully functional chat server all in JavaScript through TDD. In this chapter the reader is introduced to node.js and a custom version of Nodeunit the author modified to make a little more like JsTestDriver. The controller emerges through the TDD cycles. Responses to POST, adding messages, the domain model and even storage of data are given test cases to insure we are testing feature after tiny feature. Toward the end of the chapter, an interesting problem arises with our asynchronous interface. In testing it, how do we know what will result from a nested callback? Johansen introduces the concept of a Promise which is a placeholder that eventually provides a value. Instead of accepting a callback, the asynchronous method returns a promise object which is eventually fulfilled. We can now test adding messages in asynchronous manner to our chat room. The chapter builds on the chat server to passable functionality — all through TDD.

Chapter fifteen concentrates on building the chat client to the above server and in doing so provides the reader with TDD in regards to DOM manipulation and event handling. This chapter finally covers some of the more common problematic aspects of client-side JavaScript. Again, this chapter yielded many tricks that were new to me in TDD. JsTestDriver actually includes two ways to include HTML in a test and Johansen shows how to manipulate the user form on a page in order to test it automatically. The client is developed through TDD and node-paperboy is called in to serve up static files through http with Node.js. The message list displayed in the client is developed through TDD and then the same process used on the user form is done with the message form submission. The author brings in some basic CSS, Juicer and YUI Compressor to reduce all our work down into a 14kB js file containing an entire chat client. With gzip enabled it downloads at about 5kB. Potent stuff.

I was sad that more pages weren't spent on the final section. Chapter sixteen further expounds upon mocking, spies and stubbing. It lists different strategies and how to inject trouble into your code by creating stubs that blow up on purpose during testing. And we get a sort of abbreviated dose of Sinon, a mocking and stubbing library for JavaScript. The author repeats a few test cases from chapter eleven and moves on to mocking. Mocking is mentioned throughout the book but is passed over due to the amount of work required to manually mock something. The chapter ends with the author saying 'it depends' on whether you should use stubbing or mocks but it's pretty clear the author provides stubbing as he enumerates the pros and cons of each.

Chapter seventeen provides some pretty universal rules of thumb to employ when using TDD. From the obvious revealing intent by clear naming to strategies for isolating behavior, it's got good advice for succeeding with TDD. This advice aims to improve readability, generate true unit tests that stay at the unit level and avoid buggy tests. It's worth repeating that he gives a list of 'attacks' for finding deficiencies in tests: "Flip the value of the boolean expressions, remove return values, misspell or null variables and function arguments, introduce off-by-one errors in loops, mutate the value of internal variables." Introduce one deficiency and run the tests. Make sure they break when and where you would expect them to or your testing isn't as hardened as you might expect. Lastly the author recommends using JsLint (like lint for C).

There's a lot of information in this book but I think that the final examples were actually too interesting for my tastes. Often I grapple with the mundane and annoying parts of client side DOM — nothing on the server side. While this might change at some point in the future, I couldn't help but feel that the book would have been better with additional examples of more common problems than a chat client in JavaScript. I was certainly impressed with this example and it will hold the readers' attention much more than what I desire so I feel comfortable recommending this book with a 9/10 to anyone suffering from browser inconsistencies or looking to do TDD in JavaScript.

You can purchase Test-Driven JavaScript Development from amazon.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.

*

This discussion has been archived. No new comments can be posted.

Book Review: Test-Driven JavaScript Development

Comments Filter:
  • Letting it all out (Score:5, Interesting)

    by Anrego ( 830717 ) * on Monday March 28, 2011 @02:28PM (#35642780)

    I know I’m out of the web dev loop, but as I recall, in most cases the web mantra seems to be to crank it out as quick as possible before it’s obsolete. The exposure I’ve had (which admittedly is a small sampling) leads me to believe that even basic core principles of traditional software development are thrown out the window in a mad dash to get something that “looks right”.

    Certainly the tools that have become the most popular around web dev would spell this out. Javascript, PHP, python, etc. Weakly types languages with loose structure, built in shortcuts, and lots of automagic. The whole concept of prototype based coding is to me just another example of rapid development trumping solid coding.

    And I’ve heard the “compensate with better QA” or the even more ludicrous “just hire people who never make mistakes” arguments. I’ll take my programming with strong typing and lots of built in idiot-proofing please, and I’m not afraid to admit that even with years of dev experience, I still make the occasional bone headed mistake and I figure the more chances it gets caught, the better.

    I think it’s good that _someone_ is trying to mix solid software development with web whimsy, but I don’t see it catching on, even in places where it really should!

    I’d like to note, that while this may start a flame war (or get harmlessly modded down to oblivion), this really wasn’t my intention.

    I’d also like to note, that I dislike TDD in general (yeah, I know, another flame war)! In my experience, most bugs I find are from running through some kind of manual procedure and noticing something ”odd” that an automated system wouldn’t have picked up. I imagine in web design, where the end result is mainly visual, this would be even more common. Sure, the table has the right values but they are all cut off and too tiny to read.

    I do like broad, interface level unit testing (if you can call it that) to test that inputs into the system as a whole result in appropriate output, as these kind of requirements rarely change but individually testing classes just adds extra work, extra bulk when making changes, and never seems to find anything! I have run into this so many times, where someone comes up with a really great way to refractor some code, only to find out that while the code change would be trivial, updating 50 unit tests wouldn’t so it doesn’t happen.

    And I can come up with much better and more productive ways to document behaviour and coordinate between developers (written documents, java style interface classes/etc) than a bunch of cumbersome unit tests.

    • I know I’m out of the web dev loop, but as I recall, in most cases the web mantra seems to be to crank it out as quick as possible before it’s obsolete. The exposure I’ve had (which admittedly is a small sampling) leads me to believe that even basic core principles of traditional software development are thrown out the window in a mad dash to get something that “looks right”.

      its not web development that is in a perpetual 'mad dash' to get things out - it was the 'traditional software development' was a relic of ancient times when software as well as the hardware it runs on was mainly used by big megacorporations. back then users were these, and their demands were big, persistent and what they got the software developers to build remained as standard for decades. there are still a lot of important financial institutions which are running on as400 for example.

      so, software was

      • by Anrego ( 830717 ) * on Monday March 28, 2011 @02:51PM (#35643110)

        I kind of lump TDD in with traditional older-style thinking.

        I admit I tend to have a kind of waterfall mentality. You spend months documenting _exactly_ what is needed, months designing the thing down to the tiny component parts, then proceed to basically paraphrase the design into code form. Slow, inflexible, inefficient ... and everything is moving away from it.

        TDD seems to be a relic of this approach. It would assume you have that first part, a very detailed list of everything you need, up front, before implementation. I've never understood how this is moving forward. To me we should be moving towards approaches that let us change requirements on the fly without it being a massive undertaking. Agile types may feel free to educate me as to why I'm an idiot here! To me TDD binds hands just as effectively as the miles of design and requirement docs did, and this seems like a bad thing.

        As for the bulk of your comment, I think we need a middle ground. Less hectic and "seat of your pants" ish, but not process overkill. The old "good, cheap, fast - pick 2" argument... but we need a little bit more "good".

        • You guys are all ready for the web-dev-dustbin (or WDD)! TDD is utterly yesterday/old-school. TLA is the the only way to go. I've been deep involved in over 6.02x10^23 web-dev action XP teams divided into AUP units of Pair Programming for Kaizen RDP syndication of Direct Market facilitated Six Sigma productions. TLA is to OO what TDD was once to TRIZ. If you aren't on the TLA bandwagon you might as well be using VB to take aim at BDUF, DRY, JAD even TSP! OMG guys get a CLU and get on TLA!
          • hahaha ! you people are so shindigbaabs (SCB). i would prefer gaguli approach (GAGI) myself ...
          • I've been deep involved in over 6.02x10^23 web-dev action XP teams

            Thank you, old man, we appreciate you sharing some of your experience. We really do.

        • by khr ( 708262 )

          To me TDD binds hands just as effectively as the miles of design and requirement docs did

          In some ways yes, and in some ways, no...

          Unlike miles of design and requirements docs, the test code is more "alive" and if the TDD approach is followed closely, stays in sync with the code. The tests also tell you as you're modifying the code what other changes need to go with the ones already know about. Developers are more likely to maintain the test code than the documentation, which is more likely to be "I'll update it later, after the deadline."

          My previous two projects were a waterfall one and an Ex

        • by slim ( 1652 ) <john@hartnupBLUE.net minus berry> on Monday March 28, 2011 @04:02PM (#35643942) Homepage

          TDD seems to be a relic of this approach. It would assume you have that first part, a very detailed list of everything you need, up front, before implementation.

          You seem to have a misapprehension of TDD. TDD is very agile; you write tests as a way to explore the problem space. Tests can be amended, and even deleted as you go along. It's a tight loop consisting of:

          - while not finished {
              - Invent a test, write it -- it is likely to not compile, as it will reference types and methods that don't exist
              - Write just enough code for the test to compile - skeleton classes with methods that return null
              - Code until all your tests pass
              - refactor to remove any duplicate code, re-running the test suite between each refactoring
          - }

          It is *not* a matter of writing all your tests upfront. It's more like "Hmm, my game is going to need a scoreboard class, and when I construct it, the score should be zero, so I'll write a test for that now."

        • by gl4ss ( 559668 )

          tdd is an extra step introduced to waterfall, as a fix for the low quality output from waterfall process. it didn't work, so things are moving to honest agile. around here universities are to blame, also it has to do with the will to use more people per project, as if that magically would've fixed things, giving everyone a well defined role. too bad defining that role before knowing what needs to be done is a disaster.

        • Comment removed based on user account deletion
    • Additionally, since JS is historically predominantly client-side, robust server-side validation should always be used. So in that sense, it's somewhat less important to have thorough testing -- a shopping cart which says the total for your new flatscreen is $0.00 and then fails when you go to pay for it is a much better problem to have than a system which displays the total correctly, but changes $0.00...

      Of course, the best solution is to have neither issue =)
    • I understand your criticism of prototype languages, but Python is not one of them. Python is a strongly typed language. [python.org]

    • by dkleinsc ( 563838 ) on Monday March 28, 2011 @03:09PM (#35643312) Homepage

      You've made a lot of mistakes here.

      1. Python should not be lumped in with PHP. I've worked professionally in both languages, and in PHP it's far easier to write terrible code than it is to write good code, whereas in Python it's the other way around.

      2. The value of automated tests is to prove that your code does what you think it's supposed to do. Now, you're correct that sometimes doing what you think is right is still wrong, but it picks up a surprisingly large number of bugs.

      3. The value of TDD is that you are encouraged to have code that does what it's supposed to do, but nothing more than that. That's because you define the expected behavior (your test case) first, then ensure your code can do that.

      4. The name for broad, interface level testing is an "end-to-end" test. This is a good thing to do, but it's no substitute for testing smaller components. Consider, for instance, 7 layers where each layer can do 2 different things based on the input. If you test each layer plus 2 end-to-end sanity tests, that's 16 tests. If you test only the whole thing, that's at least 128 tests. Because 128 tests is far more work than 16 tests, it typically doesn't happen at all, leading to bugs.

      • by Anrego ( 830717 ) *

        The name for broad, interface level testing is an "end-to-end" test.

        Thanks! Seriously, I have always wondered what this was actually called!

        Python should not be lumped in with PHP.

        Agreed, in retrospect it shouldn't really be on that list. My apologies to the python community :(

        The value of TDD is that you are encouraged to have code that does what it's supposed to do, but nothing more than that. That's because you define the expected behavior (your test case) first, then ensure your code can do that.

        I see this approach working, but don't really like it. If people went _directly_ to unit tests, maybe, but in all implementations I've seen, people have to do some design work first. In this instance, it's always seemed to me that the unit test is a layer between design and code. A layer that has to be updated if any refactoring happens dur

      • The value of TDD is that you are encouraged to have code that does what it's supposed to do, but nothing more than that.

        No, that's the downfall of TDD - nothing you write is reusable, and any change of requirements invalidates both the test and the code tested.

        I've worked in places where this was almost a religious practice. Instead of building libraries of general-purpose routines, they reinvented the wheel, every single time. They had a large amount of similar code which behaved in subtly differen

    • A Few Responses (Score:5, Interesting)

      by eldavojohn ( 898314 ) * <eldavojohn@noSpAM.gmail.com> on Monday March 28, 2011 @03:13PM (#35643368) Journal

      I know I’m out of the web dev loop, but as I recall, in most cases the web mantra seems to be to crank it out as quick as possible before it’s obsolete.

      I think ECMAScript standards are here to stay for quite a while. I wouldn't worry about too much changing between 5 and 6. This book actually considers all versions of ECMAScript and ES5 was standardized in 2009 [wikipedia.org], 10 years after the last standardized version. While it takes a while for JavaScript engines to catch up on implementing those standards, I wouldn't spin this sort of stuff as "crank it out quick."

      The exposure I’ve had (which admittedly is a small sampling) leads me to believe that even basic core principles of traditional software development are thrown out the window in a mad dash to get something that “looks right”.

      Certainly the tools that have become the most popular around web dev would spell this out. Javascript, PHP, python, etc. Weakly types languages with loose structure, built in shortcuts, and lots of automagic. The whole concept of prototype based coding is to me just another example of rapid development trumping solid coding.

      I believe this is a false dichotomy that may have been true years ago. Once you see the maturity level of some JavaScript projects that companies like Google are working on, JavaScript doesn't have to be the slap dash crap you are speaking of. It just becomes clear that the language produces products equivalent to how much time is put into it. Here's one of many good counterexamples to your rule [google.com]. I am interested though: how do you define "solid coding?" That sounds like an ambiguous phrased designed to pick and choose language features as the user personally desires. The recent removal of OO programming from CMU's curriculum might point out how yesterday's mentality goes out of style and comes back in two decades later.

      And I’ve heard the “compensate with better QA” or the even more ludicrous “just hire people who never make mistakes” arguments. I’ll take my programming with strong typing and lots of built in idiot-proofing please, and I’m not afraid to admit that even with years of dev experience, I still make the occasional bone headed mistake and I figure the more chances it gets caught, the better.

      I think it’s good that _someone_ is trying to mix solid software development with web whimsy, but I don’t see it catching on, even in places where it really should!

      Ima let you finish. But I just want to say that that is a totally respectable position. Me, personally, I recognize that I have a huge diverse toolbox full of all sorts of tools. Some better for jobs inside the browser, some better for servers and some better for embedded systems. But I would ask you to consider that it's going to be a while before any of these tools to be your silver bullet.

      I’d like to note, that while this may start a flame war (or get harmlessly modded down to oblivion), this really wasn’t my intention.

      I’d also like to note, that I dislike TDD in general (yeah, I know, another flame war)! In my experience, most bugs I find are from running through some kind of manual procedure and noticing something ”odd” that an automated system wouldn’t have picked up. I imagine in web design, where the end result is mainly visual, this would be even more common. Sure, the table has the right values but they are all cut off and too tiny to read.

      There are certainly problems with rendering and layouts being difficult to automatically test. But there are a lot of tools out there (like firebug) that help you pin down what is going wrong in certain browsers. While the book doesn't delve deeply into it, it's something that is easier to deal with than, say, a weir

      • by radtea ( 464814 )

        I am interested though: how do you define "solid coding?"

        Start with Steve McConnell's book "Writing Solid Code", which of course you have read, right? Because good programming practice never goes out of style.

        I see the flux in these things as pretty amusing, as the younger generation discards and then rediscovers the hard lessons their elders leaned.

        The bottom line is: writing good software is HARD. A good developer has a wide array of tools for dealing with the problem, including a diversity of coding styles from OO to functional to procedural and a deep know

    • by Pieroxy ( 222434 )

      While I agree in general with your post, I disagree on TDD. Sure, they're no magic silver bullet, but they admitedly add robustness to your code so that when you do some refactoring later on you will be notified if/when you break something obvious. Of course, tricky bugs are tricky bugs and they won't disapear overnight.

      However, they do take some time to write and maintain.

      That said, rereading the end of your post, I'm kind of implementing my unit tests as if they were interface level tests. Testing String.

      • That said, rereading the end of your post, I'm kind of implementing my unit tests as if they were interface level tests. Testing String.replace() doesn't make sense to me.

        TDD has some of the same weaknesses as commenting. Adding comments like "// begin for loop" and "// end for loop" make some people feel like they're commenting their code, without actually doing so to any useful effect. Developing trivial tests which verify nothing useful is an easy way to let you pretend you're doing TDD without actually spending enough effort to be effective.

        • by Pieroxy ( 222434 )

          TDD has some of the same weaknesses as commenting. Adding comments like "// begin for loop" and "// end for loop" make some people feel like they're commenting their code, without actually doing so to any useful effect. Developing trivial tests which verify nothing useful is an easy way to let you pretend you're doing TDD without actually spending enough effort to be effective.

          True, but TDD has a big strength over comments: When outdated they fail and so you can update them / clean them up. Of course, testing complex stuff is needed, trivial crap (usually) is useless.

    • by mclearn ( 86140 )

      "...most bugs I find are from running through some kind of manual procedure and noticing something "odd" that an automated system wouldn't have picked up."

      This is a valid point and underlines that automated testing can only be as good as the test designers. If the test designers fail to take into account proper bounds-handling, error conditions, interactions, etc. between modules, then you can -- at best -- protect yourself from regression issues.

      I think of testing as an evolutionary process: keep with the tried and true (automation), but throw in some mutations (manual testing) to ensure you are capturing the full spectrum.

    • by Vornzog ( 409419 )

      From here [idyll.org]:

      I don't do test-driven development; I do stupidity-driven testing. When I do something stupid, I write a test to make sure I don't do it again.

      If you are the hardcore TDD type, that probably sounds like blasphemy. However, if you don't want to do full on TDD, at least consider SDT. Write tests for stuff you already screwed up - that way you never make the same mistake twice. SDT makes testing another tool for a solid coder (who may make mistakes, because of being human).

      Unfortunately, the acronym SDT gives so many more opportunities for embarrassing typos...

      • It's a great technique when dealing with existing codebases. Take a bug report, write a test. Test fails unexpectedly? Congrats, you just found another defect lurking unseen.
        But the assumption that system testers will catch your mistakes is dangerous. Customers only have limited patience.

      • Then I believe in SDT++. Write one test that "Concat str1 str2" does the thing it's obviously intended to do. Include that test in the build. After that, add special cases when fault is found.
    • by syousef ( 465911 )

      I’d also like to note, that I dislike TDD in general (yeah, I know, another flame war)! In my experience, most bugs I find are from running through some kind of manual procedure and noticing something ”odd” that an automated system wouldn’t have picked up.

      TDD is a cult/religion, just like most methodologies. I'm sorry but I just won't get religious. I find TDD sounds good and gets people caught up in it, but it fails in 2 very specific ways:

      1) It assumes that your design can be so good up front and in advance that the tests can be written first. In practice the specs are always changing and the designs respond by changing both in technical and business contexts. Worse, the frameworks are moving targets and often are so rigid that you must do things their way

    • Perhaps you just expect to get things done.

      TDD's primary goal is to write tests, not to make software better.

      Think about that for a moment. You start by writing a test case for a non-existent class or interface. Of course it fails. Then you implement the class. Now the test passes.

      Exactly what have you proven? That you can catch an error the compiler or linker would have caught anyway? That you spent a good half hour of your employer's time writing tests for mistakes that neither you nor anyone

    • by gl4ss ( 559668 )

      tdd is great if you're doing a clone copy of something, 1:1.

      if you're doing fresh r&d(what's labeled as such anyways) then.. well, what exactly are you writing the tests for? before you know what to test, before you know which approaches are feasible? well, you don't. with javascript it's even more so.

      it's a thing that get's latched on as a company policy and then leads to unit tests being done on weekends for no good reason to justify bonuses counted by test metrics(ridiculous). how the F can you write

    • Good post. I'm with you on the "I'll take my programming with strong typing and lots of built in idiot-proofing." Personally, I view writing unit tests as an extension of that mentality. I think of it as writing the code twice: write the code (the actual system), and write what the code is supposed to do (the tests). If they don't match, I've done something bone-headed. As long as the tests are part of your build, it's exactly like augmenting the compiler checking. I can't tell you how many times writ

  • I was just looking for something like this.

  • I had just learnt about and started unit testing with javascript not long ago, it had never occured to me to do some beloved TDD with javascript. I am so buying this, thanks!
  • by eldavojohn ( 898314 ) * <eldavojohn@noSpAM.gmail.com> on Monday March 28, 2011 @02:46PM (#35643056) Journal
    For whatever reason, they left out a few links I put at the end of my submission:

    To sample some of the book, check out the Safari Books [safaribooksonline.com] page. Test-Driven Javascript Development is available in many open formats with watermarks [informit.com] or from Amazon.com [amazon.com].

    That Safari link is especially useful if you're on the fence about getting this title, you can view some of the book there. Also, I'm not seeing my score (9/10), publisher information, number of pages (475) or ISBN or any of that.

  • My work involves a lot of testing of applications. The big problem seen from this side of the fence is that the tests don't always describe the requirements... as often as not because the requirements change, or they were not clearly stated in the first place. If either of these two things happen, then you can develop to tests all day, but your code won't be any better than if you develop on the fly. If you have solid requirement, it works better either way.
    • by slim ( 1652 )

      I think you need to read a good TDD book. Kent Beck's is the standard.

      One of the key points is that you don't write *anything* unless it causes a test that was failing, to pass. If all your tests pass, but you know you've got more functionality to add, then you write a new, failing, test. It's a very tight loop of:
      - write test
      - code until test compiles
      - run test -- it fails
      - code until all tests pass
      - refactor to remove duplicate code (this is where the real wins happen)
      - GOTO 10

      So, if you're a good enough

  • by Anonymous Coward

    been there, done that, and honestly I'm all for it,
    provided i get my tester salary + that of the business analyst

  • "More specifically, I would identify the audience being the poor developers that have slaved over JavaScript for endless hours only to find out that there are 'discrepancies' in how their JavaScript functions in one browser versus another (or even across versions of the same browser"

    This is why jQuery exists. Honestly I can't imagine using TDD for any kind of Web project. It costs money to use it in the form of time and the margins just aren't there. The problem with a lot of software development methods

    • by slim ( 1652 )

      Studies show that TDD saves you time.

      [citation needed], I know. But, you know how it is.

      My perception is that TDD is not an academic ivory tower thing. It's something pragmatists have settled on as a way to write high quality code quickly and cheaply.

  • JavaScript is fun. Embrace it! Get a book like Secret of the JavaScript Ninja instead.

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...