This gem provides a Dredd runner and a dredd
rake task to make API blueprint testing convenient for Rack applications. When verifying blueprints locally, an application server is automatically set up, without need of any manual intervention.
Besides being convenient, that allows to use the API blueprints as acceptance test suites to practice BDD with Dredd and RSpec, for example, while clients developers use Apiary as a mock server.
Add the gem to your Gemfile
:
# Gemfile
gem 'dredd-rack', '~> 1.0' # see semver.org
Define which application Dredd::Rack must serve automatically:
# config/initializers/dredd-rack.rb or app.rb or Rakefile
require 'dredd/rack'
Dredd::Rack.configure do |config|
# Allow the automatic setup of a local application server when necessary
#
# Find the name of your application in its `config.ru` file.
config.app = Example::Application # or Rails.application, Sinatra::Application...
# Optionally, you can define a custom Dredd command:
config.dredd_command = 'dredd'
end
Define the dredd
rake task in your Rakefile
:
# Rakefile
require 'dredd/rack'
# ...
# Define the :dredd task
Dredd::Rack::RakeTask.new # run: `dredd doc/*.apib doc/*.apib.md <local or remote URL>`
# Optionally add the API blueprint verification to the default test suite
# task :default => [:spec, :dredd]
Run the API blueprint verification:
# locally
rake dredd
# or specify a remote server:
#API_HOST=http://api.example.com rake dredd
The :dredd
rake task requires no further configuration. However, it relies on the following convention: API blueprints must be stored in the doc
directory with either the .apib
or the .apib.md
extension.
Of course you can define your own rake tasks with custom runners!
Each Dredd::Rack runner stores a specific Dredd configuration. In order to manage different runners, you can define multiple rake tasks with custom names or descriptions:
# Rakefile
# ...
namespace :blueprint do
namespace :verify do
desc 'Verify the whole API compliance with its blueprint'
Dredd::Rack::RakeTask.new(:all)
desc 'Verify the Machines API compliance with its blueprint'
Dredd::Rack::RakeTask.new(:machines) do |task|
task.runner.configure do |dredd|
dredd.only 'Machines > Machines Collection > List all Machines',
'Machines > Machine > Retrieve a Machine' # etc.
dredd.sorted!.details!
end
end
# ...
end
end
# run with `rake blueprint:verify:all` and `rake blueprint:verify:machines`
Both the rake task documentation and the runner documentation contain more examples, and the runner documentation does also contain a comprehensive list of the configuration methods that can be used to customize runners. Take a look at them!
Configuring a runner for remote API blueprint compliance testing is as easy as setting its api_endpoint option (see the runner documentation). Please remember that you must ensure that the API is being served at the specified URI when performing remote API blueprint validation.
This gem behaviour is described using RSpec and RSpec tags are used to categorize the spec examples.
Spec examples that are tagged as public
describe aspects of the gem public API, and MAY be considered as the gem documentation.
The private
or protected
specs are written for development purpose only. Because they describe internal behaviour which may change at any moment without notice, they are only executed as a secondary task by the continuous integration service and SHOULD be ignored.
Run rake spec:public
to print the gem public documentation.
Contributions are welcome! The best way to get in touch is probably to open an issue, whether it is to get help, give feedback or discuss an idea. Also, when there are plan to extend Dredd::Rack, the intended API is described beforehand so we can discuss it. Feel free to jump into the discussion at any moment!
Note that opening pull requests with work in progress is not only welcome, but encouraged! Let's talk early, talk often, and we will all learn in the way :)
Please note that Dredd::Rack is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
The Dredd::Rack::RakeTask
is heavily inspired in the RSpec::Core::RakeTask
. Let the corresponding credits go to the RSpec team.
Dredd::Rack provides convenient API blueprint testing to Rack applications.
Copyright (C) 2015, 2016 Gonzalo Bulnes Guilpain
Copyright (C) 2012 Chad Humphries, David Chelimsky, Myron Marston
Copyright (C) 2009 Chad Humphries, David Chelimsky
Copyright (C) 2006 David Chelimsky, The RSpec Development Team
Copyright (C) 2005 Steven Baker
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.