DD.WellWorkover.Cloud/AsbCloudWebApi.IntegrationTests/Controllers/ProcessMapPlan/Operations/ProcessMapPlanPositioningOffTheBottomControllerTest.cs

91 lines
2.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using AsbCloudApp.Repositories;
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;
using AsbCloudDb.Model.ProcessMapPlan.Operations;
using AsbCloudApp.Data.ProcessMaps.Operations;
namespace AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan.Operations;
/// <summary>
/// РТК план позиционирование над забоем
/// </summary>
public class ProcessMapPlanPositioningOffTheBottomControllerTest :
ProcessMapPlanBaseControllerTest<ProcessMapPlanPositioningOffTheBottom, ProcessMapPlanPositioningOffTheBottomDto>
{
public ProcessMapPlanPositioningOffTheBottomControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanPositioningOffTheBottom")
{
}
private readonly ProcessMapPlanPositioningOffTheBottomDto dto = new ProcessMapPlanPositioningOffTheBottomDto()
{
IdWell = 1,
DepthStart = 1,
DepthEnd = 2,
Id = 0,
IdWellSectionType = 1,
StopOffTheBottom = 1,
DifferentialPressure = 1,
FlowRateDown = 1,
FlowRateUp = 1,
Note = "1",
RopDown = 1,
RopUp = 1,
PressureMax = 1,
RpmDown = 1,
RpmUp = 1,
SlackingOff = 1,
Tight = 1,
TorqueMax = 1
};
private readonly ProcessMapPlanPositioningOffTheBottom entity = new ProcessMapPlanPositioningOffTheBottom()
{
IdWell = 1,
DepthEnd = 10,
DepthStart = 2,
Id = 0,
IdWellSectionType = 1,
IdAuthor = 1,
IdEditor = 1,
Creation = DateTimeOffset.UtcNow,
StopOffTheBottom = 1,
DifferentialPressure = 1,
FlowRateDown = 1,
FlowRateUp = 1,
Note = "1",
RopDown = 1,
RopUp = 1,
PressureMax = 1,
RpmDown = 1,
RpmUp = 1,
SlackingOff = 1,
Tight = 1,
TorqueMax = 1
};
[Fact]
public async Task Get_actual_returns_success()
{
await Get(entity, dto);
}
protected override ProcessMapPlanPositioningOffTheBottom GetByNote(DbSet<ProcessMapPlanPositioningOffTheBottom> dbSet, ProcessMapPlanPositioningOffTheBottomDto dto)
{
throw new NotImplementedException();
}
protected override ProcessMapPlanPositioningOffTheBottomDto GetByNote(IEnumerable<ProcessMapPlanPositioningOffTheBottomDto> dtos, ProcessMapPlanPositioningOffTheBottomDto dto)
{
throw new NotImplementedException();
}
protected override ProcessMapPlanPositioningOffTheBottom? GetByWellId()
{
throw new NotImplementedException();
}
}