2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/TestProject1/UnitTest1.cs
Ben Parsons efd0b3e0c0 Journals Now processed in own thread
Some invalid journal data is now handled
Journals now use polymorphic deserialization
Added Event names to all journal events
Remove unused controllers
2024-05-24 19:30:12 +10:00

30 lines
752 B
C#

using System.Text.Json;
using System.Text.Json.Serialization;
namespace TestProject1;
public class Tests
{
[JsonPolymorphic(TypeDiscriminatorPropertyName = "event")]
[JsonDerivedType(typeof(ChildEvent), "child")]
public abstract class EventBase
{
[JsonPropertyName("timestamp")] public DateTimeOffset Timestamp { get; init; }
[JsonPropertyName("event")] public string Event { get; set; }
}
public class ChildEvent : EventBase;
[Test]
public void Test()
{
var json = """
{ "event": "child", "timestamp":"2024-05-20T12:36:10Z" }
""";
var obj = JsonSerializer.Deserialize<EventBase>(json)!;
Console.WriteLine(obj.Event); // ""
}
}