public
Description: Strategies for cleaning databases in Ruby. Can be used to ensure a clean state for testing.
Homepage: http://gemcutter.org/gems/database_cleaner
Clone URL: git://github.com/bmabey/database_cleaner.git
name age message
file .gitignore Wed Mar 04 20:48:41 -0800 2009 gemspec, add pending specs [Ben Mabey]
file History.txt Tue Aug 04 07:14:19 -0700 2009 credit [Ben Mabey]
file LICENSE Wed Mar 04 22:02:08 -0800 2009 added a readme and bumped the version [Ben Mabey]
file README.textile Tue Aug 11 14:12:00 -0700 2009 updating the README.. we have had DM support fo... [Ben Mabey]
file Rakefile Fri May 08 20:53:13 -0700 2009 Version bump to 0.2.2 [Ben Mabey]
file TODO Fri May 08 06:33:32 -0700 2009 nuked irrelevant TODOs [snusnu]
file VERSION.yml Fri May 08 20:53:13 -0700 2009 Version bump to 0.2.2 [Ben Mabey]
file cucumber.yml Tue Mar 03 20:53:21 -0800 2009 cucumber feature and example app done. Got the ... [Ben Mabey]
file database_cleaner.gemspec Tue Aug 04 07:13:22 -0700 2009 version 0.2.3 Signed-off-by: Ben Mabey <ben@be... [adzap]
directory examples/ Thu May 07 08:36:02 -0700 2009 more information on how to run the examples/fea... [snusnu]
directory features/ Tue May 05 08:06:02 -0700 2009 basic support for transaction/truncation with d... [snusnu]
directory lib/ Tue Aug 04 07:13:20 -0700 2009 truncation support for SQL Server adapter Sign... [adzap]
directory spec/ Fri May 08 17:18:44 -0700 2009 whitespace [Ben Mabey]
README.textile

Database Cleaner

Database Cleaner is a set of strategies for cleaning your database in Ruby.
The original use case was to ensure a clean state during tests. Each strategy
is a small amount of code but is code that is usually needed in any ruby app
that is testing with a database.

Both ActiveRecord and DataMapper are supported.

How to use

  require 'database_cleaner'
  DatabaseCleaner.strategy = :truncation

  # then, whenever you need to clean the DB
  DatabaseCleaner.clean

With the :truncation strategy you can also pass in options, for example:


DatabaseCleaner.strategy = :truncation, {:only => %w[widgets dogs some_other_table]}

  DatabaseCleaner.strategy = :truncation, {:except => %w[widgets]}

(I should point out the truncation strategy will never truncate your schema_migrations table.)

Some strategies require that you call DatabaseCleaner.start before calling clean
(for example the :transaction one needs to know to open up a transaction). So
you would have:

  require 'database_cleaner'
  DatabaseCleaner.strategy = :transaction

  DatabaseCleaner.start # usually this is called in setup of a test
  dirty_the_db
  DatabaseCleaner.clean # cleanup of the test

At times you may want to do a single clean with one strategy. For example, you may want
to start the process by truncating all the tables, but then use the faster transaction
strategy the remaining time. To accomplish this you can say:

  require 'database_cleaner'
  DatabaseCleaner.clean_with :truncation
  DatabaseCleaner.strategy = :transaction
  # then make the DatabaseCleaner.start and DatabaseCleaner.clean calls appropriately

Example usage with RSpec:

Spec::Runner.configure do |config|

  config.before(:suite) do
    DatabaseCleaner.strategy = :transaction
    DatabaseCleaner.clean_with(:truncation)
  end

  config.before(:each) do
    DatabaseCleaner.start
  end

  config.after(:each) do
    DatabaseCleaner.clean
  end

end

For use in Cucumber please see the section below.

Why?

One of my motivations for writing this library was to have an easy way to
turn on what Rails calls “transactional_fixtures” in my non-rails
ActiveRecord projects. For example, Cucumber ships with a Rails world that
will wrap each scenario in a transaction. This is great, but what if you are
using ActiveRecord in a non-rails project? You used to have to copy-and-paste
the needed code, but with DatabaseCleaner you can now say:

  #env.rb
  require 'database_cleaner'
  require 'database_cleaner/cucumber'
  DatabaseCleaner.strategy = :transaction

Now lets say you are running your features and it requires that another process be
involved (i.e. Selenium running against your app’s server.) You can simply change
your strategy type:

  #env.rb
  require 'database_cleaner'
  require 'database_cleaner/cucumber'
  DatabaseCleaner.strategy = :truncation

You can have the best of both worlds and use the best one for the job:


#env.rb
require ‘database_cleaner’
require ‘database_cleaner/cucumber’
DatabaseCleaner.strategy = (ENV[‘SELENIUM’] == ‘true’) ? :truncation : :transaction

COPYRIGHT

Copyright © 2009 Ben Mabey. See LICENSE for details.