From 550d7e68e3b3069dabe974562a3ccd0665191c11 Mon Sep 17 00:00:00 2001 From: stasex Date: Tue, 21 Nov 2023 00:43:52 +0200 Subject: [PATCH 1/2] removed the addition to the database in the product search method. Also changed the unit tests --- .../Services/ProductService.cs | 12 ------------ ShoppingAssistantApi.UnitTests/ProductTests.cs | 10 ---------- 2 files changed, 22 deletions(-) diff --git a/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs b/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs index a6f6ce1..24ad71f 100644 --- a/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs +++ b/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs @@ -144,18 +144,6 @@ public class ProductService : IProductService Data = productBuffer.Name }; productBuffer.Name = string.Empty; - - //a complete description of the entity when the Amazon API is connected - await _wishlistsService.AddProductToPersonalWishlistAsync(wishlistId, new ProductCreateDto() - { - Url = "", - Name = productBuffer.Name, - Rating = 0, - Description = "", - Price = 0, - ImagesUrls = new []{"", ""}, - WasOpened = false - }, cancellationToken); break; } productBuffer.Name += data; diff --git a/ShoppingAssistantApi.UnitTests/ProductTests.cs b/ShoppingAssistantApi.UnitTests/ProductTests.cs index 9887d90..808c6ce 100644 --- a/ShoppingAssistantApi.UnitTests/ProductTests.cs +++ b/ShoppingAssistantApi.UnitTests/ProductTests.cs @@ -216,14 +216,6 @@ public class ProductTests _messagesRepositoryMock.Setup(m => m.GetCountAsync(It.IsAny>>(), It.IsAny())) .ReturnsAsync(3); - - _wishListServiceMock - .Setup(w => w.AddProductToPersonalWishlistAsync( - It.IsAny(), It.IsAny(), It.IsAny())) - .Verifiable(); - - _wishListServiceMock.Setup(w => w.AddProductToPersonalWishlistAsync(wishlistId, It.IsAny(), cancellationToken)) - .Verifiable(); _wishListServiceMock .Setup(w => w.GetMessagesPageFromPersonalWishlistAsync( @@ -273,8 +265,6 @@ public class ProductTests Assert.NotNull(actualSseEvents); Assert.Equal(expectedMessages, receivedMessages); Assert.Equal(expectedSuggestions, receivedSuggestions); - _wishListServiceMock.Verify(w => w.AddProductToPersonalWishlistAsync( - It.IsAny(), It.IsAny(), It.IsAny()), Times.Exactly(3)); _wishListServiceMock.Verify(w => w.AddMessageToPersonalWishlistAsync( wishlistId, It.IsAny(), cancellationToken), Times.Once); } From b93e9a88ba35b9be61b67c8bd9f7cccacdaedf82 Mon Sep 17 00:00:00 2001 From: Mykhailo Bilodid Date: Tue, 21 Nov 2023 00:56:22 +0200 Subject: [PATCH 2/2] SA-196 test fixed --- ShoppingAssistantApi.Tests/Tests/WishlistsTests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ShoppingAssistantApi.Tests/Tests/WishlistsTests.cs b/ShoppingAssistantApi.Tests/Tests/WishlistsTests.cs index 6a3c3a0..ba709df 100644 --- a/ShoppingAssistantApi.Tests/Tests/WishlistsTests.cs +++ b/ShoppingAssistantApi.Tests/Tests/WishlistsTests.cs @@ -242,7 +242,7 @@ public class WishlistsTests : TestsBase query = @" mutation addProductToPersonalWishlist($wishlistId: String!, $dto: ProductCreateDtoInput!) { addProductToPersonalWishlist (wishlistId: $wishlistId, dto: $dto) { - url, name, description, rating, imagesUrls, wasOpened + url, name, price, description, rating, imagesUrls, wasOpened } }", variables = new @@ -254,6 +254,7 @@ public class WishlistsTests : TestsBase name = "Generic name", description = "Generic description", rating = 4.8, + price = 1, imagesUrls = new string[] { "https://www.amazon.com/image-url-1",