testing with rspec 3

23
Testing with RSpec 3 David Paluy Jul 2015

Upload: david-paluy

Post on 16-Aug-2015

43 views

Category:

Software


1 download

TRANSCRIPT

Page 1: Testing with Rspec 3

Testing with RSpec 3David PaluyJul 2015

Page 2: Testing with Rspec 3

Agenda

● RSpec intro● Expectation - Matcher● Mocks vs Stubs● Model Specs● Controller Specs● FactoryGirl● API specs

Page 3: Testing with Rspec 3

RSpec 3

Start from reading other people's code

Read:https://relishapp.com/rspechttp://betterspecs.org/

Page 4: Testing with Rspec 3

RSpec 3

Page 5: Testing with Rspec 3

RSpec 2

Page 6: Testing with Rspec 3

Subject

Page 7: Testing with Rspec 3

let

Page 8: Testing with Rspec 3

RSpec Expectations

http://www.rubydoc.info/gems/rspec-expectations/frames

Page 9: Testing with Rspec 3

Mocks & Stubs

http://www.rubydoc.info/gems/rspec-mocks/frames

Page 10: Testing with Rspec 3

RSpec with Rails

Page 11: Testing with Rspec 3

RSpec Rails

Page 12: Testing with Rspec 3

Model spec

● Attributes existence

● Association

● Validation

● Class & Instance methods

Page 13: Testing with Rspec 3

Controller spec

https://www.relishapp.com/rspec/rspec-rails/v/2-13/docs/controller-specs

Page 14: Testing with Rspec 3

Controller spec

Simulate HTTP request:GET, POST, PUT, DELETE, XHR

Variables:controller, request, response,assigns, flash, session

Page 15: Testing with Rspec 3

Factories vs Fixtures

Page 16: Testing with Rspec 3

Factories

● YML files loaded on start

● Bypass ActiveRecord

● Easy to generate from Real Data

Page 17: Testing with Rspec 3

FactoryGirl

Page 18: Testing with Rspec 3

FactoryGirl - instantiation options

❖ create: saves object to the database, and saves any associated objects too

❖ build: builds object in memory only, but still saves any associated objects to the database

❖ build_stubbed: builds object in memory only, as well as any associated objects

Page 20: Testing with Rspec 3

API Testing - best practices

HTTP response status codeResponse body

Page 21: Testing with Rspec 3

API Testing is Integration Testing

RSpec Request specs

Page 22: Testing with Rspec 3

JSON Helper for RSpec

https://gist.github.com/dpaluy/b43821d086211bb10cda