Tests Failed

This commit is contained in:
2024-04-29 15:24:34 -07:00
parent 6f48f4890e
commit f798e59451
11 changed files with 195 additions and 24 deletions

View File

@ -1,3 +1,4 @@
#if v2_52_0
using Adaptation._Tests.Shared;
using Microsoft.Extensions.Logging;
using Microsoft.VisualStudio.TestTools.UnitTesting;
@ -47,7 +48,9 @@ public class WC6INCH1_EQPT : EAFLoggingUnitTesting
EAFLoggingUnitTesting?.Dispose();
}
#if DEBUG
[Ignore]
#endif
[TestMethod]
public void Staging__v2_52_0__WC6INCH1_EQPT__ConvertExcelToJson()
{
@ -58,4 +61,5 @@ public class WC6INCH1_EQPT : EAFLoggingUnitTesting
EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit"));
}
}
}
#endif

View File

@ -0,0 +1,65 @@
#if true
using Adaptation._Tests.Shared;
using Microsoft.Extensions.Logging;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Diagnostics;
using System.IO;
using System.Reflection;
namespace Adaptation._Tests.CreateSelfDescription.Development.v2_56_0;
[TestClass]
public class WC6INCH1_EQPT : EAFLoggingUnitTesting
{
#pragma warning disable CA2254
#pragma warning disable IDE0060
internal static string DummyRoot { get; private set; }
internal static WC6INCH1_EQPT EAFLoggingUnitTesting { get; private set; }
static WC6INCH1_EQPT() => DummyRoot = @"\\mesfs.infineon.com\EC_Characterization_Si\Dummy";
public WC6INCH1_EQPT() : base(DummyRoot, testContext: null, declaringType: null, skipEquipmentDictionary: false)
{
if (EAFLoggingUnitTesting is null)
throw new Exception();
}
public WC6INCH1_EQPT(TestContext testContext) : base(DummyRoot, testContext, new StackFrame().GetMethod().DeclaringType, skipEquipmentDictionary: false)
{
}
[ClassInitialize]
public static void ClassInitialize(TestContext testContext)
{
EAFLoggingUnitTesting ??= new WC6INCH1_EQPT(testContext);
EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(testContext.TestName, " - ClassInitialize"));
string[] fileNameAndText = EAFLoggingUnitTesting.AdaptationTesting.GetCSharpText(testContext.TestName);
File.WriteAllText(fileNameAndText[0], fileNameAndText[1]);
File.WriteAllText(fileNameAndText[2], fileNameAndText[3]);
}
[ClassCleanup()]
public static void ClassCleanup()
{
EAFLoggingUnitTesting.Logger?.LogInformation("Cleanup");
EAFLoggingUnitTesting?.Dispose();
}
#if DEBUG
[Ignore]
#endif
[TestMethod]
public void Staging__v2_56_0__WC6INCH1_EQPT__ConvertExcelToJson()
{
string check = "*.wc";
MethodBase methodBase = new StackFrame().GetMethod();
EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration"));
_ = AdaptationTesting.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting);
EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit"));
}
}
#endif

View File

@ -1,3 +1,4 @@
#if v2_52_0
using Adaptation.Shared;
using Adaptation.Shared.Methods;
using Microsoft.VisualStudio.TestTools.UnitTesting;
@ -33,11 +34,15 @@ public class WC6INCH1_EQPT
catch (Exception) { }
}
#if DEBUG
[Ignore]
#endif
[TestMethod]
public void Staging__v2_52_0__WC6INCH1_EQPT__ConvertExcelToJson() => _WC6INCH1_EQPT.Staging__v2_52_0__WC6INCH1_EQPT__ConvertExcelToJson();
#if DEBUG
[Ignore]
#endif
[TestMethod]
public void Staging__v2_52_0__WC6INCH1_EQPT__ConvertExcelToJson637961178824025822__Normal()
{
@ -55,4 +60,5 @@ public class WC6INCH1_EQPT
NonThrowTryCatch();
}
}
}
#endif

View File

@ -0,0 +1,64 @@
#if true
using Adaptation.Shared;
using Adaptation.Shared.Methods;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Text.Json;
namespace Adaptation._Tests.Extract.Development.v2_56_0;
[TestClass]
public class WC6INCH1_EQPT
{
#pragma warning disable CA2254
#pragma warning disable IDE0060
private static CreateSelfDescription.Development.v2_56_0.WC6INCH1_EQPT _WC6INCH1_EQPT;
[ClassInitialize]
public static void ClassInitialize(TestContext testContext)
{
CreateSelfDescription.Development.v2_56_0.WC6INCH1_EQPT.ClassInitialize(testContext);
_WC6INCH1_EQPT = CreateSelfDescription.Development.v2_56_0.WC6INCH1_EQPT.EAFLoggingUnitTesting;
}
private static void NonThrowTryCatch()
{
try
{ throw new Exception(); }
catch (Exception) { }
}
#if DEBUG
[Ignore]
#endif
[TestMethod]
public void Staging__v2_56_0__WC6INCH1_EQPT__ConvertExcelToJson() => _WC6INCH1_EQPT.Staging__v2_56_0__WC6INCH1_EQPT__ConvertExcelToJson();
#if DEBUG
[Ignore]
#endif
[TestMethod]
public void Staging__v2_56_0__WC6INCH1_EQPT__ConvertExcelToJson637961178824025822__Normal()
{
string check = "*.wc";
bool validatePDSF = false;
MethodBase methodBase = new StackFrame().GetMethod();
_WC6INCH1_EQPT.Staging__v2_56_0__WC6INCH1_EQPT__ConvertExcelToJson();
Assert.IsFalse(string.IsNullOrEmpty(_WC6INCH1_EQPT.AdaptationTesting.TestContext.FullyQualifiedTestClassName));
string[] variables = _WC6INCH1_EQPT.AdaptationTesting.GetVariables(methodBase, check, validatePDSF);
IFileRead fileRead = _WC6INCH1_EQPT.AdaptationTesting.Get(methodBase, sourceFileLocation: variables[2], sourceFileFilter: variables[3], useCyclicalForDescription: false);
Tuple<string, Test[], JsonElement[], List<FileInfo>> extractResult = fileRead.ReExtract();
Assert.IsFalse(string.IsNullOrEmpty(extractResult?.Item1));
Assert.IsNotNull(extractResult.Item3);
Assert.IsNotNull(extractResult.Item4);
NonThrowTryCatch();
}
}
#endif

View File

@ -64,7 +64,7 @@ public class MET08AWCT : LoggingUnitTesting, IDisposable
StringBuilder results = new();
(string cellInstanceName, string cellInstanceVersionName)[] collection = new (string, string)[]
{
new("MET08AWCT", "v2.52.0"),
new("MET08AWCT", "v2.56.0"),
};
string development = "http://eaf-dev.mes.infineon.com:9003/CellInstanceServiceV2";
Shared.PasteSpecialXml.EAF.XML.API.CellInstance.CellInstanceVersion cellInstanceVersion;
@ -82,7 +82,9 @@ public class MET08AWCT : LoggingUnitTesting, IDisposable
NonThrowTryCatch();
}
#if DEBUG
[Ignore]
#endif
[TestMethod]
public void Staging()
{
@ -90,7 +92,7 @@ public class MET08AWCT : LoggingUnitTesting, IDisposable
StringBuilder results = new();
(string cellInstanceName, string cellInstanceVersionName)[] collection = new (string, string)[]
{
new("MET08AWCT", "v2.52.0"),
new("MET08AWCT", "v2.56.0"),
};
string staging = "http://mestsa07ec.infineon.com:9003/CellInstanceServiceV2";
Shared.PasteSpecialXml.EAF.XML.API.CellInstance.CellInstanceVersion cellInstanceVersion;

View File

@ -64,13 +64,13 @@ public class WC : LoggingUnitTesting, IDisposable
StringBuilder results = new();
(string cellInstanceName, string cellInstanceVersionName)[] collection = new (string, string)[]
{
new("WC6INCH1-EQPT", "v2.52.0"),
new("WC6INCH2-EQPT", "v2.52.0"),
new("WC6INCH3-EQPT", "v2.52.0"),
new("WC6INCH4-EQPT", "v2.52.0"),
new("WC8INCH1-EQPT", "v2.52.0"),
new("WC8INCH2-EQPT", "v2.52.0"),
new("WC8INCH3-EQPT", "v2.52.0"),
new("WC6INCH1-EQPT", "v2.56.0"),
new("WC6INCH2-EQPT", "v2.56.0"),
new("WC6INCH3-EQPT", "v2.56.0"),
new("WC6INCH4-EQPT", "v2.56.0"),
new("WC8INCH1-EQPT", "v2.56.0"),
new("WC8INCH2-EQPT", "v2.56.0"),
new("WC8INCH3-EQPT", "v2.56.0"),
};
string development = "http://eaf-dev.mes.infineon.com:9003/CellInstanceServiceV2";
Shared.PasteSpecialXml.EAF.XML.API.CellInstance.CellInstanceVersion cellInstanceVersion;
@ -88,7 +88,9 @@ public class WC : LoggingUnitTesting, IDisposable
NonThrowTryCatch();
}
#if DEBUG
[Ignore]
#endif
[TestMethod]
public void Staging()
{
@ -96,13 +98,13 @@ public class WC : LoggingUnitTesting, IDisposable
StringBuilder results = new();
(string cellInstanceName, string cellInstanceVersionName)[] collection = new (string, string)[]
{
new("WC6INCH1-EQPT", "v2.52.0"),
new("WC6INCH2-EQPT", "v2.52.0"),
new("WC6INCH3-EQPT", "v2.52.0"),
new("WC6INCH4-EQPT", "v2.52.0"),
new("WC8INCH1-EQPT", "v2.52.0"),
new("WC8INCH2-EQPT", "v2.52.0"),
new("WC8INCH3-EQPT", "v2.52.0"),
new("WC6INCH1-EQPT", "v2.56.0"),
new("WC6INCH2-EQPT", "v2.56.0"),
new("WC6INCH3-EQPT", "v2.56.0"),
new("WC6INCH4-EQPT", "v2.56.0"),
new("WC8INCH1-EQPT", "v2.56.0"),
new("WC8INCH2-EQPT", "v2.56.0"),
new("WC8INCH3-EQPT", "v2.56.0"),
};
string staging = "http://mestsa07ec.infineon.com:9003/CellInstanceServiceV2";
Shared.PasteSpecialXml.EAF.XML.API.CellInstance.CellInstanceVersion cellInstanceVersion;