public async void All() { Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteRepositoryMoc.GetContext(); var repository = new VoteRepository(loggerMoc.Object, context); var records = await repository.All(); records.Should().NotBeEmpty(); records.Count.Should().Be(1); }
public void DeleteNotFound() { Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteRepositoryMoc.GetContext(); var repository = new VoteRepository(loggerMoc.Object, context); Func <Task> delete = async() => { await repository.Delete(default(int)); }; delete.Should().NotThrow(); }
public async void Create() { Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteRepositoryMoc.GetContext(); var repository = new VoteRepository(loggerMoc.Object, context); var entity = new Vote(); await repository.Create(entity); var record = await context.Set <Vote>().FirstOrDefaultAsync(); record.Should().NotBeNull(); }
public async void Create() { Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteRepositoryMoc.GetContext(); var repository = new VoteRepository(loggerMoc.Object, context); var entity = new Vote(); entity.SetProperties(default(int), 2, DateTime.Parse("1/1/1988 12:00:00 AM"), 1, 1, 1); await repository.Create(entity); var records = await context.Set <Vote>().ToListAsync(); records.Count.Should().Be(2); }
public async void Get() { Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteRepositoryMoc.GetContext(); var repository = new VoteRepository(loggerMoc.Object, context); Vote entity = new Vote(); context.Set <Vote>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async void Get() { Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteRepositoryMoc.GetContext(); var repository = new VoteRepository(loggerMoc.Object, context); Vote entity = new Vote(); entity.SetProperties(default(int), 2, DateTime.Parse("1/1/1988 12:00:00 AM"), 1, 1, 1); context.Set <Vote>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async void Delete() { Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteRepositoryMoc.GetContext(); var repository = new VoteRepository(loggerMoc.Object, context); Vote entity = new Vote(); context.Set <Vote>().Add(entity); await context.SaveChangesAsync(); await repository.Delete(entity.Id); Vote modifiedRecord = await context.Set <Vote>().FirstOrDefaultAsync(); modifiedRecord.Should().BeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteRepositoryMoc.GetContext(); var repository = new VoteRepository(loggerMoc.Object, context); Vote entity = new Vote(); context.Set <Vote>().Add(entity); await context.SaveChangesAsync(); await repository.Update(new Vote()); var modifiedRecord = context.Set <Vote>().FirstOrDefaultAsync(); modifiedRecord.Should().NotBeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <VoteRepository> > loggerMoc = VoteRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = VoteRepositoryMoc.GetContext(); var repository = new VoteRepository(loggerMoc.Object, context); Vote entity = new Vote(); entity.SetProperties(default(int), 2, DateTime.Parse("1/1/1988 12:00:00 AM"), 1, 1, 1); context.Set <Vote>().Add(entity); await context.SaveChangesAsync(); context.Entry(entity).State = EntityState.Detached; await repository.Update(entity); var records = await context.Set <Vote>().ToListAsync(); records.Count.Should().Be(2); }