Barcode-Host Job

This commit is contained in:
2023-06-29 09:31:53 -07:00
parent cae44abfee
commit 2346f0ba4d
3 changed files with 171 additions and 48 deletions

View File

@ -43,7 +43,9 @@ public class Job : LoggingUnitTesting, IDisposable
catch (Exception) { }
}
#if true
[Ignore]
#endif
[TestMethod]
public void TestJobA()
{
@ -82,7 +84,9 @@ public class Job : LoggingUnitTesting, IDisposable
NonThrowTryCatch();
}
#if true
[Ignore]
#endif
[TestMethod]
public void TestJobB()
{
@ -100,4 +104,24 @@ public class Job : LoggingUnitTesting, IDisposable
NonThrowTryCatch();
}
#if true
[Ignore]
#endif
[TestMethod]
public void TestJobC()
{
MethodBase methodBase = new StackFrame().GetMethod();
FileHandlers.TIBCO.Transport.Job job;
string barcodeHostFileShare = @"\\messv02ecc1.ec.local\EC_Metrology_Si\BarcodeHost\API";
string metrologyFileShare = @"\\messv02ecc1.ec.local\EC_Metrology_Si\WorkMaterialOut\API";
LoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration"));
string lsl2SQLConnectionString = "Data Source=10.95.128.28\\PROD1,53959;Initial Catalog=LSL2SQL;Persist Security Info=True;User ID=srpadmin;Password=0okm9ijn;";
job = new(lsl2SQLConnectionString, metrologyFileShare, barcodeHostFileShare, "{\"Area\": \"Si\", \"EquipmentType\": \"MET08RESIMAPCDE\", \"MesEntity\": \"BIORAD3\", \"Sequence\": \"638234699589174855\", \"MID\": \"33--\", \"Recipe\": \"Recipe\"}");
Assert.IsTrue(!string.IsNullOrEmpty(job.ProcessType));
Assert.IsTrue(!string.IsNullOrEmpty(job.LotName));
Assert.IsTrue(!string.IsNullOrEmpty(job.ProductName));
LoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Exit"));
NonThrowTryCatch();
}
}