Mimic is a testing tool that lets you set create a fake stand-in for an external web service to be used when writing integration/end-to-end tests for applications or libraries that access these services.
There are already some good tools, like FakeWeb which let you stub requests at a low-level which is fine for unit and functional tests but when exercising our code through integration or end-to-end tests we want to exercise as much of the stack as possible.
Mimic aims to make it possible to test your networking code without actually hitting the real services by starting up a real web server and responding to HTTP requests. This lets you test your application against canned responses in an as-close-to-the-real-thing-as-possible way.
Also, because Mimic responds to real HTTP requests, it can be used when testing non-Ruby applications too.
Registering to a single request stub:
Mimic.mimic.get("/some/path").returning("hello world")
And the result, using RestClient:
$ RestClient.get("http://www.example.com:11988/some/path") # => 200 | hello world
Registering multiple request stubs; note that you can stub the same path with different HTTP methods separately.
Mimic.mimic do
get("/some/path").returning("Hello World", 200)
get("/some/other/path").returning("Redirecting...", 301, {"Location" => "somewhere else"})
post("/some/path").returning("Created!", 201)
end
You can even use Rack middlewares, e.g. to handle common testing scenarios such as authentication:
Mimic.mimic do
use Rack::Auth::Basic do |user, pass|
user == 'theuser' and pass == 'thepass'
end
get("/some/path")
end
Finally, because Mimic is built on top of Sinatra for the core request handling, you can create your stubbed requests like you would in any Sinatra app:
Mimic.mimic do
get "/some/path" do
[200, {}, "hello world"]
end
end
Mimic has a built-in REST API that lets you configure your request stubs over HTTP. This makes it possible to use Mimic from other processes that can perform HTTP requests.
First of all, you'll need to run Mimic as a daemon. You can do this with a simple Ruby script and the daemons gem:
#!/usr/bin/env ruby
require 'mimic'
require 'daemons'
Daemons.run_proc("mimic") do
Mimic.mimic(:port => 11988, :fork => false, :remote_configuration_path => '/api') do
# configure your stubs here
end
end
Give the script executable permissions and then start it:
$ your_mimic_script.rb start (or run)
The remote configuration path is where the API endpoints will be mounted - this is configurable as you will not be able this path or any paths below it in your stubs, so choose one that doesn't conflict with the paths you need to stub.
The API supports both JSON and Plist payloads, defaulting to JSON. Set the request Content-Type header to application/plist for Plist requests.
For the following Mimic configuration (using the Ruby DSL):
Mimic.mimic.get("/some/path").returning("hello world")
The equivalent stub can be configured using the REST API as follows:
$ curl -d'{"path":"/some/path", "body":"hello world"}' http://localhost:11988/api/get
Likewise, a POST request to the same path could be stubbed like so:
$ curl -d'{"path":"/some/path", "body":"hello world"}' http://localhost:11988/api/post
The end-point of the API is the HTTP verb you are stubbing, the path, response body, code and headers are specified in the POST data (a hash in JSON or Plist format). See the HTTP API Cucumber features for more examples.
An Objective-C wrapper for the REST API is available, allowing you to use mimic for your OSX and iOS apps.
As usual, the code is released under the MIT license which is included in the repository.