21
Advanced Testing With Jasmine Jeff Bellsey [email protected] http://futureground.net https://github.com/ jbellsey/dbc-jasmine

Advanced Jasmine

Embed Size (px)

DESCRIPTION

Topics in intermediate/early-advaned Jasmine testing for client-side JavaScript web applications. Source code, test specs, and harnesses available here: https://github.com/jbellsey/dbc-jasmine

Citation preview

Page 1: Advanced Jasmine

Advanced Testing With Jasmine

Jeff Bellsey

[email protected]

http://futureground.net

https://github.com/ jbellsey/dbc-jasmine

Page 2: Advanced Jasmine

SPIES1

Page 3: Advanced Jasmine

SPIES

Control

Objectives

Prevent method under observation from invoking helpers (expensive, side-effect-prone)

Ensure those helpers are actually being called properly

Tracking

Isolation

Replace operations with simulations to test how our method responds

Page 4: Advanced Jasmine

SPIES

Page 5: Advanced Jasmine

SPIES

Page 6: Advanced Jasmine

Useful spy methods

SPIES

Page 7: Advanced Jasmine

TIMERS2

Page 8: Advanced Jasmine

TIMERS

Page 9: Advanced Jasmine

TIMERS

Page 10: Advanced Jasmine

What about requestAnimationFrame?

Some testing support is best provided outside of Jasmine

$.Velocity.mock = true; Velocity.js

TimelineLite.timeScale()Greensock

TIMERS

Page 11: Advanced Jasmine

AJAX2Bonus!

Page 12: Advanced Jasmine

Most of the time…

YOU DON’T.

Angular.js => angular-mocks jQuery => mockJax Backbone => backbone-faux-server

Use library mocks

Integration tests Karma Selenium PhantomJS

But once in a while…

AJAX

Page 13: Advanced Jasmine

AJAX

Page 14: Advanced Jasmine

AJAX

Page 15: Advanced Jasmine

DOM3

Page 16: Advanced Jasmine

Jasmine-jQuery plugin

DOM

Page 17: Advanced Jasmine

Jasmine-jQuery plugin

DOM

Has tons of great matchers

Page 18: Advanced Jasmine

CUSTOM MATCHERS4

Page 19: Advanced Jasmine

CUSTOM MATCHERS

Page 20: Advanced Jasmine

CUSTOM MATCHERS

Page 21: Advanced Jasmine

Jeff Bellsey

[email protected]

http://futureground.net

https://github.com/jbellsey/dbc-jasmine