Example #1
0
        public async void Migrate()
        {
            var deviceItem1 = new Device();

            deviceItem1.SetProperties(1, "A", Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"));
            this.context.Devices.Add(deviceItem1);

            var deviceActionItem1 = new DeviceAction();

            deviceActionItem1.SetProperties(1, 1, "A", "A");
            this.context.DeviceActions.Add(deviceActionItem1);

            await this.context.SaveChangesAsync();
        }
Example #2
0
        public virtual async Task Migrate()
        {
            var deviceItem1 = new Device();

            deviceItem1.SetProperties(1, DateTime.Parse("1/1/1987 12:00:00 AM"), true, "A", Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"));
            this.Context.Devices.Add(deviceItem1);

            var deviceActionItem1 = new DeviceAction();

            deviceActionItem1.SetProperties(1, "A", 1, "A");
            this.Context.DeviceActions.Add(deviceActionItem1);

            await this.Context.SaveChangesAsync();
        }
Example #3
0
        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);
        }
Example #4
0
        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();

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

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

            record.Should().NotBeNull();
        }
Example #5
0
        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);
        }
Example #6
0
        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);
        }