using Microsoft.AspNetCore.Mvc.Testing; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using OI.Metrology.Shared.DataModels; using OI.Metrology.Shared.Models.Stateless; namespace OI.Metrology.Tests; [TestClass] public class UnitTestInfinityQSV3Controller { #pragma warning disable CS8618 private static ILogger? _Logger; private static string _ControllerName; private static string? _TestContextTestName; private static WebApplicationFactory? _WebApplicationFactory; #pragma warning restore [ClassInitialize] public static void ClassInitAsync(TestContext testContext) { _TestContextTestName = testContext.TestName; _WebApplicationFactory = new WebApplicationFactory(); IServiceProvider serviceProvider = _WebApplicationFactory.Services.CreateScope().ServiceProvider; _Logger = serviceProvider.GetRequiredService>(); _ControllerName = nameof(Server.ApiControllers.InfinityQSV3Controller)[..^10]; } private static void NonThrowTryCatch() { try { throw new Exception(); } catch (Exception) { } } [TestMethod] public void TestControllerName() { _Logger?.LogInformation("Starting Web Application"); Assert.AreEqual(IInfinityQSV3Controller.GetRouteName(), _ControllerName); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public void GetCommandText() { _Logger?.LogInformation("Starting Web Application"); IServiceProvider? serviceProvider = _WebApplicationFactory?.Services.CreateScope().ServiceProvider; IInfinityQSV3Repository? infinityQSV3Repository = serviceProvider?.GetRequiredService(); string? result = infinityQSV3Repository?.GetCommandText("1698497987", "61", "CDE5", "5012", "575908", ""); Assert.IsNotNull(result); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public async Task GetCommandTextApi() { HttpClient? httpClient = _WebApplicationFactory?.CreateClient(); _Logger?.LogInformation("Starting Web Application"); Assert.IsTrue(httpClient is not null); string? json = await httpClient.GetStringAsync($"api/{_ControllerName}/1698497987/commandText/?process=61&job=CDE5&part=5012&lot=575908&date_time=2023-02-24 15:15:00"); File.WriteAllText(Path.Combine(AppContext.BaseDirectory, $"{_ControllerName}-{nameof(GetCommandText)}.sql"), json); Assert.IsNotNull(json); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public void GetData() { _Logger?.LogInformation("Starting Web Application"); IServiceProvider? serviceProvider = _WebApplicationFactory?.Services.CreateScope().ServiceProvider; IInfinityQSV3Repository? infinityQSV3Repository = serviceProvider?.GetRequiredService(); Result? result = infinityQSV3Repository?.GetData("1698497987"); Assert.IsNotNull(result?.Results); Assert.IsTrue(result?.Results.Length != 0); Assert.IsNotNull(result?.Results[0].Process); Assert.IsNotNull(result?.Results[0].Variable); Assert.IsNotNull(result?.Results[0].SiteNumber); Assert.IsNotNull(result?.Results[0].VariableNumber); Assert.IsNotNull(result?.Results[0].SubGroupDateTime); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public async Task GetDataApi() { HttpClient? httpClient = _WebApplicationFactory?.CreateClient(); _Logger?.LogInformation("Starting Web Application"); Assert.IsTrue(httpClient is not null); //string? json = await httpClient.GetStringAsync($"api/{_ControllerName}/1698497987 575908_2023-02-24 14-18-05.txt/data"); string? json = await httpClient.GetStringAsync($"api/{_ControllerName}/1698497987/data"); File.WriteAllText(Path.Combine(AppContext.BaseDirectory, $"{_ControllerName}-{nameof(GetData)}.json"), json); Result? result = System.Text.Json.JsonSerializer.Deserialize>(json); Assert.IsNotNull(result?.Results); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public void GetDescriptors() { _Logger?.LogInformation("Starting Web Application"); IServiceProvider? serviceProvider = _WebApplicationFactory?.Services.CreateScope().ServiceProvider; IInfinityQSV3Repository? infinityQSV3Repository = serviceProvider?.GetRequiredService(); Result? result = infinityQSV3Repository?.GetDescriptors("1698497987"); Assert.IsNotNull(result?.Results); Assert.IsTrue(result?.Results.Length != 0); Assert.IsNotNull(result?.Results[0].SubGroupId); Assert.IsNotNull(result?.Results[0].SiteNumber); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public async Task GetDescriptorsApi() { HttpClient? httpClient = _WebApplicationFactory?.CreateClient(); _Logger?.LogInformation("Starting Web Application"); Assert.IsTrue(httpClient is not null); //string? json = await httpClient.GetStringAsync($"api/{_ControllerName}/1698497987 575908_2023-02-24 14-18-05.txt/descriptors"); string? json = await httpClient.GetStringAsync($"api/{_ControllerName}/1698497987/descriptors"); File.WriteAllText(Path.Combine(AppContext.BaseDirectory, $"{_ControllerName}-{nameof(GetDescriptors)}.json"), json); Result? result = System.Text.Json.JsonSerializer.Deserialize>(json); Assert.IsNotNull(result?.Results); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public void GetHeader() { _Logger?.LogInformation("Starting Web Application"); IServiceProvider? serviceProvider = _WebApplicationFactory?.Services.CreateScope().ServiceProvider; IInfinityQSV3Repository? infinityQSV3Repository = serviceProvider?.GetRequiredService(); Result? result = infinityQSV3Repository?.GetHeader("1698497987"); Assert.IsNotNull(result?.Results); Assert.IsNotNull(result?.Results[0].Part); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public async Task GetHeaderApi() { HttpClient? httpClient = _WebApplicationFactory?.CreateClient(); _Logger?.LogInformation("Starting Web Application"); Assert.IsTrue(httpClient is not null); string? json = await httpClient.GetStringAsync($"api/{_ControllerName}/1698497987/header"); File.WriteAllText(Path.Combine(AppContext.BaseDirectory, $"{_ControllerName}-{nameof(GetHeader)}.json"), json); Result? result = System.Text.Json.JsonSerializer.Deserialize>(json); Assert.IsNotNull(result?.Results); Assert.IsNotNull(result?.Results[0].Part); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public void GetProductDataAverageSumOfDefectsProcessMeanProcessSigma() { _Logger?.LogInformation("Starting Web Application"); IServiceProvider? serviceProvider = _WebApplicationFactory?.Services.CreateScope().ServiceProvider; IInfinityQSV3Repository? infinityQSV3Repository = serviceProvider?.GetRequiredService(); string? result = infinityQSV3Repository?.GetProductDataAverageSumOfDefectsProcessMeanProcessSigma("41", "8IN_THIN ROTR"); Assert.IsNotNull(result); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public async Task GetProductDataAverageSumOfDefectsProcessMeanProcessSigmaApi() { HttpClient? httpClient = _WebApplicationFactory?.CreateClient(); _Logger?.LogInformation("Starting Web Application"); Assert.IsTrue(httpClient is not null); string? result = await httpClient.GetStringAsync($"api/{_ControllerName}/41/product-data-average-sum-of-defects-process-mean-process-sigma?recipe=8IN_THIN ROTR"); File.WriteAllText(Path.Combine(AppContext.BaseDirectory, $"{_ControllerName}-{nameof(GetProductDataAverageSumOfDefectsProcessMeanProcessSigma)}.json"), result); Assert.IsNotNull(result); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public void GetEpiProTempVerificationRows() { _Logger?.LogInformation("Starting Web Application"); int[] night = new int[] { 44, 46, 52, 54 }; IServiceProvider? serviceProvider = _WebApplicationFactory?.Services.CreateScope().ServiceProvider; IInfinityQSV3Repository? infinityQSV3Repository = serviceProvider?.GetRequiredService(); List? results = infinityQSV3Repository?.GetEpiProTempVerificationRows(night); Assert.IsNotNull(results); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public async Task GetEpiProTempVerificationRowsApi() { HttpClient? httpClient = _WebApplicationFactory?.CreateClient(); _Logger?.LogInformation("Starting Web Application"); Assert.IsTrue(httpClient is not null); string? result = await httpClient.GetStringAsync($"api/{_ControllerName}/epi-pro-temp-verification-rows/?night=44&night=46&night=52&night=54"); File.WriteAllText(Path.Combine(AppContext.BaseDirectory, $"{_ControllerName}-{nameof(GetEpiProTempVerificationRows)}.json"), result); Assert.IsNotNull(result); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public void GetEpiProTempVerification() { _Logger?.LogInformation("Starting Web Application"); int[] night = new int[] { 44, 46, 52, 54 }; IServiceProvider? serviceProvider = _WebApplicationFactory?.Services.CreateScope().ServiceProvider; IInfinityQSV3Repository? infinityQSV3Repository = serviceProvider?.GetRequiredService(); string? result = infinityQSV3Repository?.GetEpiProTempVerification(night); Assert.IsNotNull(result); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } [TestMethod] public async Task GetEpiProTempVerificationApi() { HttpClient? httpClient = _WebApplicationFactory?.CreateClient(); _Logger?.LogInformation("Starting Web Application"); Assert.IsTrue(httpClient is not null); string? result = await httpClient.GetStringAsync($"api/{_ControllerName}/epi-pro-temp-verification/?night=44&night=46&night=52&night=54"); File.WriteAllText(Path.Combine(AppContext.BaseDirectory, $"{_ControllerName}-{nameof(GetEpiProTempVerification)}.html"), result); Assert.IsNotNull(result); _Logger?.LogInformation("{TestName} completed", _TestContextTestName); NonThrowTryCatch(); } }