public async void All()
        {
            Mock <ILogger <FollowingRepository> > loggerMoc = FollowingRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = FollowingRepositoryMoc.GetContext();
            var repository = new FollowingRepository(loggerMoc.Object, context);
            var records    = await repository.All();

            records.Should().NotBeEmpty();
            records.Count.Should().Be(1);
        }
        public async void AllWithSearch()
        {
            Mock <ILogger <FollowingRepository> > loggerMoc = FollowingRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = FollowingRepositoryMoc.GetContext();
            var repository = new FollowingRepository(loggerMoc.Object, context);

            var records = await repository.All(1, 0, DateTime.Parse("1/1/1987 12:00:00 AM").ToString());

            records.Should().NotBeEmpty();
            records.Count.Should().Be(1);
        }
        public void DeleteNotFound()
        {
            Mock <ILogger <FollowingRepository> > loggerMoc = FollowingRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = FollowingRepositoryMoc.GetContext();
            var repository = new FollowingRepository(loggerMoc.Object, context);

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

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

            var entity = new Following();
            await repository.Create(entity);

            var record = await context.Set <Following>().FirstOrDefaultAsync();

            record.Should().NotBeNull();
        }
        public async void Create()
        {
            Mock <ILogger <FollowingRepository> > loggerMoc = FollowingRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = FollowingRepositoryMoc.GetContext();
            var repository = new FollowingRepository(loggerMoc.Object, context);

            var entity = new Following();

            entity.SetProperties(default(int), DateTime.Parse("1/1/1988 12:00:00 AM"), "B");
            await repository.Create(entity);

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

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

            Following entity = new Following();

            context.Set <Following>().Add(entity);
            await context.SaveChangesAsync();

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

            record.Should().NotBeNull();
        }
        public async void Get()
        {
            Mock <ILogger <FollowingRepository> > loggerMoc = FollowingRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = FollowingRepositoryMoc.GetContext();
            var repository = new FollowingRepository(loggerMoc.Object, context);

            Following entity = new Following();

            entity.SetProperties(default(int), DateTime.Parse("1/1/1988 12:00:00 AM"), "B");
            context.Set <Following>().Add(entity);
            await context.SaveChangesAsync();

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

            record.Should().NotBeNull();
        }
Example #8
0
        public async void Delete()
        {
            Mock <ILogger <FollowingRepository> > loggerMoc = FollowingRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = FollowingRepositoryMoc.GetContext();
            var       repository         = new FollowingRepository(loggerMoc.Object, context);
            Following entity             = new Following();

            context.Set <Following>().Add(entity);
            await context.SaveChangesAsync();

            await repository.Delete(entity.UserId);

            Following modifiedRecord = await context.Set <Following>().FirstOrDefaultAsync();

            modifiedRecord.Should().BeNull();
        }
Example #9
0
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <FollowingRepository> > loggerMoc = FollowingRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = FollowingRepositoryMoc.GetContext();
            var       repository         = new FollowingRepository(loggerMoc.Object, context);
            Following entity             = new Following();

            context.Set <Following>().Add(entity);
            await context.SaveChangesAsync();

            await repository.Update(new Following());

            var modifiedRecord = context.Set <Following>().FirstOrDefaultAsync();

            modifiedRecord.Should().NotBeNull();
        }
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <FollowingRepository> > loggerMoc = FollowingRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = FollowingRepositoryMoc.GetContext();
            var       repository         = new FollowingRepository(loggerMoc.Object, context);
            Following entity             = new Following();

            entity.SetProperties(default(int), DateTime.Parse("1/1/1988 12:00:00 AM"), "B");
            context.Set <Following>().Add(entity);
            await context.SaveChangesAsync();

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

            await repository.Update(entity);

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

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