47 lines
1.5 KiB
C#
47 lines
1.5 KiB
C#
using Logging;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DistTestCore
|
|
{
|
|
public class StatusLog
|
|
{
|
|
private readonly object fileLock = new object();
|
|
private readonly string fullName;
|
|
private readonly string fixtureName;
|
|
|
|
public StatusLog(LogConfig config, DateTime start, string name = "")
|
|
{
|
|
fullName = NameUtils.GetFixtureFullName(config, start, name) + "_STATUS.log";
|
|
fixtureName = NameUtils.GetRawFixtureName();
|
|
}
|
|
|
|
public void ConcludeTest(string resultStatus, string testDuration, Dictionary<string, string> data)
|
|
{
|
|
data.Add("timestamp", DateTime.UtcNow.ToString("o"));
|
|
data.Add("runid", NameUtils.GetRunId());
|
|
data.Add("status", resultStatus);
|
|
data.Add("testid", NameUtils.GetTestId());
|
|
data.Add("category", NameUtils.GetCategoryName());
|
|
data.Add("fixturename", fixtureName);
|
|
data.Add("testname", NameUtils.GetTestMethodName());
|
|
data.Add("testduration", testDuration);
|
|
Write(data);
|
|
}
|
|
|
|
private void Write(Dictionary<string, string> data)
|
|
{
|
|
try
|
|
{
|
|
lock (fileLock)
|
|
{
|
|
File.AppendAllLines(fullName, new[] { JsonConvert.SerializeObject(data) });
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Console.WriteLine("Unable to write to status log: " + ex);
|
|
}
|
|
}
|
|
}
|
|
}
|