public async void All() { Mock <ILogger <ChainRepository> > loggerMoc = ChainRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = ChainRepositoryMoc.GetContext(); var repository = new ChainRepository(loggerMoc.Object, context); var records = await repository.All(); records.Should().NotBeEmpty(); records.Count.Should().Be(1); }
public async void Create() { Mock <ILogger <ChainRepository> > loggerMoc = ChainRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = ChainRepositoryMoc.GetContext(); var repository = new ChainRepository(loggerMoc.Object, context); var entity = new Chain(); await repository.Create(entity); var record = await context.Set <Chain>().FirstOrDefaultAsync(); record.Should().NotBeNull(); }
public void DeleteNotFound() { Mock <ILogger <ChainRepository> > loggerMoc = ChainRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = ChainRepositoryMoc.GetContext(); var repository = new ChainRepository(loggerMoc.Object, context); Func <Task> delete = async() => { await repository.Delete(default(int)); }; delete.Should().NotThrow(); }
public async void Get() { Mock <ILogger <ChainRepository> > loggerMoc = ChainRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = ChainRepositoryMoc.GetContext(); var repository = new ChainRepository(loggerMoc.Object, context); Chain entity = new Chain(); context.Set <Chain>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async void Create() { Mock <ILogger <ChainRepository> > loggerMoc = ChainRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = ChainRepositoryMoc.GetContext(); var repository = new ChainRepository(loggerMoc.Object, context); var entity = new Chain(); entity.SetProperties(default(int), 1, Guid.Parse("3842cac4-b9a0-8223-0dcc-509a6f75849b"), "B", 1); await repository.Create(entity); var records = await context.Set <Chain>().ToListAsync(); records.Count.Should().Be(2); }
public async void Delete() { Mock <ILogger <ChainRepository> > loggerMoc = ChainRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = ChainRepositoryMoc.GetContext(); var repository = new ChainRepository(loggerMoc.Object, context); Chain entity = new Chain(); context.Set <Chain>().Add(entity); await context.SaveChangesAsync(); await repository.Delete(entity.Id); Chain modifiedRecord = await context.Set <Chain>().FirstOrDefaultAsync(); modifiedRecord.Should().BeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <ChainRepository> > loggerMoc = ChainRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = ChainRepositoryMoc.GetContext(); var repository = new ChainRepository(loggerMoc.Object, context); Chain entity = new Chain(); context.Set <Chain>().Add(entity); await context.SaveChangesAsync(); await repository.Update(new Chain()); var modifiedRecord = context.Set <Chain>().FirstOrDefaultAsync(); modifiedRecord.Should().NotBeNull(); }
public async void Get() { Mock <ILogger <ChainRepository> > loggerMoc = ChainRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = ChainRepositoryMoc.GetContext(); var repository = new ChainRepository(loggerMoc.Object, context); Chain entity = new Chain(); entity.SetProperties(default(int), 1, Guid.Parse("3842cac4-b9a0-8223-0dcc-509a6f75849b"), "B", 1); context.Set <Chain>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <ChainRepository> > loggerMoc = ChainRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = ChainRepositoryMoc.GetContext(); var repository = new ChainRepository(loggerMoc.Object, context); Chain entity = new Chain(); entity.SetProperties(default(int), 1, Guid.Parse("3842cac4-b9a0-8223-0dcc-509a6f75849b"), "B", 1); context.Set <Chain>().Add(entity); await context.SaveChangesAsync(); context.Entry(entity).State = EntityState.Detached; await repository.Update(entity); var records = await context.Set <Chain>().ToListAsync(); records.Count.Should().Be(2); }