vote up 0 vote down star

I am trying to automated the testing of a reporting website. I need to verify that the content of a datagridview is as expected for the reports. The datagridview will display column names and datarow results returned from an SQL database.

I am thinking that the meat of the application which is stable is behind a WCF facade, so I should really be trying to automate the verification of the dataset/datatable at this level. I have a proxy I can use at this level to send in dates and report identifier which will return a datatable.

The UI is less important to automate the testing of right now, as it is currently a quick prototype and will be changed in the near future.

I have experience with using a few automated testing tools such as NUnit, FIT, WatiN etc.

Are there any suggested best pratices for automating the testing of this scenario?

flag
3  
Actually, the best practice would be to not return a platform-dependent type like a DataTable, but that's a different question. – John Saunders Jul 14 at 10:14
but a very important question in my opinion! WCF should be interoperable A-Z - using .NET native types defeats that very purpose – marc_s Jul 14 at 10:19
I do take your point and it makes sense. The reason that the .NET native type of datatable was returned is really due to time constraints and easy of use for the WCF service that should always be called from a .NET client as it is an in house reporting application. WCF was really just introduced to make it easier to test with out a UI. On the testing side of things I was thinking I could run SELECT statements with XMLOUT and compare results to DataTable.GetXML() using FIT. I need to do a proof of concept for this yet. Does this seem like a resonable technique for this seanario? – Mike Jul 14 at 11:29
On the XML comparison I could use XMLUnit (xmlunit.sourceforge.net) if I need more control over the comparison. I haven't used this before but it seems like a solution for the issue of comparing XML generated from different sources. – Mike Jul 14 at 13:00
You could just as easily compare a set of service objects to your XML in your FIT Fixture. I see your point about it being quick, but you are negating a lot of the reason to use service orientation. If your concern is primarily testability, a properly designed business layer and data tier using dependency injection, etc. is just as testable as a WCF service. – Anderson Imes Jul 14 at 16:42

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.