diff --git a/AsbCloudWebApi.IntegrationTests/Clients/IWellOperationClient.cs b/AsbCloudWebApi.IntegrationTests/Clients/IWellOperationClient.cs index 84906a77..b9e63518 100644 --- a/AsbCloudWebApi.IntegrationTests/Clients/IWellOperationClient.cs +++ b/AsbCloudWebApi.IntegrationTests/Clients/IWellOperationClient.cs @@ -19,7 +19,7 @@ public interface IWellOperationClient Task> UpdateRangeAsync(int idWell, [Body] IEnumerable dtos); [Get(BaseRoute)] - Task>> GetPageOperationsPlanAsync(int idWell, [Query] WellOperationRequestBase request); + Task>> GetPageOperationsAsync(int idWell, [Query] WellOperationRequestBase request); [Multipart] [Post(BaseRoute + "/parse/{idType}")] diff --git a/AsbCloudWebApi.IntegrationTests/Controllers/WellOperations/WellOperationControllerTest.cs b/AsbCloudWebApi.IntegrationTests/Controllers/WellOperations/WellOperationControllerTest.cs index 4d6dd3c0..1a700189 100644 --- a/AsbCloudWebApi.IntegrationTests/Controllers/WellOperations/WellOperationControllerTest.cs +++ b/AsbCloudWebApi.IntegrationTests/Controllers/WellOperations/WellOperationControllerTest.cs @@ -89,9 +89,12 @@ public class WellOperationControllerTest : BaseIntegrationTest /// /// [Fact] - public async Task GetPageOperationsPlanAsync_returns_success() + public async Task GetPageOperationsAsync_returns_first_page() { //arrange + const int pageSize = 10; + const int pageIndex = 0; + var well = await dbContext.Wells.FirstAsync(); var entity = CreateWellOperation(well.Id); dbContext.WellOperations.Add(entity); @@ -104,17 +107,22 @@ public class WellOperationControllerTest : BaseIntegrationTest var request = new WellOperationRequestBase { - OperationType = WellOperation.IdOperationTypePlan + OperationType = WellOperation.IdOperationTypePlan, + Skip = pageIndex, + Take = pageSize, }; //act - var response = await client.GetPageOperationsPlanAsync(well.Id, request); + var response = await client.GetPageOperationsAsync(well.Id, request); //assert Assert.Equal(response.StatusCode, HttpStatusCode.OK); Assert.NotNull(response.Content); - Assert.Single(response.Content.Items); + var totalExpected = response.Content.Count - pageSize * pageIndex; + Assert.Equal(totalExpected, response.Content.Items.Count()); + + Assert.Single(response.Content.Items); var actualDto = response.Content.Items.First(); MatchHelper.Match(dto, actualDto);