Example #1
0
        public async void All()
        {
            Mock <ILogger <UnitRepository> > loggerMoc = UnitRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = UnitRepositoryMoc.GetContext();
            var repository = new UnitRepository(loggerMoc.Object, context);
            var records    = await repository.All();

            records.Should().NotBeEmpty();
            records.Count.Should().Be(1);
        }
Example #2
0
        public void DeleteNotFound()
        {
            Mock <ILogger <UnitRepository> > loggerMoc = UnitRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = UnitRepositoryMoc.GetContext();
            var repository = new UnitRepository(loggerMoc.Object, context);

            Func <Task> delete = async() =>
            {
                await repository.Delete(default(int));
            };

            delete.Should().NotThrow();
        }
Example #3
0
        public async void Create()
        {
            Mock <ILogger <UnitRepository> > loggerMoc = UnitRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = UnitRepositoryMoc.GetContext();
            var repository = new UnitRepository(loggerMoc.Object, context);

            var entity = new Unit();

            entity.SetProperties(default(int), "B");
            await repository.Create(entity);

            var records = await context.Set <Unit>().ToListAsync();

            records.Count.Should().Be(2);
        }
Example #4
0
        public async void Get()
        {
            Mock <ILogger <UnitRepository> > loggerMoc = UnitRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = UnitRepositoryMoc.GetContext();
            var repository = new UnitRepository(loggerMoc.Object, context);

            Unit entity = new Unit();

            entity.SetProperties(default(int), "B");
            context.Set <Unit>().Add(entity);
            await context.SaveChangesAsync();

            var record = await repository.Get(entity.Id);

            record.Should().NotBeNull();
        }
Example #5
0
        public async void DeleteFound()
        {
            Mock <ILogger <UnitRepository> > loggerMoc = UnitRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = UnitRepositoryMoc.GetContext();
            var  repository = new UnitRepository(loggerMoc.Object, context);
            Unit entity     = new Unit();

            entity.SetProperties(default(int), "B");
            context.Set <Unit>().Add(entity);
            await context.SaveChangesAsync();

            await repository.Delete(entity.Id);

            var records = await context.Set <Unit>().ToListAsync();

            records.Count.Should().Be(1);
        }
Example #6
0
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <UnitRepository> > loggerMoc = UnitRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext             context   = UnitRepositoryMoc.GetContext();
            var  repository = new UnitRepository(loggerMoc.Object, context);
            Unit entity     = new Unit();

            entity.SetProperties(default(int), "B");
            context.Set <Unit>().Add(entity);
            await context.SaveChangesAsync();

            context.Entry(entity).State = EntityState.Detached;

            await repository.Update(entity);

            var records = await context.Set <Unit>().ToListAsync();

            records.Count.Should().Be(2);
        }