forked from ddrilling/AsbCloudServer
77 lines
2.8 KiB
C#
77 lines
2.8 KiB
C#
|
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;
|
|||
|
|
|||
|
namespace AsbCloudWebApi.Controllers.ProcessMaps;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// РТК план определения углов осцилляции
|
|||
|
/// </summary>
|
|||
|
public class ProcessMapPlanOperationDeterminationOfOscillationAnglesControllerTest :
|
|||
|
ProcessMapPlanBaseControllerTest<ProcessMapPlanOperationDeterminationOfOscillationAngles, ProcessMapPlanOperationDeterminationOfOscillationAnglesDto>
|
|||
|
{
|
|||
|
public ProcessMapPlanOperationDeterminationOfOscillationAnglesControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanOperationDeterminationOfOscillationAngles")
|
|||
|
{
|
|||
|
}
|
|||
|
private readonly ProcessMapPlanOperationDeterminationOfOscillationAnglesDto dto = new ProcessMapPlanOperationDeterminationOfOscillationAnglesDto()
|
|||
|
{
|
|||
|
IdWell = 1,
|
|||
|
DepthStart = 1,
|
|||
|
DepthEnd = 2,
|
|||
|
Id = 0,
|
|||
|
IdWellSectionType = 1,
|
|||
|
DifferentialPressure = 1,
|
|||
|
MaxPressure = 2,
|
|||
|
Reaming1ROPDown = 3,
|
|||
|
Reaming1ROPUp = 4,
|
|||
|
SetpointsSlackingOff = 5,
|
|||
|
SetpointsTight = 6
|
|||
|
};
|
|||
|
|
|||
|
private readonly ProcessMapPlanOperationDeterminationOfOscillationAngles entity = new ProcessMapPlanOperationDeterminationOfOscillationAngles()
|
|||
|
{
|
|||
|
IdWell = 1,
|
|||
|
DepthEnd = 10,
|
|||
|
DepthStart = 2,
|
|||
|
Id = 0,
|
|||
|
IdWellSectionType = 1,
|
|||
|
IdAuthor = 1,
|
|||
|
IdEditor = 1,
|
|||
|
Creation = DateTimeOffset.UtcNow,
|
|||
|
DifferentialPressure = 1,
|
|||
|
MaxPressure = 2,
|
|||
|
Reaming1ROPDown = 3,
|
|||
|
Reaming1ROPUp = 4,
|
|||
|
SetpointsSlackingOff = 5,
|
|||
|
SetpointsTight = 6
|
|||
|
};
|
|||
|
|
|||
|
[Fact]
|
|||
|
public async Task Get_actual_returns_success()
|
|||
|
{
|
|||
|
await Get(entity, dto);
|
|||
|
}
|
|||
|
|
|||
|
protected override ProcessMapPlanOperationDeterminationOfOscillationAngles GetByNote(DbSet<ProcessMapPlanOperationDeterminationOfOscillationAngles> dbSet, ProcessMapPlanOperationDeterminationOfOscillationAnglesDto dto)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
protected override ProcessMapPlanOperationDeterminationOfOscillationAnglesDto GetByNote(IEnumerable<ProcessMapPlanOperationDeterminationOfOscillationAnglesDto> dtos, ProcessMapPlanOperationDeterminationOfOscillationAnglesDto dto)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
protected override ProcessMapPlanOperationDeterminationOfOscillationAngles? GetByWellId()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|