forked from ddrilling/AsbCloudServer
Merge branch 'dev' into fix/well-composite-duration-hours
This commit is contained in:
commit
4ebb17b963
@ -52,6 +52,11 @@ namespace AsbCloudInfrastructure
|
||||
{
|
||||
public static void MapsterSetup()
|
||||
{
|
||||
TypeAdapterConfig.GlobalSettings.Default.Config
|
||||
.ForType<SetpointsRequestDto, SetpointsRequest>()
|
||||
.Ignore(source => source.Author)
|
||||
.Ignore(source => source.Well);
|
||||
|
||||
TypeAdapterConfig.GlobalSettings.Default.Config
|
||||
.ForType<DetectedOperationDto, DetectedOperation>()
|
||||
.Ignore(source => source.OperationCategory);
|
||||
|
@ -53,7 +53,7 @@ namespace AsbCloudInfrastructure.Repository
|
||||
cacheEntry.AbsoluteExpirationRelativeToNow = CacheObsolescence;
|
||||
cacheEntry.SlidingExpiration = CacheObsolescence;
|
||||
|
||||
var entities = await this.GetQuery().ToArrayAsync(token);
|
||||
var entities = await GetQuery().AsNoTracking().ToArrayAsync(token);
|
||||
cacheEntry.Value = entities;
|
||||
return entities.AsEnumerable();
|
||||
});
|
||||
|
@ -8,6 +8,7 @@ using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using System.Threading;
|
||||
using System.Linq;
|
||||
using AsbCloudApp.Exceptions;
|
||||
|
||||
namespace AsbCloudInfrastructure.Repository
|
||||
{
|
||||
@ -23,26 +24,40 @@ namespace AsbCloudInfrastructure.Repository
|
||||
this.wellService = wellService;
|
||||
}
|
||||
|
||||
//TODO: заметка для рефакторинга. Использовать метод из базового репозитория
|
||||
public virtual async Task<int> UpdateRangeAsync(IEnumerable<SetpointsRequestDto> dtos, CancellationToken token)
|
||||
{
|
||||
var ids = dtos.Select(d => d.Id);
|
||||
var existingEntities = await dbSet
|
||||
.AsNoTracking()
|
||||
.Where(d => ids.Contains(d.Id))
|
||||
.Select(d => d.Id)
|
||||
.ToListAsync(token)
|
||||
.ConfigureAwait(false);
|
||||
if (!dtos.Any())
|
||||
return 0;
|
||||
|
||||
if (ids.Count() > existingEntities.Count)
|
||||
return ICrudRepository<SetpointsRequestDto>.ErrorIdNotFound;
|
||||
var ids = dtos
|
||||
.Select(o => o.Id)
|
||||
.Distinct()
|
||||
.ToArray();
|
||||
|
||||
foreach (var dto in dtos)
|
||||
{
|
||||
var entity = Convert(dto);
|
||||
var entry = dbSet.Update(entity);
|
||||
}
|
||||
if (ids.Any(id => id == default))
|
||||
throw new ArgumentInvalidException(nameof(dtos), "Все записи должны иметь Id");
|
||||
|
||||
if (ids.Length != dtos.Count())
|
||||
throw new ArgumentInvalidException(nameof(dtos), "Все записи должны иметь уникальные Id");
|
||||
|
||||
var existingEntitiesCount = await dbContext.Set<SetpointsRequest>()
|
||||
.Where(o => ids.Contains(o.Id))
|
||||
.CountAsync(token);
|
||||
|
||||
if (ids.Length != existingEntitiesCount)
|
||||
throw new ArgumentInvalidException(nameof(dtos), "Все записи должны существовать в БД");
|
||||
|
||||
var entities = dtos.Select(Convert);
|
||||
var entries = entities.Select(entity => dbContext.Set<SetpointsRequest>().Update(entity)).ToList();
|
||||
|
||||
var affected = await dbContext.SaveChangesAsync(token);
|
||||
|
||||
entries.ForEach(entry => entry.State = EntityState.Detached);
|
||||
|
||||
if(affected > 0)
|
||||
DropCache();
|
||||
|
||||
return affected;
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,6 @@
|
||||
using AsbCloudApp.Services;
|
||||
using AsbCloudDb.Model;
|
||||
using AsbCloudInfrastructure.Repository;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Caching.Memory;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
@ -63,16 +62,14 @@ namespace AsbCloudInfrastructure.Services.SAUB
|
||||
var filtered = all.Where(s =>
|
||||
s.IdWell == idWell &&
|
||||
s.IdState == 1 &&
|
||||
s.UploadDate.AddSeconds(s.ObsolescenceSec) > DateTime.UtcNow)
|
||||
.ToList();
|
||||
s.UploadDate.AddSeconds(s.ObsolescenceSec).UtcDateTime > DateTime.UtcNow)
|
||||
.ToArray();
|
||||
|
||||
if (!filtered.Any())
|
||||
return Enumerable.Empty<SetpointsRequestDto>();
|
||||
|
||||
foreach (var item in filtered)
|
||||
{
|
||||
item.IdState = 2;
|
||||
}
|
||||
|
||||
await setpointsRepository.UpdateRangeAsync(filtered, token);
|
||||
|
||||
|
12
AsbCloudWebApi.IntegrationTests/Clients/ISetpointsClient.cs
Normal file
12
AsbCloudWebApi.IntegrationTests/Clients/ISetpointsClient.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using AsbCloudApp.Data.SAUB;
|
||||
using Refit;
|
||||
|
||||
namespace AsbCloudWebApi.IntegrationTests.Clients;
|
||||
|
||||
public interface ISetpointsClient
|
||||
{
|
||||
private const string BaseRoute = "/api/telemetry/{uid}/Setpoints";
|
||||
|
||||
[Get(BaseRoute)]
|
||||
Task<IApiResponse<IEnumerable<SetpointsRequestDto>>> GetByTelemetryUidAsync(string uid);
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
using System.Net;
|
||||
using AsbCloudDb.Model;
|
||||
using AsbCloudWebApi.IntegrationTests.Clients;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Xunit;
|
||||
|
||||
namespace AsbCloudWebApi.IntegrationTests.Controllers;
|
||||
|
||||
public class SetpointsControllerTest : BaseIntegrationTest
|
||||
{
|
||||
private readonly ISetpointsClient client;
|
||||
|
||||
public SetpointsControllerTest(WebAppFactoryFixture factory)
|
||||
: base(factory)
|
||||
{
|
||||
client = factory.GetAuthorizedHttpClient<ISetpointsClient>(string.Empty);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task GetByTelemetryUidAsync_returns_success()
|
||||
{
|
||||
//arrange
|
||||
var well = await dbContext.Wells
|
||||
.Include(w => w.Telemetry)
|
||||
.FirstAsync();
|
||||
|
||||
var entity = new SetpointsRequest
|
||||
{
|
||||
IdWell = well.Id,
|
||||
UploadDate = DateTimeOffset.UtcNow,
|
||||
ObsolescenceSec = 15,
|
||||
IdState = 1,
|
||||
IdAuthor = 1
|
||||
};
|
||||
|
||||
var entry = dbContext.SetpointsRequests.Add(entity);
|
||||
await dbContext.SaveChangesAsync();
|
||||
entry.State = EntityState.Detached;
|
||||
|
||||
//act
|
||||
var response = await client.GetByTelemetryUidAsync(well.Telemetry!.RemoteUid);
|
||||
|
||||
//assert
|
||||
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
|
||||
Assert.NotNull(response.Content);
|
||||
Assert.Single(response.Content);
|
||||
|
||||
var setpoints = await dbContext.SetpointsRequests.ToArrayAsync();
|
||||
|
||||
foreach (var setpoint in setpoints)
|
||||
Assert.Equal(2, setpoint.IdState);
|
||||
}
|
||||
}
|
@ -26,9 +26,7 @@ namespace AsbCloudWebApi.Tests.Services.WellCompositeOperation
|
||||
= Substitute.For<IWellOperationRepository>();
|
||||
private IWellService wellService
|
||||
= Substitute.For<IWellService>();
|
||||
|
||||
|
||||
|
||||
private List<int> idsWells;
|
||||
private readonly static IEnumerable<WellOperationCategoryDto> operationCategories = new List<WellOperationCategoryDto>()
|
||||
{
|
||||
new(){Id = 5096, Name = "Шаблонирование перед спуском"},
|
||||
@ -47,6 +45,12 @@ namespace AsbCloudWebApi.Tests.Services.WellCompositeOperation
|
||||
new() {Id = 31, Caption = "Техническая колонна", Order = 2}
|
||||
};
|
||||
|
||||
private readonly static IEnumerable<WellDto> wells = new List<WellDto>()
|
||||
{
|
||||
new() {Id = 55, Caption = "Скважина с ключом 55"},
|
||||
new() {Id = 64, Caption = "Скважина с ключом 64"},
|
||||
};
|
||||
|
||||
private readonly static IEnumerable<WellOperationDto> wellOperations1 = new List<WellOperationDto>()
|
||||
{
|
||||
new()
|
||||
@ -162,6 +166,11 @@ namespace AsbCloudWebApi.Tests.Services.WellCompositeOperation
|
||||
wellOperationCategoryRepository.Get(Arg.Any<bool>())
|
||||
.Returns(operationCategories);
|
||||
|
||||
idsWells = new List<int>() { 55, 64 };
|
||||
|
||||
wellService.GetAsync(Arg.Any<WellRequest>(), Arg.Any<CancellationToken>())
|
||||
.Returns(wells);
|
||||
|
||||
service = new WellCompositeOperationService(
|
||||
wellSectionTypeRepository,
|
||||
wellOperationCategoryRepository,
|
||||
@ -182,10 +191,8 @@ namespace AsbCloudWebApi.Tests.Services.WellCompositeOperation
|
||||
wellOperationRepository.GetAsync(Arg.Any<WellOperationRequest>(), Arg.Any<CancellationToken>())
|
||||
.Returns(wellOperations1);
|
||||
|
||||
var idsWell = new List<int>() { 55, 64 };
|
||||
|
||||
// act
|
||||
var result = await service.GetAsync(idsWell, CancellationToken.None);
|
||||
var result = await service.GetAsync(idsWells, CancellationToken.None);
|
||||
|
||||
// assert
|
||||
var compositeWellOperations = result.WellOperationsComposite;
|
||||
@ -211,10 +218,8 @@ namespace AsbCloudWebApi.Tests.Services.WellCompositeOperation
|
||||
wellOperationRepository.GetAsync(Arg.Any<WellOperationRequest>(), Arg.Any<CancellationToken>())
|
||||
.Returns(wellOperations2);
|
||||
|
||||
var idsWell = new List<int>() { 55, 64 };
|
||||
|
||||
// act
|
||||
var result = await service.GetAsync(idsWell, CancellationToken.None);
|
||||
var result = await service.GetAsync(idsWells, CancellationToken.None);
|
||||
|
||||
// assert
|
||||
var compositeWellOperations = result.WellOperationsComposite;
|
||||
@ -237,10 +242,8 @@ namespace AsbCloudWebApi.Tests.Services.WellCompositeOperation
|
||||
wellOperationRepository.GetAsync(Arg.Any<WellOperationRequest>(), Arg.Any<CancellationToken>())
|
||||
.Returns(wellOperations3);
|
||||
|
||||
var idsWell = new List<int>() { 55, 64 };
|
||||
|
||||
// act
|
||||
var result = await service.GetAsync(idsWell, CancellationToken.None);
|
||||
var result = await service.GetAsync(idsWells, CancellationToken.None);
|
||||
|
||||
// assert
|
||||
var compositeWellOperations = result.WellOperationsComposite;
|
||||
@ -265,10 +268,8 @@ namespace AsbCloudWebApi.Tests.Services.WellCompositeOperation
|
||||
wellOperationRepository.GetAsync(Arg.Any<WellOperationRequest>(), Arg.Any<CancellationToken>())
|
||||
.Returns(wellOperations4);
|
||||
|
||||
var idsWell = new List<int>() { 55, 64 };
|
||||
|
||||
// act
|
||||
var result = await service.GetAsync(idsWell, CancellationToken.None);
|
||||
var result = await service.GetAsync(idsWells, CancellationToken.None);
|
||||
|
||||
// assert
|
||||
var compositeWellOperations = result.WellOperationsComposite;
|
||||
@ -297,10 +298,8 @@ namespace AsbCloudWebApi.Tests.Services.WellCompositeOperation
|
||||
wellOperationRepository.GetAsync(Arg.Any<WellOperationRequest>(), Arg.Any<CancellationToken>())
|
||||
.Returns(wellOperations);
|
||||
|
||||
var idsWell = new List<int>() { 55, 64 };
|
||||
|
||||
// act
|
||||
var result = await service.GetAsync(idsWell, CancellationToken.None);
|
||||
var result = await service.GetAsync(idsWells, CancellationToken.None);
|
||||
|
||||
// assert
|
||||
var wellOperationsCount = result.WellCompositeSourceOperations
|
||||
|
Loading…
Reference in New Issue
Block a user