Strategies for cleaning databases in Ruby. Can be used to ensure a clean state for testing.
Go to file
yozhyk 670dc0f71d added TRUNCADE CASCADE for Postgres (for truncating tables with FKs) 2009-12-21 13:13:36 +08:00
examples more information on how to run the examples/features alone 2009-05-07 17:36:02 +02:00
features basic support for transaction/truncation with datamapper 2009-05-05 17:06:02 +02:00
lib added TRUNCADE CASCADE for Postgres (for truncating tables with FKs) 2009-12-21 13:13:36 +08:00
spec whitespace 2009-05-08 18:18:44 -06:00
.gitignore gemspec, add pending specs 2009-03-04 21:48:41 -07:00
History.txt credit 2009-08-04 08:14:19 -06:00
LICENSE added a readme and bumped the version 2009-03-04 23:02:08 -07:00
README.textile updating the README.. we have had DM support for a while... 2009-08-11 15:12:00 -06:00
Rakefile Version bump to 0.2.2 2009-05-08 21:53:13 -06:00
TODO nuked irrelevant TODOs 2009-05-08 15:33:32 +02:00
VERSION.yml Version bump to 0.2.2 2009-05-08 21:53:13 -06:00
cucumber.yml cucumber feature and example app done. Got the AR transaction strategy done as well. 2009-03-03 21:53:21 -07:00
database_cleaner.gemspec added TRUNCADE CASCADE for Postgres (for truncating tables with FKs) 2009-12-21 13:13:36 +08:00

README.textile

h1. 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.

h2. How to use

<pre>
  require 'database_cleaner'
  DatabaseCleaner.strategy = :truncation

  # then, whenever you need to clean the DB
  DatabaseCleaner.clean
</pre>

With the :truncation strategy you can also pass in options, for example:
<pre>
  DatabaseCleaner.strategy = :truncation, {:only => %w[widgets dogs some_other_table]}
</pre>

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

(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:

<pre>
  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
</pre>

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:

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

Example usage with RSpec:

<pre>
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
</pre>

For use in Cucumber please see the section below.



h2. 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:

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

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:

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

You can have the best of both worlds and use the best one for the job:
<pre>
  #env.rb
  require 'database_cleaner'
  require 'database_cleaner/cucumber'
  DatabaseCleaner.strategy = (ENV['SELENIUM'] == 'true') ? :truncation : :transaction
</pre>

h2. COPYRIGHT

Copyright (c) 2009 Ben Mabey. See LICENSE for details.