Slide 1

Slide 1 text

John Sheehan CEO, Runscope Building API integrations you can live with. Tuesday, November 5, 13

Slide 2

Slide 2 text

Software is eating lunch and APIs are for dessert! Tuesday, November 5, 13

Slide 3

Slide 3 text

“There's just no getting around it: you're building a distributed system. -- Mark Cavage, ACM Queue Tuesday, November 5, 13

Slide 4

Slide 4 text

Mobile & Desktop Apps Web Sites & Applications Internal APIs 3rd-party Service APIs Public APIs Tuesday, November 5, 13

Slide 5

Slide 5 text

Mobile & Desktop Apps Web Sites & Applications Internal APIs 3rd-party Service APIs Public APIs fn(){} fn(){} Tuesday, November 5, 13

Slide 6

Slide 6 text

Mobile & Desktop Apps Web Sites & Applications Internal APIs 3rd-party Service APIs Public APIs fn(){} fn(){} fn(){} fn(){} fn(){} Tuesday, November 5, 13

Slide 7

Slide 7 text

fn(){} fn(){} fn(){} fn(){} fn(){} Tuesday, November 5, 13

Slide 8

Slide 8 text

fn(){} fn(){} fn(){} fn(){} fn(){} YOUR APPLICATION Tuesday, November 5, 13

Slide 9

Slide 9 text

What are the challenges for running an API-driven application? Tuesday, November 5, 13

Slide 10

Slide 10 text

CHALLENGE #1 Getting a complete picture of your app. Tuesday, November 5, 13

Slide 11

Slide 11 text

Keep an eye on everything. Tuesday, November 5, 13

Slide 12

Slide 12 text

CHALLENGE #2 Managing change. Tuesday, November 5, 13

Slide 13

Slide 13 text

Prefer lighter abstractions. Tuesday, November 5, 13

Slide 14

Slide 14 text

Think twice about taking a dependency on an SDK. Tuesday, November 5, 13

Slide 15

Slide 15 text

OUR STRATEGY Tuesday, November 5, 13

Slide 16

Slide 16 text

OUR STRATEGY Smarter HTTP client Tuesday, November 5, 13

Slide 17

Slide 17 text

OUR STRATEGY Smarter HTTP client Thin wrappers Tuesday, November 5, 13

Slide 18

Slide 18 text

CHALLENGE #3 High-fidelity testing. Tuesday, November 5, 13

Slide 19

Slide 19 text

Let’s look at some popular API testing frameworks. Tuesday, November 5, 13

Slide 20

Slide 20 text

frisby.js Tuesday, November 5, 13

Slide 21

Slide 21 text

require  'rubygems' require  'test/unit' require  'vcr' VCR.configure  do  |c|    c.cassette_library_dir  =  'fixtures/vcr_cassettes'    c.hook_into  :webmock  #  or  :fakeweb end class  VCRTest  <  Test::Unit::TestCase    def  test_example_dot_com        VCR.use_cassette('synopsis')  do              url  =  'http://yourapihere.com'            response  =  Net::HTTP.get_response(URI(url))            assert_match  /Example  domains/,  response.body        end    end end VCR github.com/vcr/vcr Tuesday, November 5, 13

Slide 22

Slide 22 text

mocky.io Tuesday, November 5, 13

Slide 23

Slide 23 text

aspec github.com/songkick/aspec # no users have pending notifications GET /users/with-pending-notifications 200 application/json [] # users with events on their calendar have pending notifications POST /users/764/metro-areas/999 204 POST /users/764/artists/123 204 POST /events/5?artist_ids=123&metro_area_id=999 204 POST /events/5/enqueue-notifications 204 GET /users/with-pending-notifications 200 application/json [[764, "ep"]] # users are unique in the response POST /users/764/artists/123 204 POST /users/764/artists/456 204 POST /users/764/metro-areas/999 204 POST /events/5?artist_ids=123,456&metro_area_id=999 204 POST /events/5/enqueue-notifications 204 GET /users/with-pending-notifications 200 application/json [[764, "ep"]] Tuesday, November 5, 13

Slide 24

Slide 24 text

service  "http://localhost:4567"  do    def  responds_with_json_where        JSON.parse(response.body)    end    resource  "/lolz"  do        get  do            it  {  responds_with.status  :ok  }            it  {  responds_with_json_where['lolz'].must_be_instance_o            with_query("q=monorail")  do                it  "only  lists  lolz  that  match  the  query"  do                    responds_with_json_where['lolz'].wont_be_empty                    responds_with_json_where['lolz'].each  do  |lol|                        lol['title'].must_match  /monorail/                    end                end            end HyperSpec Tuesday, November 5, 13

Slide 25

Slide 25 text

Tuesday, November 5, 13

Slide 26

Slide 26 text

Sign up free: runscope.com Tuesday, November 5, 13