// Copyright (c) HelloShop Corporation. All rights reserved. // See the license file in the project root for more information. using Aspire.Hosting.ApplicationModel; using HelloShop.FunctionalTests.Helpers; using Microsoft.AspNetCore.Authentication.BearerToken; using Microsoft.Extensions.DependencyInjection; using System.Dynamic; using System.Net; using System.Net.Http.Headers; using System.Net.Http.Json; using System.Text.Json.Nodes; namespace HelloShop.FunctionalTests { public class FirstWebApiIntegrationTest(TestingAspireAppHost app) : IAsyncLifetime, IClassFixture { public async Task InitializeAsync() { await app.StartAsync(); } public async Task DisposeAsync() => await Task.CompletedTask; [Fact] public async Task WebAppRootReturnsOkStatusCode() { // Arrange var resourceNotificationService = app.Services.GetRequiredService(); // Act HttpClient httpClient = app.CreateHttpClient("webapp"); await resourceNotificationService.WaitForResourceAsync("webapp", KnownResourceStates.Running).WaitAsync(TimeSpan.FromSeconds(30)); HttpResponseMessage response = await httpClient.GetAsync("/"); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); } [Fact] public async Task IdetityServiceAccountLoginReturnsSuccessStatusCode() { // Arrange var resourceNotificationService = app.Services.GetRequiredService(); // Act HttpClient httpClient = app.CreateHttpClient("identityservice"); await resourceNotificationService.WaitForResourceHealthyAsync("identityservice").WaitAsync(TimeSpan.FromSeconds(30)); HttpResponseMessage response = await httpClient.PostAsJsonAsync("api/Account/Login", new { UserName = "guest", Password = "guest" }); // Assert Assert.Equal(HttpStatusCode.OK, response.StatusCode); } [Fact] public async Task IdetityServiceAccountLoginReturnsAccessToken() { // Arrange var resourceNotificationService = app.Services.GetRequiredService(); // Act HttpClient httpClient = app.CreateHttpClient("identityservice"); await resourceNotificationService.WaitForResourceHealthyAsync("identityservice").WaitAsync(TimeSpan.FromSeconds(30)); HttpResponseMessage response = await httpClient.PostAsJsonAsync("api/Account/Login", new { UserName = "guest", Password = "guest" }); dynamic? result = await response.Content.ReadFromJsonAsync(); // Assert Assert.NotNull(result?.accessToken); } [Fact] public async Task IdetityServiceAccountLoginReturnsTokenExpiresInSeconds() { // Arrange var resourceNotificationService = app.Services.GetRequiredService(); // Act HttpClient httpClient = app.CreateHttpClient("identityservice"); await resourceNotificationService.WaitForResourceHealthyAsync("identityservice").WaitAsync(TimeSpan.FromSeconds(30)); HttpResponseMessage response = await httpClient.PostAsJsonAsync("api/Account/Login", new { UserName = "guest", Password = "guest" }); JsonNode? result = await response.Content.ReadFromJsonAsync(); int expiresInSeconds = result?["expiresIn"]?.GetValue() ?? default; // Assert Assert.Equal(3600, expiresInSeconds); } [Fact] public async Task ProductServiceGetProductReturnsProductDetails() { // Arrange var resourceNotificationService = app.Services.GetRequiredService(); // Act HttpClient identityServiceHttpClient = app.CreateHttpClient("identityservice"); await resourceNotificationService.WaitForResourceHealthyAsync("identityservice").WaitAsync(TimeSpan.FromSeconds(30)); HttpResponseMessage loginResponse = await identityServiceHttpClient.PostAsJsonAsync("api/Account/Login", new { UserName = "admin", Password = "admin" }); AccessTokenResponse? accessTokenResponse = await loginResponse.Content.ReadFromJsonAsync(); HttpClient productServiceHttpClient = app.CreateHttpClient("productservice"); productServiceHttpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", accessTokenResponse?.AccessToken); await resourceNotificationService.WaitForResourceHealthyAsync("productservice").WaitAsync(TimeSpan.FromSeconds(30)); HttpResponseMessage productDetailsResponse = await productServiceHttpClient.GetAsync("api/Products/1"); JsonNode? result = await productDetailsResponse.Content.ReadFromJsonAsync(); int? productId = result?["Id"]?.GetValue(); // Assert Assert.NotNull(productId); Assert.Equal(1, productId); } } }