forked from ddrilling/AsbCloudServer
77 lines
2.3 KiB
C#
77 lines
2.3 KiB
C#
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.Functions;
|
||
using AsbCloudApp.Data.ProcessMaps.Functions;
|
||
|
||
namespace AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan.Functions;
|
||
|
||
/// <summary>
|
||
/// РТК план дрилтест
|
||
/// </summary>
|
||
public class ProcessMapPlanDrillTestControllerTest :
|
||
ProcessMapPlanBaseControllerTest<ProcessMapPlanDrillTest, ProcessMapPlanDrillTestDto>
|
||
{
|
||
public ProcessMapPlanDrillTestControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanDrillTest")
|
||
{
|
||
}
|
||
private readonly ProcessMapPlanDrillTestDto dto = new ProcessMapPlanDrillTestDto()
|
||
{
|
||
IdWell = 1,
|
||
DepthStart = 1,
|
||
DepthEnd = 2,
|
||
Id = 0,
|
||
IdWellSectionType = 1,
|
||
LengthStep = 1,
|
||
Note = "1",
|
||
WeightOnBitMin = 1,
|
||
RpmMin = 1,
|
||
RpmStepsCount = 1,
|
||
WeightOnBitStepsCount = 1,
|
||
};
|
||
|
||
private readonly ProcessMapPlanDrillTest entity = new ProcessMapPlanDrillTest()
|
||
{
|
||
IdWell = 1,
|
||
DepthEnd = 10,
|
||
DepthStart = 2,
|
||
Id = 0,
|
||
IdWellSectionType = 1,
|
||
IdAuthor = 1,
|
||
IdEditor = 1,
|
||
Creation = DateTimeOffset.UtcNow,
|
||
LengthStep = 1,
|
||
Note = "1",
|
||
WeightOnBitMin = 1,
|
||
RpmMin = 1,
|
||
RpmStepsCount = 1,
|
||
WeightOnBitStepsCount = 1
|
||
};
|
||
|
||
[Fact]
|
||
public async Task Get_actual_returns_success()
|
||
{
|
||
await Get(entity, dto);
|
||
}
|
||
|
||
protected override ProcessMapPlanDrillTest GetByNote(DbSet<ProcessMapPlanDrillTest> dbSet, ProcessMapPlanDrillTestDto dto)
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
|
||
protected override ProcessMapPlanDrillTestDto GetByNote(IEnumerable<ProcessMapPlanDrillTestDto> dtos, ProcessMapPlanDrillTestDto dto)
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
|
||
protected override ProcessMapPlanDrillTest? GetByWellId()
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
} |