Skip to content
forked from vcr/vcr

Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.

License

Notifications You must be signed in to change notification settings

SoftwareWithFriends/vcr

This branch is 631 commits behind vcr/vcr:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2cca591 · Jun 26, 2013
Feb 26, 2012
Jun 26, 2013
Jun 7, 2013
Jun 26, 2013
Dec 31, 2012
Jun 26, 2013
Oct 12, 2010
Feb 28, 2011
May 18, 2013
Oct 12, 2010
Feb 22, 2012
Nov 25, 2010
Jun 26, 2013
Feb 13, 2012
Nov 27, 2012
May 18, 2013
Nov 22, 2011
May 18, 2013
Jun 26, 2013
Jan 5, 2013
Jan 18, 2013
Jun 26, 2013
Mar 3, 2012
Dec 2, 2012
Jun 26, 2013

Repository files navigation

VCR

Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.

Build Status

Synopsis

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
      response = Net::HTTP.get_response(URI('http://www.iana.org/domains/example/'))
      assert_match /Example Domains/, response.body
    end
  end
end

Run this test once, and VCR will record the http request to fixtures/vcr_cassettes/synopsis.yml. Run it again, and VCR will replay the response from iana.org when the http request is made. This test is now fast (no real HTTP requests are made anymore), deterministic (the test will continue to pass, even if you are offline, or iana.org goes down for maintenance) and accurate (the response will contain the same headers and body you get from a real request).

Features

  • Automatically records and replays your HTTP interactions with minimal setup/configuration code.
  • Supports and works with the HTTP stubbing facilities of multiple libraries. Currently, the following are supported:
  • Supports multiple HTTP libraries:
  • Request matching is configurable based on HTTP method, URI, host, path, body and headers, or you can easily implement a custom request matcher to handle any need.
  • The same request can receive different responses in different tests--just use different cassettes.
  • The recorded requests and responses are stored on disk in a serialization format of your choice (currently YAML and JSON are built in, and you can easily implement your own custom serializer) and can easily be inspected and edited.
  • Dynamic responses are supported using ERB.
  • Automatically re-records cassettes on a configurable regular interval to keep them fresh and current.
  • Disables all HTTP requests that you don't explicitly allow.
  • Simple cucumber integration is provided using tags.
  • Includes convenient RSpec macro and integration with RSpec 2 metadata.
  • Known to work well with many popular ruby libraries including RSpec 1 & 2, Cucumber, Test::Unit, Capybara, Mechanize, Rest-Client and HTTParty.
  • Includes Rack and Faraday middleware.

Usage

The docs come in two flavors:

  • The relish docs contain example-based documentation (VCR's cucumber suite, in fact). It's a good place to look when you are first getting started with VCR, or if you want to see an example of how to use a feature.
  • The rubydoc.info docs contain API documentation. The API docs contain detailed info about all of VCR's public API.

See the Upgrade doc for info about what's new and changed in VCR 2.0.

Release Policy

VCR follows the principles of semantic versioning. The API documentation define VCR's public API. Patch level releases contain only bug fixes. Minor releases contain backward-compatible new features. Major new releases contain backwards-incompatible changes to the public API.

Ruby Interpreter Compatibility

VCR has been tested on the following ruby interpreters:

  • MRI 1.8.7
  • MRI 1.9.2
  • MRI 1.9.3
  • REE 1.8.7
  • JRuby
  • Rubinius

Note that as of VCR 2, 1.8.6 and 1.9.1 are not supported.

Development

  • Source hosted on GitHub.
  • Direct questions and discussions to the IRC channel or the mailing list.
  • Report issues on GitHub Issues.
  • Pull requests are very welcome! Please include spec and/or feature coverage for every patch, and create a topic branch for every separate change you make.
  • See the Contributing guide for instructions on running the specs and features.
  • Code quality metrics are checked by Code Climate.
  • Documentation is generated with YARD (cheat sheet). To generate while developing:
yard server --reload

Thanks

Thanks also to the following people who have contributed patches or helpful suggestions:

Ports in other languages

Similar Libraries in Ruby

Copyright

Copyright (c) 2010-2013 Myron Marston. Released under the terms of the MIT license. See LICENSE for details.

About

Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 99.8%
  • Shell 0.2%