forked from ddrilling/AsbCloudServer
79 lines
2.5 KiB
C#
79 lines
2.5 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 ProcessMapPlanFunctionsDrillTestControllerTest :
|
||
ProcessMapPlanBaseControllerTest<ProcessMapPlanFunctionsDrillTest, ProcessMapPlanFunctionsDrillTestDto>
|
||
{
|
||
public ProcessMapPlanFunctionsDrillTestControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanFunctionsDrillTest")
|
||
{
|
||
}
|
||
private readonly ProcessMapPlanFunctionsDrillTestDto dto = new ProcessMapPlanFunctionsDrillTestDto()
|
||
{
|
||
IdWell = 1,
|
||
DepthStart = 1,
|
||
DepthEnd = 2,
|
||
Id = 0,
|
||
IdWellSectionType = 1,
|
||
IdAutostartOrWarning = true,
|
||
LengthStep = 1,
|
||
Note = "1",
|
||
NumberOfStepsBit = 1,
|
||
NumberOfStepsRPM = 1,
|
||
RevolutionPerMinuteMin = 1,
|
||
WeightOnBitMin = 1
|
||
};
|
||
|
||
private readonly ProcessMapPlanFunctionsDrillTest entity = new ProcessMapPlanFunctionsDrillTest()
|
||
{
|
||
IdWell = 1,
|
||
DepthEnd = 10,
|
||
DepthStart = 2,
|
||
Id = 0,
|
||
IdWellSectionType = 1,
|
||
IdAuthor = 1,
|
||
IdEditor = 1,
|
||
Creation = DateTimeOffset.UtcNow,
|
||
IdAutostartOrWarning = true,
|
||
LengthStep = 1,
|
||
Note = "1",
|
||
NumberOfStepsBit = 1,
|
||
NumberOfStepsRPM = 1,
|
||
RevolutionPerMinuteMin = 1,
|
||
WeightOnBitMin = 1
|
||
};
|
||
|
||
[Fact]
|
||
public async Task Get_actual_returns_success()
|
||
{
|
||
await Get(entity, dto);
|
||
}
|
||
|
||
protected override ProcessMapPlanFunctionsDrillTest GetByNote(DbSet<ProcessMapPlanFunctionsDrillTest> dbSet, ProcessMapPlanFunctionsDrillTestDto dto)
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
|
||
protected override ProcessMapPlanFunctionsDrillTestDto GetByNote(IEnumerable<ProcessMapPlanFunctionsDrillTestDto> dtos, ProcessMapPlanFunctionsDrillTestDto dto)
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
|
||
protected override ProcessMapPlanFunctionsDrillTest? GetByWellId()
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
} |