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

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

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

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

            var entity = new Product();

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

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

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

            Product entity = new Product();

            entity.SetProperties(default(int), true, "B", "B", 2m, 2);
            context.Set <Product>().Add(entity);
            await context.SaveChangesAsync();

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

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

            entity.SetProperties(default(int), true, "B", "B", 2m, 2);
            context.Set <Product>().Add(entity);
            await context.SaveChangesAsync();

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

            await repository.Update(entity);

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

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