Git Product home page Git Product logo

javajefe / betamax Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tilteng/betamax

0.0 2.0 0.0 59.5 MB

Betamax is a tool for mocking external HTTP resources such as web services and REST APIs in your tests. The project was inspired by the VCR library for Ruby.

Home Page: http://freeside.co/betamax

License: Apache License 2.0

HTML 3.09% JavaScript 0.67% CSS 7.35% Groovy 88.47% Java 0.43%

betamax's Introduction

NOTE - This is a Banno-specific fork of Betamax.

See additional Banno-specific notes at the end of this document.

βetamax Build Status

Betamax is a tool for mocking external HTTP resources such as web services and REST APIs in your tests. The project was inspired by the VCR library for Ruby.

Betamax is written in Groovy but is compatible with tests written using JUnit or Spock for applications written in any JVM language.

Usage

Record

Add a @Rule Recorder property to your test and annotate test methods with @Betamax. The first time the test runs any HTTP traffic is recorded to tape.

Playback

Future test runs replay responses from tape without traffic going to the real target. No more 3rd party downtime or rate limits breaking your tests. You can even run your tests offline! Insert different tapes to stub different responses.

Customize

Tapes are just YAML files so you can edit them with a text editor, commit to source control, share with your team & use on continuous integration.

Full documentation

Full documentation can be found on [Betamax's home page][home].

Project status

The current stable version of Betamax is 1.1.1 which is available from Maven Central.

Add 'co.freeside:betamax:1.1.1' as a test dependency to your Gradle, Ivy, Grails or Maven project (or anything that can use Maven repositories).

Development versions are available from Sonatype.

Betamax's tests run on Travis CI.

Please get in touch if you have any feedback. You can raise defects and feature requests via GitHub issues.

Notes on running tests from inside IntelliJ IDEA

Go to Settings -> Compiler and ensure that *.keystore appears in the Resource patterns otherwise IDEA will not make the SSL keystore available on the classpath when tests run.

Banno Notes

We've forked Betamax because it hasn't had a commit by the maintainer since June 2014, nor a release since 2012. We needed some features so we forked from the 1.1.2 release.

New Features

Request Matching Doesn't Fail if Body is Empty

Groovy, Gradle and Other Dependencies Upgraded

New Tape Mode: Reconcile

We periodically want to check our tapes against the live services, such as JxChange, to detect breaking changes on their end. To this end we created a new tape mode, 'RECONCILE', which sends all requests to the live server and then looks for matching requests on the tape, and compares the responses using the new ResponseMatcher and ResponseMatchRule(s). If they match, the test passes as normal. If the response from the server is different from the taped one, the interaction is written to a 'reconciliation error tape' whose name will be the regular tape name plus '_reconciliation_errors', e.g. 'my_spec_reconciliation_errors.yaml'. A Jenkins job can therefore fail on the presence of such files.

More Flexible Request/Response matching

Responses and requests may not match exactly due to date fields, etc. This can affect both reconciliation mode and taped response lookup, respectively. Since both requests and response implement Message, we've created an XmlAwareMessageMatcher than can be used to create request/response matchers that ignore certain elements, e.g.

new XmlAwareMessageBodyMatcher("trackingId", "timestamp")

This would ignore values inside and elements. If more sophisticated checks are needed, simply implement more rules.

Banno Fork Development Notes

  • This project is written in Groovy and uses Gradle for builds. './gradlew' is the wrapper script to run, and it will install Groovy and Gradle for you.
  • To see full output in the console, use the '-i -s' flags, e.g. './gradlew clean test -i -s'
  • To build, run './gradlew clean test' (or whatever goals you need).
  • To release, run './gradlew clean test uploadArchives'. You'll be prompted for Nexus credentials.
  • To be compatible with Java 1.7, we must build under 1.7 to avoid an error due to Groovy leveraging new 1.8 things such as ToIntFunction.
  • The version number has the '-banno' suffix, e.g. '1.1.2-banno-SNAPSHOT'
  • See Brian H. if you have other questions.

betamax's People

Contributors

robfletcher avatar adamdecaf avatar nobusue avatar zkay avatar froots avatar lhotari avatar erdi avatar pksandeep avatar

Watchers

James Cloos avatar Alexander Bukarev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.