testing javascript applications
play

Testing Javascript applications Irina Dumitrascu ruby & - PowerPoint PPT Presentation

Testing Javascript applications Irina Dumitrascu ruby & cofeescript | dira.ro , @dira_geek_girl 23 August 2012 Why? Well And Every time you hit refresh & click to test And Every time you hit refresh & click to


  1. Testing Javascript applications Irina Dumitrascu ruby & cofeescript | dira.ro , @dira_geek_girl 23 August 2012

  2. Why?

  3. Well…

  4. And… Every time you hit refresh & click to test…

  5. And… Every time you hit refresh & click to test… God kills a kitten .

  6. And… Every time you hit refresh & click to test… God kills a kitten . (image not available)

  7. Without refresh...

  8. Without refresh... We're at the mercy of the machines.

  9. Show me the code!

  10. Show me the code! no code to show :(

  11. Show me the code! no code to show :( let's make a new app! :)

  12. Show me the code! no code to show :( let's make a new app! :) what will I write the presentation in? let's write some code for showing presentations!!

  13. Show me the code! no code to show :( let's make a new app! :) what will I write the presentation in? let's write some code for showing presentations!! Are you crazy?

  14. Show me the code! no code to show :( let's make a new app! :) what will I write the presentation in? let's write some code for showing presentations!! Are you crazy? or Do you hate sleeping?

  15. How it works the presentation is written in a Markdown file the Markdown is parsed into HTML h1 is the start of a new slide hr is the start of my notes (hidden) and enhanced with next and previous

  16. The fascinating part I wrote all this functionality test-first.

  17. The fascinating part I wrote all this functionality test-first. Without seeing it in the browser until it was done.

  18. The fascinating part I wrote all this functionality test-first. Without seeing it in the browser until it was done. And it worked.

  19. The fascinating part I wrote all this functionality test-first. Without seeing it in the browser until it was done. And it worked. (Because it was tested.)

  20. The fascinating part The result is the presentation that you see right now.

  21. So let's talk about testing

  22. Kinds of testing Unit testing Does this function behave properly? Integration testing Does the application behave properly?

  23. Unit testing tests independent functions fast and focused makes sure independent pieces work

  24. How to do it 1. think about what you must implement 2. break it in small functions

  25. How to do it 1. think about what you must implement 2. break it in small functions 3. choose a function and write a test for it. watch it fail.

  26. How to do it 1. think about what you must implement 2. break it in small functions 3. choose a function and write a test for it. watch it fail. 4. write the code that fixes the test

  27. How to do it 1. think about what you must implement 2. break it in small functions 3. choose a function and write a test for it. watch it fail. 4. write the code that fixes the test check for refactoring opportunities

  28. How does it look like? Let's see a simple test.

  29. Unit testing You need to: separate your JS from the DOM (no inline JS) structure the code (classes, modules) separate the definition and the running step (document.ready … ) the smaller the thing to test, the better

  30. Unit testing - don'ts do not test for the same thing in multiple tests do not test for texts appearing in the DOM (test for classes and ids)

  31. Unit testing - do's test the public interface of each object test for classes and ids (not strings) in the UI mock out dependecies (HTTP requests & HTML in the page, but also collaborators) maintain the tests as you do with the code

  32. Many tools Frameworks jasmine, mocha, buster.js Separate assertion libraries chai Tools to run the tests from the command line, to integrate with CI

  33. Added benefits better structured code

  34. And…

  35. But… the individual pieces work there's no guarantee that they work well together!

  36. Integration testing is the application as a whole working as expected? also called acceptance testing

  37. Integration testing create scenarios and test that they work have to setup the whole application stack to a known state

  38. Integration testing slow do not know about the implementation of individual pieces

  39. Conclusion test your code! unit tests and integration tests complement each other

  40. Conclusion test your code! unit tests and integration tests complement each other think of the kittens!

  41. Starring Tests mocha as Test framework chai as Assertive guy sinon as Mocking and spying specialist Code jQuery Rainbow as Code stylist markdown css as Text stylist

  42. Presentation http://www.flickr.com/photos/kaibara/4068996309/ as Test Ninja Cat

  43. Check out the code https://github.com/dira/js-testing-presentation

  44. Thank you! Questions?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend