2024-06-28 12:13:51 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMaps;
|
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Requests;
|
|
|
|
|
using AsbCloudApp.Services;
|
|
|
|
|
using AsbCloudDb.Model.ProcessMaps;
|
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Export;
|
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Parser;
|
|
|
|
|
using AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan;
|
|
|
|
|
using AsbCloudWebApi.IntegrationTests;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
2024-06-30 11:17:10 +05:00
|
|
|
|
namespace AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan.Operations;
|
2024-06-28 12:13:51 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план выставление
|
|
|
|
|
/// </summary>
|
2024-06-30 11:17:10 +05:00
|
|
|
|
public class ProcessMapPlanTFOrientationControllerTest :
|
|
|
|
|
ProcessMapPlanBaseControllerTest<ProcessMapPlanTFOrientation, ProcessMapPlanTFOrientationDto>
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
2024-06-30 11:17:10 +05:00
|
|
|
|
public ProcessMapPlanTFOrientationControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanOperationTFOrientation")
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
}
|
2024-06-30 11:17:10 +05:00
|
|
|
|
private readonly ProcessMapPlanTFOrientationDto dto = new ProcessMapPlanTFOrientationDto()
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
IdWell = 1,
|
|
|
|
|
DepthStart = 1,
|
|
|
|
|
DepthEnd = 2,
|
|
|
|
|
Id = 0,
|
|
|
|
|
IdWellSectionType = 1,
|
|
|
|
|
DifferentialPressure = 1,
|
|
|
|
|
Spring = 1
|
|
|
|
|
};
|
|
|
|
|
|
2024-06-30 11:17:10 +05:00
|
|
|
|
private readonly ProcessMapPlanTFOrientation entity = new ProcessMapPlanTFOrientation()
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
IdWell = 1,
|
|
|
|
|
DepthEnd = 10,
|
|
|
|
|
DepthStart = 2,
|
|
|
|
|
Id = 0,
|
|
|
|
|
IdWellSectionType = 1,
|
|
|
|
|
IdAuthor = 1,
|
|
|
|
|
IdEditor = 1,
|
|
|
|
|
Creation = DateTimeOffset.UtcNow,
|
|
|
|
|
DifferentialPressure = 1,
|
|
|
|
|
Spring = 1
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task Get_actual_returns_success()
|
|
|
|
|
{
|
|
|
|
|
await Get(entity, dto);
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-30 11:17:10 +05:00
|
|
|
|
protected override ProcessMapPlanTFOrientation GetByNote(DbSet<ProcessMapPlanTFOrientation> dbSet, ProcessMapPlanTFOrientationDto dto)
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-30 11:17:10 +05:00
|
|
|
|
protected override ProcessMapPlanTFOrientationDto GetByNote(IEnumerable<ProcessMapPlanTFOrientationDto> dtos, ProcessMapPlanTFOrientationDto dto)
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-30 11:17:10 +05:00
|
|
|
|
protected override ProcessMapPlanTFOrientation? GetByWellId()
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|