public async void All() { Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext(); var repository = new DeviceActionRepository(loggerMoc.Object, context); var records = await repository.All(); records.Should().NotBeEmpty(); records.Count.Should().Be(1); }
public async void Create() { Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext(); var repository = new DeviceActionRepository(loggerMoc.Object, context); var entity = new DeviceAction(); await repository.Create(entity); var record = await context.Set <DeviceAction>().FirstOrDefaultAsync(); record.Should().NotBeNull(); }
public void DeleteNotFound() { Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext(); var repository = new DeviceActionRepository(loggerMoc.Object, context); Func <Task> delete = async() => { await repository.Delete(default(int)); }; delete.Should().NotThrow(); }
public async void Get() { Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext(); var repository = new DeviceActionRepository(loggerMoc.Object, context); DeviceAction entity = new DeviceAction(); context.Set <DeviceAction>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async void Create() { Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext(); var repository = new DeviceActionRepository(loggerMoc.Object, context); var entity = new DeviceAction(); entity.SetProperties(default(int), "B", 1, "B"); await repository.Create(entity); var records = await context.Set <DeviceAction>().ToListAsync(); records.Count.Should().Be(2); }
public async void Delete() { Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext(); var repository = new DeviceActionRepository(loggerMoc.Object, context); DeviceAction entity = new DeviceAction(); context.Set <DeviceAction>().Add(entity); await context.SaveChangesAsync(); await repository.Delete(entity.Id); DeviceAction modifiedRecord = await context.Set <DeviceAction>().FirstOrDefaultAsync(); modifiedRecord.Should().BeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext(); var repository = new DeviceActionRepository(loggerMoc.Object, context); DeviceAction entity = new DeviceAction(); context.Set <DeviceAction>().Add(entity); await context.SaveChangesAsync(); await repository.Update(new DeviceAction()); var modifiedRecord = context.Set <DeviceAction>().FirstOrDefaultAsync(); modifiedRecord.Should().NotBeNull(); }
public async void DeleteFound() { Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext(); var repository = new DeviceActionRepository(loggerMoc.Object, context); DeviceAction entity = new DeviceAction(); entity.SetProperties(default(int), "B", 1, "B"); context.Set <DeviceAction>().Add(entity); await context.SaveChangesAsync(); await repository.Delete(entity.Id); var records = await context.Set <DeviceAction>().ToListAsync(); records.Count.Should().Be(1); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext(); var repository = new DeviceActionRepository(loggerMoc.Object, context); DeviceAction entity = new DeviceAction(); entity.SetProperties(default(int), "B", 1, "B"); context.Set <DeviceAction>().Add(entity); await context.SaveChangesAsync(); context.Entry(entity).State = EntityState.Detached; await repository.Update(entity); var records = await context.Set <DeviceAction>().ToListAsync(); records.Count.Should().Be(2); }