2024-07-04 11:02:45 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMaps.Functions;
|
2024-06-28 12:13:51 +05:00
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Requests;
|
|
|
|
|
using AsbCloudApp.Services;
|
2024-06-30 21:02:55 +05:00
|
|
|
|
using AsbCloudDb.Model.ProcessMapPlan.Functions;
|
2024-06-28 12:13:51 +05:00
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Export;
|
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Parser;
|
|
|
|
|
using AsbCloudWebApi.IntegrationTests;
|
|
|
|
|
using AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
2024-07-01 12:03:08 +05:00
|
|
|
|
namespace AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan.Functions;
|
2024-06-28 12:13:51 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план автоудержание
|
|
|
|
|
/// </summary>
|
2024-06-29 21:32:53 +05:00
|
|
|
|
public class ProcessMapPlanAutoHoldTFControllerTest :
|
|
|
|
|
ProcessMapPlanBaseControllerTest<ProcessMapPlanAutoHoldTF, ProcessMapPlanAutoHoldTFDto>
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
2024-07-01 12:03:08 +05:00
|
|
|
|
public ProcessMapPlanAutoHoldTFControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanAutoHoldTF")
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
}
|
2024-06-29 21:32:53 +05:00
|
|
|
|
private readonly ProcessMapPlanAutoHoldTFDto dto = new ProcessMapPlanAutoHoldTFDto()
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
IdWell = 1,
|
|
|
|
|
DepthStart = 1,
|
|
|
|
|
DepthEnd = 2,
|
|
|
|
|
Id = 0,
|
|
|
|
|
IdWellSectionType = 1,
|
|
|
|
|
Note = "1",
|
|
|
|
|
ZenithAngle = 2,
|
|
|
|
|
};
|
|
|
|
|
|
2024-06-29 21:32:53 +05:00
|
|
|
|
private readonly ProcessMapPlanAutoHoldTF entity = new ProcessMapPlanAutoHoldTF()
|
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,
|
|
|
|
|
Note = "1",
|
|
|
|
|
ZenithAngle = 2,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task Get_actual_returns_success()
|
|
|
|
|
{
|
|
|
|
|
await Get(entity, dto);
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-29 21:32:53 +05:00
|
|
|
|
protected override ProcessMapPlanAutoHoldTF GetByNote(DbSet<ProcessMapPlanAutoHoldTF> dbSet, ProcessMapPlanAutoHoldTFDto dto)
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-29 21:32:53 +05:00
|
|
|
|
protected override ProcessMapPlanAutoHoldTFDto GetByNote(IEnumerable<ProcessMapPlanAutoHoldTFDto> dtos, ProcessMapPlanAutoHoldTFDto dto)
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-29 21:32:53 +05:00
|
|
|
|
protected override ProcessMapPlanAutoHoldTF? GetByWellId()
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|