PC Review


Reply
Thread Tools Rate Thread

Database testing with automated verifications of your modifications ?

 
 
tomjbr.32022025@bloglines.com
Guest
Posts: n/a
 
      30th Aug 2006
Can anyone recommend a good framework (preferably open source) that can
be used for database testing ?

The thing I want to be able to do is the following:
(1) Define the expected database changes that I want my following code
to trigger
(2) Take a snapshow of the database before my test code starts
(3) Execute my code being tested
(4) Verify that all the changes have been done to the database

In other words, I am looking for a component that can be used in a
similar way as some mock object frameworks where you record the
expected methods that should be invoked by your code, but instead I
want to record the expected database changes that will be triggered by
my code.

To further explain what I mean, here is a code sample of the kind of
feature I would wish:

string connectionString = "...";
DatabaseTester oDatabaseTester = new DatabaseTester(connectionString);
oDatabaseTester.AddExpectation(new RowsInserted("tableName1", 3)); // 3
rows is expected to become inserted to table "tableName1"
oDatabaseTester.AddExpectation(new RowsDeleted("tableName2", 4));// 4
rows is expected to become deleted from table "tableName2"
oDatabaseTester.AddExpectation(new UpdatedRow("tableName3",
"columnName1", "newValue", "123"));
// the value of the column "columnName1" will get the value "newValue"
at the row with the primarykey "123" in the table "tableName3"
oDatabaseTester.MakeSnapShotOfTheDatabase(); // the content of the
database will be stored internally in the DatabaseTester class

// the code that should cause the above changes to the database (for
example NHibernate code or whatever)

oDatabaseTester.VerifyAllExpectationsHaveBeenMetSinceTheSnapshot();

/Tom

 
Reply With Quote
 
 
 
 
Mathieu Cartoixa
Guest
Posts: n/a
 
      30th Aug 2006
(E-Mail Removed) a écrit :
> Can anyone recommend a good framework (preferably open source) that can
> be used for database testing ?

For Oracle databases, you can use utPLSQL
(http://utplsql.oracledeveloper.nl/), which is a PL/SQL unit testing
framework. You can write ADO .NET code to call the utPLSQL package
functions if you want to drive your tests from .NET (or better, a .NET
unit testing framework, like NUnit).
But you will have to write specific code to take a snapshot, undo
changes, check for modifications.

I think have once read about a similar framework for SQL Server, but
you will have to

I am pretty sure that no framework exist that target as little as 2
databases, every system being so largely different...

Mathieu Cartoixa
 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Automated Regression Testing? PeteCresswell Microsoft Access 5 31st May 2009 06:05 AM
Automated Security Testing Fresno Bob Microsoft ASP .NET 2 28th Jul 2008 12:05 AM
Automated Testing Software? kiln Microsoft Access VBA Modules 6 26th Feb 2005 01:09 AM
Automated Testing Software? kiln Microsoft Access Form Coding 6 26th Feb 2005 01:09 AM
Automated Testing software Alvin Bruney Microsoft ASP .NET 1 20th Nov 2003 07:35 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:50 AM.