Skip to content

Instantly share code, notes, and snippets.

@danielplawgo
Created November 27, 2018 05:53
Effort - testy Entity Framework
public class BaseTests : RepositoryTests
{
protected ProductRepository Create(string path = null)
{
var context = CreateContext(path);
return new ProductRepository(new Lazy<DataContext>(() => context));
}
}
public class DataContext : DbContext
{
public DataContext()
: base("Name=DefaultConnection")
{
}
public DataContext(DbConnection connection)
: base(connection, true)
{
}
public DbSet<Product> Products { get; set; }
}
public class GetAllActiveTests : BaseTests
{
[Fact]
public void Return_Only_Active_Products()
{
var repository = Create();
var products = repository.GetAllActive();
products.Should().NotBeNull();
products.Count().Should().Be(9);
products.Should().OnlyContain(p => p.IsActive);
}
[Fact]
public void Return_Empty_Collection()
{
var repository = Create(@"ProductRepositoryTests\Data\NoActiveProducts");
var products = repository.GetAllActive();
products.Should().NotBeNull();
products.Count().Should().Be(0);
}
}
public class Model
{
public Model()
{
IsActive = true;
}
public int Id { get; set; }
public bool IsActive { get; set; }
}
public class Product : Model
{
public string Name { get; set; }
}
public class ProductRepository
{
private Lazy<DataContext> _db;
protected DataContext Db
{
get { return _db.Value; }
}
public ProductRepository(Lazy<DataContext> db)
{
_db = db;
}
public IEnumerable<Product> GetAllActive()
{
return Db.Products
.Where(p => p.IsActive)
.ToList();
}
}
SELECT *
FROM [dbo].[Products]
where IsActive = 0
public class RepositoryTests
{
protected DataContext CreateContext(string path = null)
{
IDataLoader loader = new CsvDataLoader(path ?? "Data");
return new DataContext(DbConnectionFactory.CreateTransient(loader));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment