diff --git a/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs b/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs index c6ca80d..3ccb107 100644 --- a/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs +++ b/ShoppingAssistantApi.Infrastructure/Services/ProductService.cs @@ -172,18 +172,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.Tests/Tests/WishlistsTests.cs b/ShoppingAssistantApi.Tests/Tests/WishlistsTests.cs index 3ed5336..d1d0125 100644 --- a/ShoppingAssistantApi.Tests/Tests/WishlistsTests.cs +++ b/ShoppingAssistantApi.Tests/Tests/WishlistsTests.cs @@ -284,6 +284,7 @@ public class WishlistsTests : TestsBase price = 1, description = "Generic description", rating = 4.8, + price = 1, imagesUrls = new string[] { "https://www.amazon.com/image-url-1", diff --git a/ShoppingAssistantApi.UnitTests/ProductTests.cs b/ShoppingAssistantApi.UnitTests/ProductTests.cs index e5de43e..8a33cad 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); }