web-dev-qa-db-ja.com

Entity Framework 5を使用した作業ユニットおよび汎用リポジトリ

Entity Framework 5でASP.NET MVC 4を使用しています。既存のテーブルをそれらのモデルクラスにマップするモデルクラスとエンティティマップがあります。これらはすべてうまくセットアップされ、うまく機能します。

今、私はこれをモックしたいです。 DataContextを取得し、汎用リポジトリーを使用する作業単位を作成しました。その上で、一度に多くのリポジトリからデータを取得できるサービスを構築し、DataContextの1つのインスタンスのみが必要です。これもうまくいきます。

問題になりました:模擬データでサービスをテストしたいです。作業単位インスタンスを作成するときに、実際のDataContextの代わりにモックされたDataContextを挿入できるようにします。

IContextインターフェースを作成して、実際の模擬のDataContextにそれを実装させようとしましたが、DbSetで問題が発生しました。 IDbSetを使用してFakeDbSetを作成しようとしましたが、成功しませんでした。また、インターネットでIDbSetを使用してコンテキストをモックし、FakeDbSetを使用することは悪いアプローチであると読みました。

これを達成するための最良の方法は何でしょうか?私が今持っているのは、私が保持したい振る舞いですが、DataContextのModelクラスからのデータをモックできるようにしたいです。

Entity FrameworkにはすでにUnit Of Workの動作が付属していることと、その上に追加の動作を追加する必要がないことを知っています。しかし、私はすべてのリポジトリを追跡する別のクラス(UnitOfWorkクラスと呼ばれる)の中にそれをラップしたかったです。

編集:LINQとEntity Frameworkの両方を使用したソリューションを説明する2つの記事を書きました。

http://gaui.is/how-to-mock-the-datacontext-linq/

http://gaui.is/how-to-mock-the-datacontext-entity-framework/

ここに私のコードがあります:

IRepository.cs

public interface IRepository<T> where T : class
{
    void Add(T entity);
    void Delete(T entity);
    void Update(T entity);
    T GetById(long Id);
    IEnumerable<T> All();
    IEnumerable<T> Find(Expression<Func<T, bool>> predicate);
}

IUnitOfWork.cs

public interface IUnitOfWork : IDisposable
{
    IRepository<TEntity> GetRepository<TEntity>() where TEntity : class;
    void Save();
}

Repository.cs

public class Repository<T> : IRepository<T> where T : class
{
    private readonly IDbContext _context;
    private readonly IDbSet<T> _dbset;

    public Repository(IDbContext context)
    {
        _context = context;
        _dbset = context.Set<T>();
    }

    public virtual void Add(T entity)
    {
        _dbset.Add(entity);
    }

    public virtual void Delete(T entity)
    {
        var entry = _context.Entry(entity);
        entry.State = System.Data.EntityState.Deleted;
    }

    public virtual void Update(T entity)
    {
        var entry = _context.Entry(entity);
        _dbset.Attach(entity);
        entry.State = System.Data.EntityState.Modified;
    }

    public virtual T GetById(long id)
    {
        return _dbset.Find(id);
    }

    public virtual IEnumerable<T> All()
    {
        return _dbset;
    }

    public IEnumerable<T> Find(Expression<Func<T, bool>> predicate)
    {
        return _dbset.Where(predicate);
    }
}

UnitOfWork.cs

public class UnitOfWork<TContext> : IUnitOfWork where TContext : IDbContext, new()
{
    private readonly IDbContext _ctx;
    private Dictionary<Type, object> _repositories;
    private bool _disposed;

    public UnitOfWork()
    {
        _ctx = new TContext();
        _repositories = new Dictionary<Type, object>();
        _disposed = false;
    }

    public IRepository<TEntity> GetRepository<TEntity>() where TEntity : class
    {
        if (_repositories.Keys.Contains(typeof(TEntity)))
            return _repositories[typeof(TEntity)] as IRepository<TEntity>;

        var repository = new Repository<TEntity>(_ctx);
        _repositories.Add(typeof(TEntity), repository);
        return repository;
    }

    public void Save()
    {
        _ctx.SaveChanges();
    }

    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

    protected virtual void Dispose(bool disposing)
    {
        if (!this._disposed)
        {
            if (disposing)
            {
                _ctx.Dispose();
            }

            this._disposed = true;
        }
    }
}

ExampleService.cs

public class ExampleService
{
    private IRepository<Example> m_repo;

    public ExampleService(IUnitOfWork uow)
    {
        m_repo = uow.GetRepository<Example>();
    }

    public void Add(Example Example)
    {
        m_repo.Add(Example);
    }

    public IEnumerable<Example> getAll()
    {
        return m_repo.All();
    }
}

ExampleController.cs

public IEnumerable<Example> GetAll()
{
    // Create Unit Of Work object
    IUnitOfWork uow = new UnitOfWork<AppDataContext>();

    // Create Service with Unit Of Work attached to the DataContext
    ExampleService service = new ExampleService(uow);

    return service.getAll();
}
27
Gaui

ExampleServiceクラスはIUnitOfWorkを期待しています。つまり、別のIUnitOfWorkが必要です。これはMockであり、そのGetRepository()メソッドはIRepositoryモック。

例(実際にはモックではなく、インメモリスタブ):

  public InMemoryRepository<T> : IRepository<T> where T : class
  {
        ........
  }

  public InMemoryUnitOfWork : IUnitOfWork
  {
       public IRepository<TEntity> GetRepository<TEntity>() where TEntity : class
       {
            return new InMemoryRepository<TEntity>();
       }
  }

次に:

public IEnumerable<Example> GetAll()
{
    // Create Unit Of Work object
    IUnitOfWork uow = new InMemoryUnitOfWork();

    // Create Service with Unit Of Work
    ExampleService service = new ExampleService(uow);

    return service.getAll();
}
10
haim770
0