Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

when you write a test for the logic layer, you mock the data access layer that's used, because you don't want the test cases to be dependent on each other.

But what about lookup tables ? lets say you have a logic that calculcates value depending on size in Sizes table:

Small 1
Medium 2
Large 3

Now, do you mock this table somehow in your test? using a dictionary for ex.? when the table changes (a real config table will contain hundreds of values, and sometimes will not be in simple key-value form) how do you keep code and table insync?

or you bend this rule... and get values directly from database? but what if tomorrow i change the data source? or i cannot access the database somehow? aren't test cases supposed to run in whatever conditions ?

what's the best approach?

share|improve this question

2 Answers

up vote 1 down vote accepted

I would still mock the lookup table, even if for the 'happy' testing scenarios you just return the real data returned from the database.

But then you have the flexibility to test edge cases, e.g. where data has been deleted from the database, or if no data is returned.

e.g.

// Happy tests:
Mock.Setup for GetLookupData() => return FetchRealDataHere();
Assert.AreEqual(3, Mock.Object.CountOfSizes()); // Ensure that Small, Medium and Large
... Do Good scenario unit Tests here

// Test Edge cases / destructive tests
Mock.Setup for GetLookupData() => return new Collection() [{ Small, 1}] [{ Medium 2}] -   // But omit large
... Exception case Unit tests here, e.g. Try and Insert a Large product here.

// Test empty collection
Mock.Setup for GetLookupData() => return new Collection() [Empty]
//  Assert that "NoItemsFoundException" was thrown by your logic here

// Handle empty collection
Mock.Setup for GetLookupData() => return new Collection() [Empty]

Edit I've updated the pseudo Mock setup / Unit test code for the updated comment below.

share|improve this answer
by FetchRealDataHere() you mean retrieving from the database ? – Omar Gamil Aug 24 '12 at 12:37
@OmarGamil Yes, for the 'good scenario' unit tests, it is probably the most efficient way to keep your unit testing code in-synch with the actual underlying database, rather than hand crafting all the data from the DB again. Since you say that the program logic depends on these values, the data is likely to be fairly static. What you could do is ASSERT that the number of items retrieved from the Size table is exactly 3, i.e. if a new value is added to the DB, that your unit test will fail so that you need to add new tests to handle the new size (state etc). – StuartLC Aug 24 '12 at 12:45

The main idea of Unit-Testing is, you don't need whole data to test your logic. You are looking for some data that represents different cases, and proof the logic for this cases. Thats all. However, by unit-test you are testing not the data, but the program logic.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.