2
0
mirror of synced 2025-02-09 23:23:31 +00:00

36 lines
921 B
C#
Raw Normal View History

2023-04-13 11:30:19 +02:00
using Logging;
using NUnit.Framework;
2023-04-14 09:54:07 +02:00
namespace DistTestCore.Logs
2023-04-13 11:30:19 +02:00
{
public interface ICodexNodeLog
{
void AssertLogContains(string expectedString);
}
public class CodexNodeLog : ICodexNodeLog
{
private readonly LogFile logFile;
public CodexNodeLog(LogFile logFile)
{
this.logFile = logFile;
}
public void AssertLogContains(string expectedString)
{
using var file = File.OpenRead(logFile.FullFilename);
using var streamReader = new StreamReader(file);
var line = streamReader.ReadLine();
while (line != null)
{
if (line.Contains(expectedString)) return;
line = streamReader.ReadLine();
}
2023-04-14 14:53:39 +02:00
Assert.Fail($"Unable to find string '{expectedString}' in CodexNode log file {logFile.FullFilename}");
2023-04-13 11:30:19 +02:00
}
}
}