2024-06-30 21:02:55 +05:00
|
|
|
|
using AsbCloudApp.Repositories;
|
2024-06-28 12:13:51 +05:00
|
|
|
|
using AsbCloudApp.Requests;
|
|
|
|
|
using AsbCloudApp.Services;
|
|
|
|
|
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 21:02:55 +05:00
|
|
|
|
using AsbCloudDb.Model.ProcessMapPlan.Operations;
|
|
|
|
|
using AsbCloudApp.Data.ProcessMaps.Operations;
|
2024-06-28 12:13:51 +05:00
|
|
|
|
|
2024-06-30 13:53:31 +05:00
|
|
|
|
namespace AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan.Operations;
|
2024-06-28 12:13:51 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план встряхивание бурового инструмента
|
|
|
|
|
/// </summary>
|
2024-06-30 13:53:31 +05:00
|
|
|
|
public class ProcessMapPlanRotorRpmAccelerationControllerTest :
|
2024-06-30 23:43:11 +05:00
|
|
|
|
ProcessMapPlanBaseControllerTest<ProcessMapPlanRotorRpmAcceleration, ProcessMapPlanRotorRpmAccelerationDto>
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
2024-06-30 13:53:31 +05:00
|
|
|
|
public ProcessMapPlanRotorRpmAccelerationControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanFunctionsJarrDrillTool")
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
}
|
2024-06-30 23:43:11 +05:00
|
|
|
|
private readonly ProcessMapPlanRotorRpmAccelerationDto dto = new ProcessMapPlanRotorRpmAccelerationDto()
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
IdWell = 1,
|
|
|
|
|
DepthStart = 1,
|
|
|
|
|
DepthEnd = 2,
|
|
|
|
|
Id = 0,
|
|
|
|
|
IdWellSectionType = 1,
|
|
|
|
|
Buckling = 1,
|
|
|
|
|
Note = "1",
|
|
|
|
|
ZenithAngle = 1,
|
|
|
|
|
};
|
|
|
|
|
|
2024-06-30 13:53:31 +05:00
|
|
|
|
private readonly ProcessMapPlanRotorRpmAcceleration entity = new ProcessMapPlanRotorRpmAcceleration()
|
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,
|
|
|
|
|
Buckling = 1,
|
|
|
|
|
Note = "1",
|
|
|
|
|
ZenithAngle = 1,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task Get_actual_returns_success()
|
|
|
|
|
{
|
|
|
|
|
await Get(entity, dto);
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-30 23:43:11 +05:00
|
|
|
|
protected override ProcessMapPlanRotorRpmAcceleration GetByNote(DbSet<ProcessMapPlanRotorRpmAcceleration> dbSet, ProcessMapPlanRotorRpmAccelerationDto dto)
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-30 23:43:11 +05:00
|
|
|
|
protected override ProcessMapPlanRotorRpmAccelerationDto GetByNote(IEnumerable<ProcessMapPlanRotorRpmAccelerationDto> dtos, ProcessMapPlanRotorRpmAccelerationDto dto)
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-30 13:53:31 +05:00
|
|
|
|
protected override ProcessMapPlanRotorRpmAcceleration? GetByWellId()
|
2024-06-28 12:13:51 +05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|