65 lines
1.8 KiB
C#
65 lines
1.8 KiB
C#
|
using System;
|
|||
|
using System.Collections.Concurrent;
|
|||
|
using System.IO;
|
|||
|
using System.Runtime.CompilerServices;
|
|||
|
|
|||
|
namespace GamecraftModdingAPI.Tests
|
|||
|
{
|
|||
|
public static class Assert
|
|||
|
{
|
|||
|
private static StreamWriter logFile = null;
|
|||
|
|
|||
|
private static ConcurrentDictionary<string, string> callbacks = new ConcurrentDictionary<string, string>();
|
|||
|
|
|||
|
private const string PASS = "SUCCESS: ";
|
|||
|
|
|||
|
private const string FAIL = "FAILURE: ";
|
|||
|
|
|||
|
private const string WARN = "WARNING: ";
|
|||
|
|
|||
|
private const string INFO = "DEBUG: ";
|
|||
|
|
|||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|||
|
public static void Log(string msg, string end = "\n")
|
|||
|
{
|
|||
|
if (logFile == null) openTestLog();
|
|||
|
logFile.Write(msg + end);
|
|||
|
logFile.Flush();
|
|||
|
}
|
|||
|
|
|||
|
public static EventHandler<T> CallsBack<T>(string eventName, string eventMsg = null)
|
|||
|
{
|
|||
|
if (eventMsg == null) eventMsg = $"expected callback to {eventName} but it never occurred...";
|
|||
|
callbacks[eventName] = eventMsg;
|
|||
|
|
|||
|
return (sender, args) =>
|
|||
|
{
|
|||
|
string value = null;
|
|||
|
if (!callbacks.TryRemove(eventName, out value)) { Log(WARN + $"callback to {eventName} occurred again or a related error occurred... (Received '{args.ToString()}' from '{(sender == null ? (string)sender : sender.ToString())}')"); }
|
|||
|
Log(PASS + $"callback to {eventName} occurred... (Received '{args.ToString()}' from '{(sender == null ? (string)sender : sender.ToString())}')");
|
|||
|
TestRoot.TestsPassed = true;
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
internal static void CallsComplete()
|
|||
|
{
|
|||
|
foreach(string key in callbacks.Keys)
|
|||
|
{
|
|||
|
Log(FAIL + callbacks[key]);
|
|||
|
TestRoot.TestsPassed = false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
internal static void CloseLog()
|
|||
|
{
|
|||
|
if (logFile != null) logFile.Close();
|
|||
|
}
|
|||
|
|
|||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|||
|
private static void openTestLog()
|
|||
|
{
|
|||
|
logFile = File.CreateText(TestRoot.ReportFile);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|