Test::Unit Equivalent of JUnit @AfterClass

P

Patrick Joyce

Hey,

Does anyone know a way to do the equivalent of @AfterClass in
Test::Unit? I need to execute some code once after ALL the test_*
methods in a Test::Unit::TestCase have run (teardown runs after EACH
method).

The reason I need to do this is that Rails leaves old fixture data in
the DB after each TestCase is run. This just doesn't seem right to me,
as I think each TestCase should start with the same state, but that is
another issue. The immediate problem is that this can cause tests to
fail if there are foreign key constraints. For example:

TestCase1 < Test::Unit::TestCase
fixtures :testa, :testb
end

TestCase2 < Test::Unit:TestCase
fixtures :testa
end

If testb has a foreign key that depends upon testa, the second
TestCase will fail since it will only try to delete from table testa
and there are records in table testb that depend on testa.

Cliff Moon of PhillyOnRails wrote a plugin
(http://agilewebdevelopment.com/plugins/foreign_key_fixtures) to solve
this problem, but the svn repository seems to be down.

Another note: I only noticed this when setting up my cruisecontrol.rb
for my project. The normal "rake test" task sets up the Test DB schema
from schema.rb which ignores foreign keys. So if you have foreign keys
in your DB be aware that there is a good chance you are running your
tests without them.

Any ideas?

- Patrick Joyce
 
R

Ryan Davis

The reason I need to do this is that Rails leaves old fixture data in
the DB after each TestCase is run. This just doesn't seem right to me,
as I think each TestCase should start with the same state, but that is
another issue. The immediate problem is that this can cause tests to
fail if there are foreign key constraints. For example:

No, it isn't another issue... it is bug 2404 in the rails bug db.

http://dev.rubyonrails.org/ticket/2404
 
P

Patrick Joyce

Ryan said:
No, it isn't another issue... it is bug 2404 in the rails bug db.

http://dev.rubyonrails.org/ticket/2404

Thanks, I don't know how I missed that ticket in all my searching.

How did you end up working around the problem? Did you use the initial
"nuke_fixtures" patch? Did you add all the fixtures with foreign keys to
each test? (that looks like the easiest solution, but just doesn't seem
right)
 
D

Daniel Berger

No, it isn't another issue... it is bug 2404 in the rails bug db.

http://dev.rubyonrails.org/ticket/2404

It's our favorite bug Ryan!

Yep, going OT here...

That bug alone really made my Rails test suite suffer for an existing
app. I don't even try to implement FK's at the database layer any more
with Rails as a result.

I wonder if Merb fixed this...

Regards,

Dan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,280
Latest member
BGBBrock56

Latest Threads

Top