WebValve is a tool for defining and registering fake implementations of HTTP services and toggling between the real services and the fake ones in non-production environments.
This library is made possible by the incredible gems WebMock and Sinatra.
Check out the Rails at Scale talk for some background on why we built it and some of the key design decisions behind WebValve:
WebValve is designed to work with Rails 4+, but it also should work with non-Rails apps and gems.
You can add WebValve to your Gemfile with:
gem 'webvalve'
Then run bundle install
.
The default mode in development and test is to disallow all HTTP network connections. This provides a clean foundation for consuming new services. If you add a new service integration, the first thing that you will be presented with when you attempt to hit it in development or test is a warning that the requested URL was not mocked. This behavior comes straight outta WebMock.
irb(main):007:0> Net::HTTP.get(URI('http://bank.test'))
WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: GET http://bank.test/ with headers {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}
You can stub this request with the following snippet:
stub_request(:get, "http://bank.test/").
with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
to_return(:status => 200, :body => "", :headers => {})
============================================================
The first thing to do is run the install generator.
$ rails generate webvalve:install
This will drop a new file in your config directory.
# config/webvalve.rb
# # register services
#
# WebValve.register "FakeBank"
# WebValve.register "FakeExample", url: "https://api.example.org"
#
# # add urls to allowlist
#
# WebValve.allow_url "https://example.com"
If you're not using Rails, you can create this file for yourself.
Next, you will want create a FakeService
and register
it with the framework.
This can be accomplished by running the fake service generator:
$ rails generate webvalve:fake_service Bank
This will generate a file fake_bank.rb
in the top-level folder
webvalve
. This file will be autoloaded by Rails, so you can
tweak it as you go without having to restart your application.
# webvalve/fake_bank.rb
class FakeBank < WebValve::FakeService
# # define your routes here
#
# get '/widgets' do
# json result: 'it works!'
# end
#
# # toggle this service on via ENV
#
# export BANK_ENABLED=true
end
And it will automatically register it in config/webvalve.rb
# config/webvalve.rb
WebValve.register "FakeBank"
Again, if you're not using Rails, you'll have to create this file yourself and update the config file manually.
You'll also want to define an environment variable for the base url of your service.
export BANK_API_URL='http://bank.test'
That's it. Now when you hit your service again, it will route your
request into the FakeBank
instance.
If you want to connect to the actual service, all you have to do is set another environment variable.
export BANK_ENABLED=true
You will have to restart your application after making this change because service faking is an initialization time concern and not a runtime concern.
In order to get WebValve fake services working properly in tests, you have to configure WebValve at the beginning of each test. For RSpec, there is a configuration provided.
# spec/spec_helper.rb
require 'webvalve/rspec'
If you are using rspec-retry, you'll have to manually register your around hook, instead, to ensure that WebValve resets its configuration for each retry, e.g.:
# spec/[rails|spec]_helper.rb
# your require lines omitted ...
require 'webmock/rspec' # set up webmock lifecycle hooks - required
RSpec.configure do |config|
# your config lines omitted ...
config.around :each do |ex|
ex.run_with_retry retry: 2
end
config.around :each do |ex|
WebValve.reset!
ex.run
end
end
For any other test framework, you will want to similarly set up webmock
lifecycle hooks, and add a custom hook that will run WebValve.setup
before
each test.
Given a scenario where we want to mock a specific behavior for an endpoint in a test, we can just use WebMock™.
# in an rspec test...
it 'handles 404s by returning nil' do
fake_req = stub_request('http://bank.test/some/url/1234')
.to_return(status: 404, body: nil)
response = Faraday.get 'http://bank.test/some/url/1234'
expect(response.body).to be_nil
expect(fake_req).to have_been_requested
end
In other scenarios where we don't care about the specific response from the endpoint, you can just lean into the behavior you've configured for that route in your fake service.
Sometimes a service integration may want to use an unconventional name
for its environment variables. In that case, you can register the fake
service using the optional url:
argument.
# config/webvalve.rb
# using an ENV variable
WebValve.register FakeBank, url: ENV.fetch("SOME_CUSTOM_API_URL")
# or with a constant value
WebValve.register FakeBank, url: "https://some-service.com"
If the service you are interacting with contains dynamic elements, e.g.
an instance-specific subdomain, you can specify a wildcard in your url
with the *
character to match a series of zero or more characters
within the same URL segment. For example:
export BANK_API_URL=https://*.mybank.com/
or
WebValve.register FakeBank, url: "https://*.mybank.com"
Note: unlike filesystem globbing, ?
isn't respected to mean "exactly
one character" because it's a URL delimiter character. Only *
works
for WebValve URL wildcards.
Alternatively you can use Addressable::Template
s or Regexp
s to
specify dynamic URLs if they for some reason aren't a good fit for the
wildcard syntax. Note that there is no ENV
var support for these
formats because there is no detection logic to determine a URL string is
actually meant to represent a URL template or regexp. For example:
WebValve.register FakeBank, url: Addressable::Template.new("http://mybank.com{/path*}{?query}")
or
WebValve.register FakeBank, url: %r{\Ahttp://mybank.com(/.*)?\z}
The definition of FakeService
is really simple. It's just a
Sinatra::Base
class. It is wired up to support returning JSON
responses and it will raise when a route is requested but it is
not registered.
Can I use WebValve in environments like staging, demo, and production?
Yes! By default WebValve is only enabled in test and development
environments; however, it can be enabled in other environments by
setting WEBVALVE_ENABLED=true
(actually, any of 1/t/true will work).
This can be useful for spinning up cheap, one-off environments for
user-testing or demos. When WebValve is enabled in any environment other
than development/test it will default services to enabled rather than
disabled, allowing all traffic to pass-thru. This ensures that
production-like environments are run integrated by default. You can
change this behavior by setting WEBVALVE_SERVICE_ENABLED_DEFAULT=false
(any of 0/f/false will work). This will default to the same experience
as local development, defaulting services to disabled, intercepting all
traffic. In either of these modes, you can use the
$SERVICE_ENABLED=true/false
to toggle a specific service into the
desired state.
Can I use WebValve without Rails?
Yep! If you're not using Rails, you'll have to load the config file
yourself. You will want to explicitly require
each of your fake
services in your config/webvalve.rb
, require
your config file, and
call WebValve.setup
during your app's boot-up process.
We would love for you to contribute! Anything that benefits the majority
of webvalve
users—from a documentation fix to an entirely new
feature—is encouraged.
Before diving in, check our issue tracker and consider creating a new issue to get early feedback on your proposed change.
- Fork the project and create a new branch for your contribution.
- Write your contribution (and any applicable test coverage).
- Make sure all tests pass (
bundle exec rake
). - Submit a pull request.