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 ProcessMapPlanSwitchingOffThePumpControllerTest :
      ProcessMapPlanBaseControllerTest<ProcessMapPlanSwitchingOffThePump, ProcessMapPlanSwitchingOffThePumpDto>
{
    public ProcessMapPlanSwitchingOffThePumpControllerTest(WebAppFactoryFixture factory) : base(factory, "ProcessMapPlanSwitchingOffThePump")
    {
    }
    private readonly ProcessMapPlanSwitchingOffThePumpDto dto = new ProcessMapPlanSwitchingOffThePumpDto()
    {
        IdWell = 1,
        DepthStart = 1,
        DepthEnd = 2,
        Id = 0,
        IdWellSectionType = 1,
        Duration = 1,
        ResidualPressureLimit = 1,
        Note = "5"
    };

    private readonly ProcessMapPlanSwitchingOffThePump entity = new ProcessMapPlanSwitchingOffThePump()
    {
        IdWell = 1,
        DepthEnd = 10,
        DepthStart = 2,
        Id = 0,
        IdWellSectionType = 1,
        IdAuthor = 1,
        IdEditor = 1,
        Creation = DateTimeOffset.UtcNow,
        Duration = 1,
        ResidualPressureLimit = 1,
        Note = "5"
    };

    [Fact]
    public async Task Get_actual_returns_success()
    {
        await Get(entity, dto);
    }

    protected override ProcessMapPlanSwitchingOffThePump GetByNote(DbSet<ProcessMapPlanSwitchingOffThePump> dbSet, ProcessMapPlanSwitchingOffThePumpDto dto)
    {
        throw new NotImplementedException();
    }

    protected override ProcessMapPlanSwitchingOffThePumpDto GetByNote(IEnumerable<ProcessMapPlanSwitchingOffThePumpDto> dtos, ProcessMapPlanSwitchingOffThePumpDto dto)
    {
        throw new NotImplementedException();
    }

    protected override ProcessMapPlanSwitchingOffThePump? GetByWellId()
    {
        throw new NotImplementedException();
    }
}