mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
Merge pull request #19 from Shchoholiev/bug/SA-196-fix-adding-all-products
bug/SA-196-fix-adding-all-products
This commit is contained in:
commit
1fcda176ce
@ -172,18 +172,6 @@ public class ProductService : IProductService
|
|||||||
Data = productBuffer.Name
|
Data = productBuffer.Name
|
||||||
};
|
};
|
||||||
productBuffer.Name = string.Empty;
|
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;
|
break;
|
||||||
}
|
}
|
||||||
productBuffer.Name += data;
|
productBuffer.Name += data;
|
||||||
|
@ -284,6 +284,7 @@ public class WishlistsTests : TestsBase
|
|||||||
price = 1,
|
price = 1,
|
||||||
description = "Generic description",
|
description = "Generic description",
|
||||||
rating = 4.8,
|
rating = 4.8,
|
||||||
|
price = 1,
|
||||||
imagesUrls = new string[]
|
imagesUrls = new string[]
|
||||||
{
|
{
|
||||||
"https://www.amazon.com/image-url-1",
|
"https://www.amazon.com/image-url-1",
|
||||||
|
@ -216,14 +216,6 @@ public class ProductTests
|
|||||||
|
|
||||||
_messagesRepositoryMock.Setup(m => m.GetCountAsync(It.IsAny<Expression<Func<Message, bool>>>(), It.IsAny<CancellationToken>()))
|
_messagesRepositoryMock.Setup(m => m.GetCountAsync(It.IsAny<Expression<Func<Message, bool>>>(), It.IsAny<CancellationToken>()))
|
||||||
.ReturnsAsync(3);
|
.ReturnsAsync(3);
|
||||||
|
|
||||||
_wishListServiceMock
|
|
||||||
.Setup(w => w.AddProductToPersonalWishlistAsync(
|
|
||||||
It.IsAny<string>(), It.IsAny<ProductCreateDto>(), It.IsAny<CancellationToken>()))
|
|
||||||
.Verifiable();
|
|
||||||
|
|
||||||
_wishListServiceMock.Setup(w => w.AddProductToPersonalWishlistAsync(wishlistId, It.IsAny<ProductCreateDto>(), cancellationToken))
|
|
||||||
.Verifiable();
|
|
||||||
|
|
||||||
_wishListServiceMock
|
_wishListServiceMock
|
||||||
.Setup(w => w.GetMessagesPageFromPersonalWishlistAsync(
|
.Setup(w => w.GetMessagesPageFromPersonalWishlistAsync(
|
||||||
@ -273,8 +265,6 @@ public class ProductTests
|
|||||||
Assert.NotNull(actualSseEvents);
|
Assert.NotNull(actualSseEvents);
|
||||||
Assert.Equal(expectedMessages, receivedMessages);
|
Assert.Equal(expectedMessages, receivedMessages);
|
||||||
Assert.Equal(expectedSuggestions, receivedSuggestions);
|
Assert.Equal(expectedSuggestions, receivedSuggestions);
|
||||||
_wishListServiceMock.Verify(w => w.AddProductToPersonalWishlistAsync(
|
|
||||||
It.IsAny<string>(), It.IsAny<ProductCreateDto>(), It.IsAny<CancellationToken>()), Times.Exactly(3));
|
|
||||||
_wishListServiceMock.Verify(w => w.AddMessageToPersonalWishlistAsync(
|
_wishListServiceMock.Verify(w => w.AddMessageToPersonalWishlistAsync(
|
||||||
wishlistId, It.IsAny<MessageDto>(), cancellationToken), Times.Once);
|
wishlistId, It.IsAny<MessageDto>(), cancellationToken), Times.Once);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user