Skip to content

Commit a17544d

Browse files
committedMar 5, 2009
added a readme and bumped the version
1 parent 066ba91 commit a17544d

File tree

5 files changed

+105
-12
lines changed

5 files changed

+105
-12
lines changed
 

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2008 Ben Mabey
1+
Copyright (c) 2009 Ben Mabey
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

‎README

-7
This file was deleted.

‎README.textile

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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.

‎VERSION.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
22
:major: 0
3-
:minor: 0
4-
:patch: 1
3+
:minor: 1
4+
:patch: 0

‎database_cleaner.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
Gem::Specification.new do |s|
44
s.name = %q{database_cleaner}
5-
s.version = "0.0.1"
5+
s.version = "0.1.0"
66

77
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
88
s.authors = ["Ben Mabey"]
99
s.date = %q{2009-03-04}
1010
s.description = %q{TODO}
1111
s.email = %q{ben@benmabey.com}
12-
s.files = ["VERSION.yml", "examples/features", "examples/features/example.feature", "examples/features/step_definitions", "examples/features/step_definitions/example_steps.rb", "examples/features/support", "examples/features/support/env.rb", "examples/lib", "examples/lib/activerecord.rb", "lib/database_cleaner", "lib/database_cleaner/active_record", "lib/database_cleaner/active_record/transaction.rb", "lib/database_cleaner/active_record/truncation.rb", "lib/database_cleaner/configuration.rb", "lib/database_cleaner/cucumber.rb", "lib/database_cleaner/data_mapper", "lib/database_cleaner/data_mapper/transaction.rb", "lib/database_cleaner.rb", "features/cleaning.feature", "features/step_definitions", "features/step_definitions/database_cleaner_steps.rb", "features/support", "features/support/env.rb", "spec/database_cleaner", "spec/database_cleaner/active_record", "spec/database_cleaner/active_record/truncation_spec.rb", "spec/database_cleaner/configuration_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "Rakefile", "cucumber.yml"]
12+
s.files = ["README.textile", "VERSION.yml", "examples/features", "examples/features/example.feature", "examples/features/step_definitions", "examples/features/step_definitions/example_steps.rb", "examples/features/support", "examples/features/support/env.rb", "examples/lib", "examples/lib/activerecord.rb", "lib/database_cleaner", "lib/database_cleaner/active_record", "lib/database_cleaner/active_record/transaction.rb", "lib/database_cleaner/active_record/truncation.rb", "lib/database_cleaner/configuration.rb", "lib/database_cleaner/cucumber.rb", "lib/database_cleaner/data_mapper", "lib/database_cleaner/data_mapper/transaction.rb", "lib/database_cleaner.rb", "features/cleaning.feature", "features/step_definitions", "features/step_definitions/database_cleaner_steps.rb", "features/support", "features/support/env.rb", "spec/database_cleaner", "spec/database_cleaner/active_record", "spec/database_cleaner/active_record/truncation_spec.rb", "spec/database_cleaner/configuration_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "Rakefile", "cucumber.yml"]
1313
s.has_rdoc = true
1414
s.homepage = %q{http://github.com/bmabey/database_cleaner}
1515
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]

0 commit comments

Comments
 (0)
Please sign in to comment.