I've researched some information about techniques I could use to unit test a DbContext. I would like to add some in-memory data to the context so that my tests could run against it. I'm using Database-First approach.

The two articles I've found most usefull were this and this. That approach relies on creating an IContext interface that both MyContext and FakeContext will implement, allowing to Mock the context.

However, I'm trying to avoid using repositories to abstract EF, as pointed by some people, since EF 4.1 already implements repository and unit of work patterns through DbSet and DbContext, and I really would like to preserve all the features implemented by the EF Team without having to maintain them myself with a generic repository, as I already did in other project (and it was kind of painful).

Working with an IContext will lead me to the same path (or won't it?).

I thought about creating a FakeContext that inherits from main MyContext and thus take advantage of the DbContext underneath it to run my tests without hitting the database. I couldn't find similar implementations, so I'm hoping someone can help me on this.

Am I doing something wrong, or could this lead me to some problems that I'm not anticipating?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Ask yourself a single question: What are you going to test?

You mentioned FakeContext and Mocking the context - why to use both? Those are just different ways to do the same - provide test only implementation of the context.

There is one more bigger problem - faking or mocking context or set has only one result: You are not testing your real code any more.

Simple example:

public interface IContext : IDisposable
{
     IDbSet<MyEntity> MyEntities { get; }
}

public class MyEntity
{
    public int Id { get; set; }
    public string Path { get; set; } 
}

public class MyService
{
    private bool MyVerySpecialNetMethod(e)
    {
        return File.Exists(e.Path);
    }

    public IEnumerable<MyEntity> GetMyEntities()
    {
        using (IContext context = CreateContext())
        { 
            return context.MyEntities
                          .Where(e => MyVerySpecialNetMethod(e))
                          .Select(e)
                          .ToList();
        }
    }
}

Now imagine that you have this in your SUT (system under test - in case of unit test it is an unit = usually a method). In the test code you provide FakeContext and FakeSet and it will work - you will have a green test. Now in the real code you will provide real derived DbContext and DbSet and you will get exception at runtime. Why because by using FakeContext you have also changed linq provider and instead of linq-to-entities you are running linq-to-objects so calling local .NET methods which cannot be converted to SQL works as well as many other Linq features which are not available in linq-to-entities! There are other issues you can find with data modification as well - referential integrity, cascade deletes, etc. That is the reason why I believe that code dealing with context / Linq-to-entities should be covered with integration tests and work against the real database.

link|improve this answer
I see what you mean. Seems like integration tests are really the way to go. Thanks Ladislav. – Nelson Reis Jul 22 '11 at 13:06
1  
Ladislav - do you know any good resources on how to run (and automate) integration tests in the situation described? – littlechris Sep 3 '11 at 21:25
@littlechris: I used standard database and test with base class where test initialization and test finalization where defined. Initialization started transaction and finalization rolled transaction back. It ensured that my tests will always use database with the same state. – Ladislav Mrnka Sep 15 '11 at 22:37
2  
Regarding preferring to do integration testing, I disagree that this is the only way of testing code that uses EF. I believe that it is important to be able to do both. When unit testing business logic that happens to use EF, you don't want to be testing that your model is in sync with your database by doing an integration test. It's the definition of unit testing. Obviously the integration testing is important, but it's a separate type of test. I've written up an alternative answer that explains how you can do your unit testing. – Josh Gallagher Oct 18 '11 at 6:25
This is where I've grown to love code first for EF - create my sql express or sql ce db when the unit test harness starts up, and removes it when done. – Adam Tuliper Oct 27 '11 at 5:19
show 1 more comment
feedback

Entity Framework 4.1 is close to being able to be mocked up in tests but requires a little extra effort. The T4 template provides you with a DbContext derived class that contains DbSet properties. The two things that I think you need to mock are the DbSet objects that these properties return and properites and methods you're using on the DbContext derived class. Both can be achieved by modifying the T4 template.

Brent McKendrick has shown the types of modifications that need to be made in this post, but not the T4 template modifications that can achieve this. Roughly, these are:

  1. Convert the DbSet properties on the DbContext derived class into IDbSet properties.
  2. Add a section that generates an interface for the DbContext derived class containing the IDbSet properties and any other methods (such as SaveChanges) that you'll need to mock.
  3. Implement the new interface in the DbContext derived class.
link|improve this answer
3  
But this is exactly what is wrong and useless. If you mock the set / context and use the example from my answer you will get a green unit test but an exception at runtime. It will not be exception from database - it will be exception from entity framework = you wasted time on writing test which tests nothing and says nothing about your code. So what is the value of such test and what does it test? Moreover many people follow rule that you should not mock code you don't own because in such case you just guess its functionality when you mock it. – Ladislav Mrnka Oct 18 '11 at 7:53
5  
Yes, for your example you'll get inconsistent results between unit and integration testing and realise that you'd used a technique that didn't work. But if you're using more vanilla LINQ to retrieve entities and then performing some business logic with them, it's still very valid to be testing that business logic in a unit test. E.g. change your example to perform the operation in two steps: 1) retrieve the items via LINQ (maybe .ToList), 2) strip the list down by using your method. Then the unit test will still be useful and the integration test doesn't have to cover all the edge cases. – Josh Gallagher Oct 18 '11 at 8:30
2  
Sure, your approach works in some cases but unit testing strategy must work in all cases - to make it work you must move EF and IQueryable completely from your tested method. That is not point of unit test to pretend that you write it correctly - the point of test is to validate that you write the logic correctly. Also it is not a good practice to write both unit and integration test to validate the same code which in your scenario must be done. – Ladislav Mrnka Oct 18 '11 at 8:35
feedback

Your Answer

 
or
required, but never shown

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