diff --git a/ShoppingAssistantApi.UnitTests/OpenAiServiceTests.cs b/ShoppingAssistantApi.UnitTests/OpenAiServiceTests.cs index d9dffd9..00c4ead 100644 --- a/ShoppingAssistantApi.UnitTests/OpenAiServiceTests.cs +++ b/ShoppingAssistantApi.UnitTests/OpenAiServiceTests.cs @@ -1,4 +1,5 @@ using System.Net; +using Microsoft.Extensions.Logging; using Moq; using Moq.Protected; using ShoppingAssistantApi.Application.IServices; @@ -31,7 +32,7 @@ public class OpenAiServiceTests return client; }); - _openAiService = new OpenAiService(_mockHttpClientFactory.Object); + _openAiService = new OpenAiService(_mockHttpClientFactory.Object, new Mock>().Object); } [Fact] @@ -78,7 +79,7 @@ public class OpenAiServiceTests { new OpenAiMessage { - Role = OpenAiRole.User.RequestConvert(), + Role = OpenAiRole.User.ToRequestString(), Content = "Return Hello World!" } } diff --git a/ShoppingAssistantApi.UnitTests/ProductTests.cs b/ShoppingAssistantApi.UnitTests/ProductTests.cs index 8a33cad..db78900 100644 --- a/ShoppingAssistantApi.UnitTests/ProductTests.cs +++ b/ShoppingAssistantApi.UnitTests/ProductTests.cs @@ -1,4 +1,6 @@ -using Moq; +using Microsoft.Extensions.Logging; +using MongoDB.Bson; +using Moq; using ShoppingAssistantApi.Application.IRepositories; using ShoppingAssistantApi.Application.IServices; using ShoppingAssistantApi.Application.Models.CreateDtos; @@ -27,14 +29,14 @@ public class ProductTests _messagesRepositoryMock = new Mock(); _openAiServiceMock = new Mock(); _wishListServiceMock = new Mock(); - _productService = new ProductService(_openAiServiceMock.Object, _wishListServiceMock.Object, _messagesRepositoryMock.Object); + _productService = new ProductService(_openAiServiceMock.Object, _wishListServiceMock.Object, _messagesRepositoryMock.Object, new Mock>().Object); } [Fact] public async Task SearchProductAsync_WhenWishlistsWithoutMessages_ReturnsExpectedEvents() { // Arrange - string wishlistId = "existingWishlistId"; + string wishlistId = "657657677c13ae4bc95e2f41"; var message = new MessageCreateDto { Text = "Your message text here" @@ -44,47 +46,28 @@ public class ProductTests // Define your expected SSE data for the test var expectedSseData = new List { - "[", "Message", "]", " What", " u", " want", " ?", "[", "Options", "]", " USB-C", " ;", " Keyboard", " ultra", - " ;", "[", "Options", "]", " USB", "-C", " ;", "[", "Products", "]", " GTX", " 3090", " ;", " GTX", + "[", "Message", "]", " What", " u", " want", " ?", "[", "Suggestions", "]", " USB-C", " ;", " Keyboard", " ultra", + " ;", "[", "Suggestions", "]", " USB", "-C", " ;", "[", "Products", "]", " GTX", " 3090", " ;", " GTX", " 3070TI", " ;", " GTX", " 4070TI", " ;", " ?", "[", "Message", "]", " What", " u", " want", " ?" }; var expectedMessages = new List { " What", " u", " want", " ?", " What", " u", " want", " ?" }; - var expectedSuggestion = new List { " USB-C", " Keyboard ultra", " USB-C" }; + var expectedSuggestion = new List { "USB-C", "Keyboard ultra", "USB-C" }; // Mock the GetChatCompletionStream method to provide the expected SSE data _openAiServiceMock.Setup(x => x.GetChatCompletionStream(It.IsAny(), cancellationToken)) .Returns(expectedSseData.ToAsyncEnumerable()); - _messagesRepositoryMock.Setup(m => m.GetCountAsync(It.IsAny>>(), It.IsAny())) - .ReturnsAsync(1); - - _wishListServiceMock.Setup(w => w.AddMessageToPersonalWishlistAsync(wishlistId, It.IsAny(), cancellationToken)) - .Verifiable(); - - _wishListServiceMock - .Setup(m => m.GetMessagesPageFromPersonalWishlistAsync( - It.IsAny(), - It.IsAny(), - It.IsAny(), - It.IsAny()) - ) - .ReturnsAsync(new PagedList( - new List + _messagesRepositoryMock.Setup(m => m.GetWishlistMessagesAsync(It.IsAny(), It.IsAny())) + .ReturnsAsync(new List { - new MessageDto + new() { Text = "What are you looking for?", - Id = "3", - CreatedById = "User2", Role = "User" }, - }, - 1, - 1, - 1 - )); - + }); + // Act var resultStream = _productService.SearchProductAsync(wishlistId, message, cancellationToken); @@ -113,7 +96,7 @@ public class ProductTests public async void SearchProductAsync_WithExistingMessageInWishlist_ReturnsExpectedEvents() { // Arrange - var wishlistId = "your_wishlist_id"; + var wishlistId = "657657677c13ae4bc95e2f41"; var message = new MessageCreateDto { Text = "Your message text" }; var cancellationToken = new CancellationToken(); @@ -121,8 +104,8 @@ public class ProductTests var expectedSseData = new List { - "[", "Message", "]", " What", " u", " want", " ?", "[", "Options", "]", "USB-C", " ;", "Keyboard", " ultra", - " ;", "[", "Options", "]", "USB", "-C", " ;" + "[", "Message", "]", " What", " u", " want", " ?", "[", "Suggestions", "]", "USB-C", " ;", "Keyboard", " ultra", + " ;", "[", "Suggestions", "]", "USB", "-C", " ;" }; var expectedMessages = new List { " What", " u", " want", " ?" }; @@ -131,40 +114,25 @@ public class ProductTests // Mock the GetChatCompletionStream method to provide the expected SSE data _openAiServiceMock.Setup(x => x.GetChatCompletionStream(It.IsAny(), cancellationToken)) .Returns(expectedSseData.ToAsyncEnumerable()); - - _messagesRepositoryMock.Setup(m => m.GetCountAsync(It.IsAny>>(), It.IsAny())) - .ReturnsAsync(3); - _wishListServiceMock.Setup(w => w.AddMessageToPersonalWishlistAsync(wishlistId, It.IsAny(), cancellationToken)) - .Verifiable(); - - _wishListServiceMock - .Setup(w => w.GetMessagesPageFromPersonalWishlistAsync( - It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())) - .ReturnsAsync(new PagedList(new List - { - new MessageDto + _messagesRepositoryMock.Setup(m => m.GetWishlistMessagesAsync(It.IsAny(), It.IsAny())) + .ReturnsAsync(new List { - Text = "Message 1", - Id = "1", - CreatedById = "User2", - Role = "User" - }, - new MessageDto - { - Text = "Message 2", - Id = "2", - CreatedById = "User2", - Role = "User" - }, - new MessageDto - { - Text = "Message 3", - Id = "3", - CreatedById = "User2", - Role = "User" - }, - }, 1, 3, 3)); + new() { + Text = "Message 1", + Role = "User" + }, + new Message + { + Text = "Message 2", + Role = "User" + }, + new Message + { + Text = "Message 3", + Role = "User" + }, + }); // Act var resultStream = _productService.SearchProductAsync(wishlistId, message, cancellationToken); @@ -186,7 +154,6 @@ public class ProductTests Assert.NotNull(actualSseEvents); Assert.Equal(expectedMessages, receivedMessages); Assert.Equal(expectedSuggestions, receivedSuggestions); - _wishListServiceMock.Verify(w => w.AddMessageToPersonalWishlistAsync(wishlistId, It.IsAny(), cancellationToken), Times.Once); } @@ -194,7 +161,7 @@ public class ProductTests public async void SearchProductAsync_WithExistingMessageInWishlistAndAddProduct_ReturnsExpectedEvents() { // Arrange - var wishlistId = "your_wishlist_id"; + var wishlistId = "657657677c13ae4bc95e2f41"; var message = new MessageCreateDto { Text = "Your message text" }; var cancellationToken = new CancellationToken(); @@ -202,8 +169,8 @@ public class ProductTests var expectedSseData = new List { - "[", "Message", "]", " What", " u", " want", " ?", "[", "Options", "]", "USB-C", " ;", "Keyboard", " ultra", - " ;", "[", "Options", "]", "USB", "-C", " ;", "[", "Products", "]", " GTX", " 3090", " ;", " GTX", + "[", "Message", "]", " What", " u", " want", " ?", "[", "Suggestions", "]", "USB-C", " ;", "Keyboard", " ultra", + " ;", "[", "Suggestions", "]", "USB", "-C", " ;", "[", "Products", "]", " GTX", " 3090", " ;", " GTX", " 3070TI", " ;", " GTX", " 4070TI", " ;", " ?" }; @@ -214,36 +181,25 @@ public class ProductTests _openAiServiceMock.Setup(x => x.GetChatCompletionStream(It.IsAny(), cancellationToken)) .Returns(expectedSseData.ToAsyncEnumerable()); - _messagesRepositoryMock.Setup(m => m.GetCountAsync(It.IsAny>>(), It.IsAny())) - .ReturnsAsync(3); - - _wishListServiceMock - .Setup(w => w.GetMessagesPageFromPersonalWishlistAsync( - It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())) - .ReturnsAsync(new PagedList(new List - { - new MessageDto + _messagesRepositoryMock.Setup(m => m.GetWishlistMessagesAsync(It.IsAny(), It.IsAny())) + .ReturnsAsync(new List { - Text = "Message 1", - Id = "1", - CreatedById = "User2", - Role = "User" - }, - new MessageDto - { - Text = "Message 2", - Id = "2", - CreatedById = "User2", - Role = "User" - }, - new MessageDto - { - Text = "Message 3", - Id = "3", - CreatedById = "User2", - Role = "User" - }, - }, 1, 3, 3)); + new() + { + Text = "Message 1", + Role = "User" + }, + new() + { + Text = "Message 2", + Role = "User" + }, + new() + { + Text = "Message 3", + Role = "User" + }, + }); // Act var resultStream = _productService.SearchProductAsync(wishlistId, message, cancellationToken); @@ -265,7 +221,5 @@ public class ProductTests Assert.NotNull(actualSseEvents); Assert.Equal(expectedMessages, receivedMessages); Assert.Equal(expectedSuggestions, receivedSuggestions); - _wishListServiceMock.Verify(w => w.AddMessageToPersonalWishlistAsync( - wishlistId, It.IsAny(), cancellationToken), Times.Once); } } \ No newline at end of file