Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Test::Mock::Class::DBI

by Molt (Chaplain)
on Jul 25, 2005 at 08:52 UTC ( [id://477720]=note: print w/replies, xml ) Need Help??


in reply to Test::Mock::Class::DBI

With Class::DBI being fairly simple to use would it be possible to do what you're intending by mocking the database with DBD::SQLite?

I appreciate that it keeps the Class::DBI layer intact, which is not always what you need, but I feel this achieves most testing requirements of these systems with minimal pain.

Replies are listed 'Best First'.
Re^2: Test::Mock::Class::DBI
by thor (Priest) on Jul 25, 2005 at 11:33 UTC
    ...by mocking the database with DBD::SQLite?
    Like with DBD::Mock?

    thor

    Feel the white light, the light within
    Be your own disciple, fan the sparks of will
    For all of us waiting, your kingdom will come

      Ironically enough, no, not like DBD::Mock. DBD Mock is a mock driver, not a mock database. Very big difference.

      It's DBD::Mock's stated intention to make sure the right SQL is executed and the parameters bind to it in the right place. It really doesn't care whether the SQL does what's meant of it or not, or infact whether it works or not.

      For me when I'm testing Class::DBI based classes I really don't care what SQL is actually being run, provided it does what I want in a reasonable amount of time. What I am concerned with is when I say 'Give me all the users registered after the 10th of October' that I do get the test users I purposefully created which match the criteria.

      The approach I advocate (..and try and use whenever possible, I appreciate it doesn't fit every task) is to have a SQLite-based test database, which I can rebuild quickly before each test. This way I can check things such as 'Can I add a user, and then pull them back out?', 'Can I delete all users, and then get a zero user count?', and 'If I try and add a user which doesn't match the database schema (Duplicate ID, or so on) do I get a reasonable error?'.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://477720]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-16 19:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found