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

73 lines
2.3 KiB
C#
Raw Normal View History

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;
2024-06-30 13:13:33 +05:00
namespace AsbCloudWebApi.IntegrationTests.Controllers.ProcessMapPlan.Operations;
/// <summary>
/// РТК план выработка нагрузки
/// </summary>
2024-06-30 13:13:33 +05:00
public class ProcessMapPlanLoadCapacityControllerTest :
ProcessMapPlanBaseControllerTest<ProcessMapPlanLoadCapacity, ProcessMapPlanLoadCapacityDto>
{
2024-07-01 12:03:08 +05:00
public ProcessMapPlanLoadCapacityControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanLoadCapacity")
{
}
2024-06-30 13:13:33 +05:00
private readonly ProcessMapPlanLoadCapacityDto dto = new ProcessMapPlanLoadCapacityDto()
{
IdWell = 1,
DepthStart = 1,
DepthEnd = 2,
Id = 0,
IdWellSectionType = 1,
DifferentialPressureMin = 1,
Note = "2",
TimeLoadCapacityMin = 2,
WeightOnBitMin = 3,
};
2024-06-30 13:13:33 +05:00
private readonly ProcessMapPlanLoadCapacity entity = new ProcessMapPlanLoadCapacity()
{
IdWell = 1,
DepthEnd = 10,
DepthStart = 2,
Id = 0,
IdWellSectionType = 1,
IdAuthor = 1,
IdEditor = 1,
Creation = DateTimeOffset.UtcNow,
DifferentialPressureMin = 1,
Note = "2",
TimeLoadCapacityMin = 2,
WeightOnBitMin = 3,
};
[Fact]
public async Task Get_actual_returns_success()
{
await Get(entity, dto);
}
2024-06-30 13:13:33 +05:00
protected override ProcessMapPlanLoadCapacity GetByNote(DbSet<ProcessMapPlanLoadCapacity> dbSet, ProcessMapPlanLoadCapacityDto dto)
{
throw new NotImplementedException();
}
2024-06-30 13:13:33 +05:00
protected override ProcessMapPlanLoadCapacityDto GetByNote(IEnumerable<ProcessMapPlanLoadCapacityDto> dtos, ProcessMapPlanLoadCapacityDto dto)
{
throw new NotImplementedException();
}
2024-06-30 13:13:33 +05:00
protected override ProcessMapPlanLoadCapacity? GetByWellId()
{
throw new NotImplementedException();
}
}