|
| 1 | +h1. Database Cleaner |
| 2 | + |
| 3 | +Database Cleaner is a set of strategies for cleaning your database in Ruby. |
| 4 | +The original use case was to ensure a clean state during tests. Each strategy |
| 5 | +is a small amount of code but is code that is usually needed in any ruby app |
| 6 | +that is testing with a database. |
| 7 | + |
| 8 | +Right now the only ORM supported is ActiveRecord and it currently has two strategies: |
| 9 | +truncation and transaction. |
| 10 | + |
| 11 | +Support for DataMapper is built-in. All that needs to be written are the strategies. :) |
| 12 | + |
| 13 | +h2. How to use |
| 14 | + |
| 15 | +<pre> |
| 16 | + require 'database_cleaner' |
| 17 | + DatabaseCleaner.strategy = :truncation |
| 18 | + |
| 19 | + # then, whenever you need to clean the DB |
| 20 | + DatabaseCleaner.clean |
| 21 | +</pre> |
| 22 | + |
| 23 | +With the :truncation strategy you can also pass in options, for example: |
| 24 | +<pre> |
| 25 | + DatabaseCleaner.strategy = :truncation, {:only => %[widigets dogs some_other_table]} |
| 26 | +</pre> |
| 27 | + |
| 28 | +<pre> |
| 29 | + DatabaseCleaner.strategy = :truncation, {:except => %[widigets]} |
| 30 | +</pre> |
| 31 | + |
| 32 | +(I should point out the truncation strategy will never truncate your schema_migrations table.) |
| 33 | + |
| 34 | + |
| 35 | +Some strategies require that you call DatabaseCleaner.start before calling clean |
| 36 | +(for example the :transaction one needs to know to open up a transaction). So |
| 37 | +you would have: |
| 38 | + |
| 39 | +<pre> |
| 40 | + require 'database_cleaner' |
| 41 | + DatabaseCleaner.strategy = :transaction |
| 42 | + |
| 43 | + DatabaseCleaner.start # usually this is called in setup of a test |
| 44 | + dirty_the_db |
| 45 | + DatabaseCleaner.clean # cleanup of the test |
| 46 | +</pre> |
| 47 | + |
| 48 | +At times you may want to do a single clean with one strategy. For example, you may want |
| 49 | +to start the process by truncating all the tables, but then use the faster transaction |
| 50 | +strategy the remaining time. To accomplish this you can say: |
| 51 | + |
| 52 | +<pre> |
| 53 | + require 'database_cleaner' |
| 54 | + DatabaseCleaner.clean_with :truncation |
| 55 | + DatabaseCleaner.strategy = :transaction |
| 56 | + # then make the DatabaseCleaner.start and DatabaseCleaner.clean calls appropriately |
| 57 | +</pre> |
| 58 | + |
| 59 | +For use in Cucumber please see the section below. |
| 60 | + |
| 61 | + |
| 62 | + |
| 63 | +h2. Why? |
| 64 | + |
| 65 | +One of my motivations for writing this library was to have an easy way to |
| 66 | +turn on what Rails calls "transactional_fixtures" in my non-rails |
| 67 | +ActiveRecord projects. For example, Cucumber ships with a Rails world that |
| 68 | +will wrap each scenario in a transaction. This is great, but what if you are |
| 69 | +using ActiveRecord in a non-rails project? You used to have to copy-and-paste |
| 70 | +the needed code, but with DatabaseCleaner you can now say: |
| 71 | + |
| 72 | +<pre> |
| 73 | + #env.rb |
| 74 | + require 'database_cleaner' |
| 75 | + require 'database_cleaner/cucumber' |
| 76 | + DatabaseCleaner.strategy = :transaction |
| 77 | +</pre> |
| 78 | + |
| 79 | +Now lets say you are running your features and it requires that another process be |
| 80 | +involved (i.e. Selenium running against your app's server.) You can simply change |
| 81 | +your strategy type: |
| 82 | + |
| 83 | +<pre> |
| 84 | + #env.rb |
| 85 | + require 'database_cleaner' |
| 86 | + require 'database_cleaner/cucumber' |
| 87 | + DatabaseCleaner.strategy = :truncation |
| 88 | +</pre> |
| 89 | + |
| 90 | +You can have the best of both worlds and use the best one for the job: |
| 91 | +<pre> |
| 92 | + #env.rb |
| 93 | + require 'database_cleaner' |
| 94 | + require 'database_cleaner/cucumber' |
| 95 | + DatabaseCleaner.strategy = (ENV['SELENIUM'] == 'true') ? :truncation : :transaction |
| 96 | +</pre> |
| 97 | + |
| 98 | +h2. COPYRIGHT |
| 99 | + |
| 100 | +Copyright (c) 2009 Ben Mabey. See LICENSE for details. |
0 commit comments