2024-06-30 21:02:55 +05:00
|
|
|
|
using AsbCloudApp.Repositories;
|
2024-06-28 15:48:44 +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 15:48:44 +05:00
|
|
|
|
|
2024-07-01 12:03:08 +05:00
|
|
|
|
namespace AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan.Operations;
|
2024-06-28 15:48:44 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план определения углов осцилляции
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ProcessMapPlanOscillationAnglesControllerTest :
|
|
|
|
|
ProcessMapPlanBaseControllerTest<ProcessMapPlanOscillationAngles, ProcessMapPlanOscillationAnglesDto>
|
|
|
|
|
{
|
|
|
|
|
public ProcessMapPlanOscillationAnglesControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanOscillationAngles")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
private readonly ProcessMapPlanOscillationAnglesDto dto = new ProcessMapPlanOscillationAnglesDto()
|
|
|
|
|
{
|
|
|
|
|
IdWell = 1,
|
|
|
|
|
DepthStart = 1,
|
|
|
|
|
DepthEnd = 2,
|
|
|
|
|
Id = 0,
|
|
|
|
|
IdWellSectionType = 1,
|
2024-07-01 12:03:08 +05:00
|
|
|
|
Note = "1",
|
|
|
|
|
Rpm = 1,
|
|
|
|
|
RpmMax = 2,
|
|
|
|
|
TopDriveTorque = 2,
|
|
|
|
|
TopDriveTorqueMax = 3,
|
2024-06-28 15:48:44 +05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private readonly ProcessMapPlanOscillationAngles entity = new ProcessMapPlanOscillationAngles()
|
|
|
|
|
{
|
|
|
|
|
IdWell = 1,
|
|
|
|
|
DepthEnd = 10,
|
|
|
|
|
DepthStart = 2,
|
|
|
|
|
Id = 0,
|
|
|
|
|
IdWellSectionType = 1,
|
|
|
|
|
IdAuthor = 1,
|
|
|
|
|
IdEditor = 1,
|
|
|
|
|
Creation = DateTimeOffset.UtcNow,
|
2024-07-01 12:03:08 +05:00
|
|
|
|
Note = "1",
|
|
|
|
|
Rpm = 1,
|
|
|
|
|
RpmMax = 2,
|
|
|
|
|
TopDriveTorque = 2,
|
|
|
|
|
TopDriveTorqueMax = 3,
|
2024-06-28 15:48:44 +05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async Task Get_actual_returns_success()
|
|
|
|
|
{
|
|
|
|
|
await Get(entity, dto);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override ProcessMapPlanOscillationAngles GetByNote(DbSet<ProcessMapPlanOscillationAngles> dbSet, ProcessMapPlanOscillationAnglesDto dto)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override ProcessMapPlanOscillationAnglesDto GetByNote(IEnumerable<ProcessMapPlanOscillationAnglesDto> dtos, ProcessMapPlanOscillationAnglesDto dto)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override ProcessMapPlanOscillationAngles? GetByWellId()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|