mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Merge pull request #2431 from grittyfrog/push-plttolzpzvkr
Plugin-registerable self tests
This commit is contained in:
commit
fc480d8542
41 changed files with 674 additions and 133 deletions
|
|
@ -6,11 +6,13 @@ using System.Numerics;
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Interface.Colors;
|
||||
using Dalamud.Interface.Components;
|
||||
using Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
using Dalamud.Interface.Utility;
|
||||
using Dalamud.Interface.Utility.Raii;
|
||||
using Dalamud.Interface.Windowing;
|
||||
using Dalamud.Logging.Internal;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Dalamud.Plugin.SelfTest.Internal;
|
||||
using Dalamud.Utility;
|
||||
using Lumina.Excel.Sheets;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest;
|
||||
|
|
@ -22,49 +24,14 @@ internal class SelfTestWindow : Window
|
|||
{
|
||||
private static readonly ModuleLog Log = new("AGING");
|
||||
|
||||
private readonly List<ISelfTestStep> steps =
|
||||
[
|
||||
new LoginEventSelfTestStep(),
|
||||
new WaitFramesSelfTestStep(1000),
|
||||
new FrameworkTaskSchedulerSelfTestStep(),
|
||||
new EnterTerritorySelfTestStep(148, "Central Shroud"),
|
||||
new ItemPayloadSelfTestStep(),
|
||||
new ContextMenuSelfTestStep(),
|
||||
new NamePlateSelfTestStep(),
|
||||
new ActorTableSelfTestStep(),
|
||||
new FateTableSelfTestStep(),
|
||||
new AetheryteListSelfTestStep(),
|
||||
new ConditionSelfTestStep(),
|
||||
new ToastSelfTestStep(),
|
||||
new TargetSelfTestStep(),
|
||||
new KeyStateSelfTestStep(),
|
||||
new GamepadStateSelfTestStep(),
|
||||
new ChatSelfTestStep(),
|
||||
new HoverSelfTestStep(),
|
||||
new LuminaSelfTestStep<Item>(true),
|
||||
new LuminaSelfTestStep<Level>(true),
|
||||
new LuminaSelfTestStep<Lumina.Excel.Sheets.Action>(true),
|
||||
new LuminaSelfTestStep<Quest>(true),
|
||||
new LuminaSelfTestStep<TerritoryType>(false),
|
||||
new AddonLifecycleSelfTestStep(),
|
||||
new PartyFinderSelfTestStep(),
|
||||
new HandledExceptionSelfTestStep(),
|
||||
new DutyStateSelfTestStep(),
|
||||
new GameConfigSelfTestStep(),
|
||||
new MarketBoardSelfTestStep(),
|
||||
new SheetRedirectResolverSelfTestStep(),
|
||||
new NounProcessorSelfTestStep(),
|
||||
new SeStringEvaluatorSelfTestStep(),
|
||||
new CompletionSelfTestStep(),
|
||||
new LogoutEventSelfTestStep()
|
||||
];
|
||||
private readonly SelfTestRegistry selfTestRegistry;
|
||||
|
||||
private readonly Dictionary<int, (SelfTestStepResult Result, TimeSpan? Duration)> testIndexToResult = new();
|
||||
private List<SelfTestWithResults> visibleSteps = new();
|
||||
|
||||
private bool selfTestRunning = false;
|
||||
private int currentStep = 0;
|
||||
private int scrollToStep = -1;
|
||||
private DateTimeOffset lastTestStart;
|
||||
private SelfTestGroup? currentTestGroup = null;
|
||||
private SelfTestWithResults? currentStep = null;
|
||||
private SelfTestWithResults? scrollToStep = null;
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SelfTestWindow"/> class.
|
||||
|
|
@ -72,6 +39,7 @@ internal class SelfTestWindow : Window
|
|||
public SelfTestWindow()
|
||||
: base("Dalamud Self-Test", ImGuiWindowFlags.NoScrollbar | ImGuiWindowFlags.NoScrollWithMouse)
|
||||
{
|
||||
this.selfTestRegistry = Service<SelfTestRegistry>.Get();
|
||||
this.Size = new Vector2(800, 800);
|
||||
this.SizeCondition = ImGuiCond.FirstUseEver;
|
||||
|
||||
|
|
@ -81,6 +49,55 @@ internal class SelfTestWindow : Window
|
|||
/// <inheritdoc/>
|
||||
public override void Draw()
|
||||
{
|
||||
// Initialize to first group if not set (first time drawing)
|
||||
if (this.currentTestGroup == null)
|
||||
{
|
||||
this.currentTestGroup = this.selfTestRegistry.SelfTestGroups.FirstOrDefault(); // Should always be "Dalamud"
|
||||
if (this.currentTestGroup != null)
|
||||
{
|
||||
this.SelectTestGroup(this.currentTestGroup);
|
||||
}
|
||||
}
|
||||
|
||||
// Update visible steps based on current group
|
||||
if (this.currentTestGroup != null)
|
||||
{
|
||||
this.visibleSteps = this.selfTestRegistry.SelfTests
|
||||
.Where(test => test.Group == this.currentTestGroup.Name).ToList();
|
||||
|
||||
// Stop tests if no steps available or if current step is no longer valid
|
||||
if (this.visibleSteps.Count == 0 || (this.currentStep != null && !this.visibleSteps.Contains(this.currentStep)))
|
||||
{
|
||||
this.StopTests();
|
||||
}
|
||||
}
|
||||
|
||||
using (var dropdown = ImRaii.Combo("###SelfTestGroupCombo"u8, this.currentTestGroup?.Name ?? string.Empty))
|
||||
{
|
||||
if (dropdown)
|
||||
{
|
||||
foreach (var testGroup in this.selfTestRegistry.SelfTestGroups)
|
||||
{
|
||||
if (ImGui.Selectable(testGroup.Name))
|
||||
{
|
||||
this.SelectTestGroup(testGroup);
|
||||
}
|
||||
|
||||
if (!testGroup.Loaded)
|
||||
{
|
||||
ImGui.SameLine();
|
||||
this.DrawUnloadedIcon();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (this.currentTestGroup?.Loaded == false)
|
||||
{
|
||||
ImGui.SameLine();
|
||||
this.DrawUnloadedIcon();
|
||||
}
|
||||
|
||||
if (this.selfTestRunning)
|
||||
{
|
||||
if (ImGuiComponents.IconButton(FontAwesomeIcon.Stop))
|
||||
|
|
@ -92,13 +109,10 @@ internal class SelfTestWindow : Window
|
|||
|
||||
if (ImGuiComponents.IconButton(FontAwesomeIcon.StepForward))
|
||||
{
|
||||
this.testIndexToResult[this.currentStep] = (SelfTestStepResult.NotRan, null);
|
||||
this.steps[this.currentStep].CleanUp();
|
||||
this.currentStep++;
|
||||
this.currentStep.Reset();
|
||||
this.MoveToNextTest();
|
||||
this.scrollToStep = this.currentStep;
|
||||
this.lastTestStart = DateTimeOffset.Now;
|
||||
|
||||
if (this.currentStep >= this.steps.Count)
|
||||
if (this.currentStep == null)
|
||||
{
|
||||
this.StopTests();
|
||||
}
|
||||
|
|
@ -106,38 +120,50 @@ internal class SelfTestWindow : Window
|
|||
}
|
||||
else
|
||||
{
|
||||
var canRunTests = this.currentTestGroup?.Loaded == true && this.visibleSteps.Count > 0;
|
||||
|
||||
using var disabled = ImRaii.Disabled(!canRunTests);
|
||||
if (ImGuiComponents.IconButton(FontAwesomeIcon.Play))
|
||||
{
|
||||
this.selfTestRunning = true;
|
||||
this.currentStep = 0;
|
||||
this.currentStep = this.visibleSteps.FirstOrDefault();
|
||||
this.scrollToStep = this.currentStep;
|
||||
this.testIndexToResult.Clear();
|
||||
this.lastTestStart = DateTimeOffset.Now;
|
||||
foreach (var test in this.visibleSteps)
|
||||
{
|
||||
test.Reset();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ImGui.SameLine();
|
||||
|
||||
ImGui.Text($"Step: {this.currentStep} / {this.steps.Count}");
|
||||
var stepNumber = this.currentStep != null ? this.visibleSteps.IndexOf(this.currentStep) : 0;
|
||||
ImGui.Text($"Step: {stepNumber} / {this.visibleSteps.Count}");
|
||||
|
||||
ImGui.Spacing();
|
||||
|
||||
if (this.currentTestGroup?.Loaded == false)
|
||||
{
|
||||
ImGui.TextColoredWrapped(ImGuiColors.DalamudGrey, $"Plugin '{this.currentTestGroup.Name}' is unloaded. No tests available.");
|
||||
ImGui.Spacing();
|
||||
}
|
||||
|
||||
this.DrawResultTable();
|
||||
|
||||
ImGui.Spacing();
|
||||
|
||||
if (this.currentStep >= this.steps.Count)
|
||||
if (this.currentStep == null)
|
||||
{
|
||||
if (this.selfTestRunning)
|
||||
{
|
||||
this.StopTests();
|
||||
}
|
||||
|
||||
if (this.testIndexToResult.Any(x => x.Value.Result == SelfTestStepResult.Fail))
|
||||
if (this.visibleSteps.Any(test => test.Result == SelfTestStepResult.Fail))
|
||||
{
|
||||
ImGui.TextColoredWrapped(ImGuiColors.DalamudRed, "One or more checks failed!"u8);
|
||||
}
|
||||
else
|
||||
else if (this.visibleSteps.All(test => test.Result == SelfTestStepResult.Pass))
|
||||
{
|
||||
ImGui.TextColoredWrapped(ImGuiColors.HealerGreen, "All checks passed!"u8);
|
||||
}
|
||||
|
|
@ -153,30 +179,14 @@ internal class SelfTestWindow : Window
|
|||
using var resultChild = ImRaii.Child("SelfTestResultChild"u8, ImGui.GetContentRegionAvail());
|
||||
if (!resultChild) return;
|
||||
|
||||
var step = this.steps[this.currentStep];
|
||||
ImGui.Text($"Current: {step.Name}");
|
||||
ImGui.Text($"Current: {this.currentStep.Name}");
|
||||
|
||||
ImGuiHelpers.ScaledDummy(10);
|
||||
|
||||
SelfTestStepResult result;
|
||||
try
|
||||
this.currentStep.DrawAndStep();
|
||||
if (this.currentStep.Result != SelfTestStepResult.Waiting)
|
||||
{
|
||||
result = step.RunStep();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Log.Error(ex, $"Step failed: {step.Name}");
|
||||
result = SelfTestStepResult.Fail;
|
||||
}
|
||||
|
||||
if (result != SelfTestStepResult.Waiting)
|
||||
{
|
||||
var duration = DateTimeOffset.Now - this.lastTestStart;
|
||||
this.testIndexToResult[this.currentStep] = (result, duration);
|
||||
this.currentStep++;
|
||||
this.scrollToStep = this.currentStep;
|
||||
|
||||
this.lastTestStart = DateTimeOffset.Now;
|
||||
this.MoveToNextTest();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -202,85 +212,62 @@ internal class SelfTestWindow : Window
|
|||
ImGui.TableSetupScrollFreeze(0, 1);
|
||||
ImGui.TableHeadersRow();
|
||||
|
||||
for (var i = 0; i < this.steps.Count; i++)
|
||||
foreach (var (step, index) in this.visibleSteps.WithIndex())
|
||||
{
|
||||
var step = this.steps[i];
|
||||
ImGui.TableNextRow();
|
||||
|
||||
if (this.selfTestRunning && this.currentStep == i)
|
||||
if (this.selfTestRunning && this.currentStep == step)
|
||||
{
|
||||
ImGui.TableSetBgColor(ImGuiTableBgTarget.RowBg0, ImGui.GetColorU32(ImGuiCol.TableRowBgAlt));
|
||||
}
|
||||
|
||||
ImGui.TableSetColumnIndex(0);
|
||||
ImGui.AlignTextToFramePadding();
|
||||
ImGui.Text(i.ToString());
|
||||
ImGui.Text(index.ToString());
|
||||
|
||||
if (this.selfTestRunning && this.scrollToStep == i)
|
||||
if (this.selfTestRunning && this.scrollToStep == step)
|
||||
{
|
||||
ImGui.SetScrollHereY();
|
||||
this.scrollToStep = -1;
|
||||
this.scrollToStep = null;
|
||||
}
|
||||
|
||||
ImGui.TableSetColumnIndex(1);
|
||||
ImGui.AlignTextToFramePadding();
|
||||
ImGui.Text(step.Name);
|
||||
|
||||
if (this.testIndexToResult.TryGetValue(i, out var result))
|
||||
ImGui.TableSetColumnIndex(2);
|
||||
ImGui.AlignTextToFramePadding();
|
||||
switch (step.Result)
|
||||
{
|
||||
ImGui.TableSetColumnIndex(2);
|
||||
ImGui.AlignTextToFramePadding();
|
||||
|
||||
switch (result.Result)
|
||||
{
|
||||
case SelfTestStepResult.Pass:
|
||||
ImGui.TextColored(ImGuiColors.HealerGreen, "PASS"u8);
|
||||
break;
|
||||
case SelfTestStepResult.Fail:
|
||||
ImGui.TextColored(ImGuiColors.DalamudRed, "FAIL"u8);
|
||||
break;
|
||||
default:
|
||||
ImGui.TextColored(ImGuiColors.DalamudGrey, "NR"u8);
|
||||
break;
|
||||
}
|
||||
|
||||
ImGui.TableSetColumnIndex(3);
|
||||
if (result.Duration.HasValue)
|
||||
{
|
||||
ImGui.AlignTextToFramePadding();
|
||||
ImGui.Text(this.FormatTimeSpan(result.Duration.Value));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
ImGui.TableSetColumnIndex(2);
|
||||
ImGui.AlignTextToFramePadding();
|
||||
if (this.selfTestRunning && this.currentStep == i)
|
||||
{
|
||||
case SelfTestStepResult.Pass:
|
||||
ImGui.TextColored(ImGuiColors.HealerGreen, "PASS"u8);
|
||||
break;
|
||||
case SelfTestStepResult.Fail:
|
||||
ImGui.TextColored(ImGuiColors.DalamudRed, "FAIL"u8);
|
||||
break;
|
||||
case SelfTestStepResult.Waiting:
|
||||
ImGui.TextColored(ImGuiColors.DalamudGrey, "WAIT"u8);
|
||||
}
|
||||
else
|
||||
{
|
||||
break;
|
||||
default:
|
||||
ImGui.TextColored(ImGuiColors.DalamudGrey, "NR"u8);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
ImGui.TableSetColumnIndex(3);
|
||||
ImGui.TableSetColumnIndex(3);
|
||||
if (step.Duration.HasValue)
|
||||
{
|
||||
ImGui.AlignTextToFramePadding();
|
||||
if (this.selfTestRunning && this.currentStep == i)
|
||||
{
|
||||
ImGui.Text(this.FormatTimeSpan(DateTimeOffset.Now - this.lastTestStart));
|
||||
}
|
||||
ImGui.Text(this.FormatTimeSpan(step.Duration.Value));
|
||||
}
|
||||
|
||||
ImGui.TableSetColumnIndex(4);
|
||||
using var id = ImRaii.PushId($"selfTest{i}");
|
||||
using var id = ImRaii.PushId($"selfTest{index}");
|
||||
if (ImGuiComponents.IconButton(FontAwesomeIcon.FastForward))
|
||||
{
|
||||
this.StopTests();
|
||||
this.testIndexToResult.Remove(i);
|
||||
this.currentStep = i;
|
||||
this.currentStep = step;
|
||||
this.currentStep.Reset();
|
||||
this.selfTestRunning = true;
|
||||
this.lastTestStart = DateTimeOffset.Now;
|
||||
}
|
||||
|
||||
if (ImGui.IsItemHovered())
|
||||
|
|
@ -293,12 +280,14 @@ internal class SelfTestWindow : Window
|
|||
private void StopTests()
|
||||
{
|
||||
this.selfTestRunning = false;
|
||||
this.currentStep = null;
|
||||
this.scrollToStep = null;
|
||||
|
||||
foreach (var agingStep in this.steps)
|
||||
foreach (var agingStep in this.visibleSteps)
|
||||
{
|
||||
try
|
||||
{
|
||||
agingStep.CleanUp();
|
||||
agingStep.Finish();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
|
@ -307,6 +296,46 @@ internal class SelfTestWindow : Window
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Makes <paramref name="testGroup"/> the active test group.
|
||||
/// </summary>
|
||||
/// <param name="testGroup">The test group to make active.</param>
|
||||
private void SelectTestGroup(SelfTestGroup testGroup)
|
||||
{
|
||||
this.currentTestGroup = testGroup;
|
||||
this.StopTests();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Move `currentTest` to the next test. If there are no tests left, set `currentTest` to null.
|
||||
/// </summary>
|
||||
private void MoveToNextTest()
|
||||
{
|
||||
if (this.currentStep == null)
|
||||
{
|
||||
this.currentStep = this.visibleSteps.FirstOrDefault();
|
||||
return;
|
||||
}
|
||||
|
||||
var currentIndex = this.visibleSteps.IndexOf(this.currentStep);
|
||||
this.currentStep = this.visibleSteps.ElementAtOrDefault(currentIndex + 1);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Draws the unloaded plugin icon with tooltip.
|
||||
/// </summary>
|
||||
private void DrawUnloadedIcon()
|
||||
{
|
||||
ImGui.PushFont(UiBuilder.IconFont);
|
||||
ImGui.TextColored(ImGuiColors.DalamudGrey, FontAwesomeIcon.Unlink.ToIconString());
|
||||
ImGui.PopFont();
|
||||
|
||||
if (ImGui.IsItemHovered())
|
||||
{
|
||||
ImGui.SetTooltip("Plugin is unloaded");
|
||||
}
|
||||
}
|
||||
|
||||
private string FormatTimeSpan(TimeSpan ts)
|
||||
{
|
||||
var str = ts.ToString("g", CultureInfo.InvariantCulture);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.ClientState.Objects;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Dalamud.Utility;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.Addon.Lifecycle;
|
||||
using Dalamud.Game.Addon.Lifecycle.AddonArgTypes;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.ClientState.Aetherytes;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Dalamud.Utility;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ using Dalamud.Bindings.ImGui;
|
|||
using Dalamud.Game.Gui;
|
||||
using Dalamud.Game.Text;
|
||||
using Dalamud.Game.Text.SeStringHandling;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.Command;
|
||||
using Dalamud.Interface.Utility;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.ClientState.Conditions;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Serilog;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ using Dalamud.Game.ClientState.Objects.SubKinds;
|
|||
using Dalamud.Game.Gui.ContextMenu;
|
||||
using Dalamud.Game.Text;
|
||||
using Dalamud.Game.Text.SeStringHandling;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Lumina.Excel;
|
||||
using Lumina.Excel.Sheets;
|
||||
using Serilog;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,51 @@
|
|||
using Dalamud.Plugin.SelfTest.Internal;
|
||||
using Lumina.Excel.Sheets;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
/// <summary>
|
||||
/// Class handling Dalamud self-test registration.
|
||||
/// </summary>
|
||||
[ServiceManager.EarlyLoadedService]
|
||||
internal class DalamudSelfTest : IServiceType
|
||||
{
|
||||
[ServiceManager.ServiceConstructor]
|
||||
private DalamudSelfTest(SelfTestRegistry registry)
|
||||
{
|
||||
registry.RegisterDalamudSelfTestSteps([
|
||||
new LoginEventSelfTestStep(),
|
||||
new WaitFramesSelfTestStep(1000),
|
||||
new FrameworkTaskSchedulerSelfTestStep(),
|
||||
new EnterTerritorySelfTestStep(148, "Central Shroud"),
|
||||
new ItemPayloadSelfTestStep(),
|
||||
new ContextMenuSelfTestStep(),
|
||||
new NamePlateSelfTestStep(),
|
||||
new ActorTableSelfTestStep(),
|
||||
new FateTableSelfTestStep(),
|
||||
new AetheryteListSelfTestStep(),
|
||||
new ConditionSelfTestStep(),
|
||||
new ToastSelfTestStep(),
|
||||
new TargetSelfTestStep(),
|
||||
new KeyStateSelfTestStep(),
|
||||
new GamepadStateSelfTestStep(),
|
||||
new ChatSelfTestStep(),
|
||||
new HoverSelfTestStep(),
|
||||
new LuminaSelfTestStep<Item>(true),
|
||||
new LuminaSelfTestStep<Level>(true),
|
||||
new LuminaSelfTestStep<Lumina.Excel.Sheets.Action>(true),
|
||||
new LuminaSelfTestStep<Quest>(true),
|
||||
new LuminaSelfTestStep<TerritoryType>(false),
|
||||
new AddonLifecycleSelfTestStep(),
|
||||
new PartyFinderSelfTestStep(),
|
||||
new HandledExceptionSelfTestStep(),
|
||||
new DutyStateSelfTestStep(),
|
||||
new GameConfigSelfTestStep(),
|
||||
new MarketBoardSelfTestStep(),
|
||||
new SheetRedirectResolverSelfTestStep(),
|
||||
new NounProcessorSelfTestStep(),
|
||||
new SeStringEvaluatorSelfTestStep(),
|
||||
new CompletionSelfTestStep(),
|
||||
new LogoutEventSelfTestStep()
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.DutyState;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.ClientState;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.ClientState.Fates;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Dalamud.Utility;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
using System.Threading.Tasks;
|
||||
|
||||
using Dalamud.Game;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Dalamud.Utility;
|
||||
|
||||
using Microsoft.VisualBasic.Logging;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.Config;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ using System.Linq;
|
|||
|
||||
using Dalamud.Game.ClientState.GamePad;
|
||||
using Dalamud.Interface.Utility;
|
||||
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Lumina.Text.Payloads;
|
||||
|
||||
using LSeStringBuilder = Lumina.Text.SeStringBuilder;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
using System.Runtime.InteropServices;
|
||||
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.Gui;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.Gui;
|
||||
using Dalamud.Game.Text.SeStringHandling;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Dalamud.Utility;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.ClientState.Keys;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.ClientState;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.ClientState;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
using Dalamud.Data;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Dalamud.Utility;
|
||||
using Lumina.Excel;
|
||||
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ using Dalamud.Bindings.ImGui;
|
|||
using Dalamud.Game.MarketBoard;
|
||||
using Dalamud.Game.Network.Structures;
|
||||
using Dalamud.Interface.Utility;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ using Dalamud.Bindings.ImGui;
|
|||
using Dalamud.Game.Gui.NamePlate;
|
||||
using Dalamud.Game.Text.SeStringHandling;
|
||||
using Dalamud.Game.Text.SeStringHandling.Payloads;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ using Dalamud.Bindings.ImGui;
|
|||
using Dalamud.Game;
|
||||
using Dalamud.Game.Text.Noun;
|
||||
using Dalamud.Game.Text.Noun.Enums;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
using LSheets = Lumina.Excel.Sheets;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.Gui.PartyFinder;
|
||||
using Dalamud.Game.Gui.PartyFinder.Types;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ using Dalamud.Configuration.Internal;
|
|||
using Dalamud.Game.ClientState;
|
||||
using Dalamud.Game.Text.Evaluator;
|
||||
using Dalamud.Game.Text.SeStringHandling.Payloads;
|
||||
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using Lumina.Text.ReadOnly;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ using System.Runtime.InteropServices;
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game;
|
||||
using Dalamud.Game.Text.Evaluator.Internal;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
using FFXIVClientStructs.FFXIV.Client.System.String;
|
||||
using FFXIVClientStructs.FFXIV.Client.UI.Misc;
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ using Dalamud.Bindings.ImGui;
|
|||
using Dalamud.Game.ClientState.Objects;
|
||||
using Dalamud.Game.ClientState.Objects.SubKinds;
|
||||
using Dalamud.Game.ClientState.Objects.Types;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using Dalamud.Bindings.ImGui;
|
||||
using Dalamud.Game.Gui.Toast;
|
||||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
using Dalamud.Plugin.SelfTest;
|
||||
|
||||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ using Dalamud.Game.Text.Sanitizer;
|
|||
using Dalamud.Interface;
|
||||
using Dalamud.Interface.Internal;
|
||||
using Dalamud.Interface.Internal.Windows.PluginInstaller;
|
||||
using Dalamud.Interface.Internal.Windows.SelfTest;
|
||||
using Dalamud.Interface.Internal.Windows.Settings;
|
||||
using Dalamud.IoC.Internal;
|
||||
using Dalamud.Plugin.Internal;
|
||||
|
|
@ -25,6 +26,7 @@ using Dalamud.Plugin.Internal.Types.Manifest;
|
|||
using Dalamud.Plugin.Ipc;
|
||||
using Dalamud.Plugin.Ipc.Exceptions;
|
||||
using Dalamud.Plugin.Ipc.Internal;
|
||||
using Dalamud.Plugin.Services;
|
||||
|
||||
using Serilog;
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ using Dalamud.Plugin.Internal.Types.Manifest;
|
|||
using Dalamud.Plugin.Ipc;
|
||||
using Dalamud.Plugin.Ipc.Exceptions;
|
||||
using Dalamud.Plugin.Ipc.Internal;
|
||||
using Dalamud.Plugin.Services;
|
||||
|
||||
namespace Dalamud.Plugin;
|
||||
|
||||
|
|
|
|||
54
Dalamud/Plugin/SelfTest/ISelfTestRegistry.cs
Normal file
54
Dalamud/Plugin/SelfTest/ISelfTestRegistry.cs
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Dalamud.Plugin.SelfTest;
|
||||
|
||||
/// <summary>
|
||||
/// Interface for registering and unregistering self-test steps from plugins.
|
||||
/// </summary>
|
||||
/// <example>
|
||||
/// Registering custom self-test steps for your plugin:
|
||||
/// <code>
|
||||
/// [PluginService]
|
||||
/// public ISelfTestRegistry SelfTestRegistry { get; init; }
|
||||
///
|
||||
/// // In your plugin initialization
|
||||
/// this.SelfTestRegistry.RegisterTestSteps([
|
||||
/// new MyCustomSelfTestStep(),
|
||||
/// new AnotherSelfTestStep()
|
||||
/// ]);
|
||||
/// </code>
|
||||
///
|
||||
/// Creating a custom self-test step:
|
||||
/// <code>
|
||||
/// public class MyCustomSelfTestStep : ISelfTestStep
|
||||
/// {
|
||||
/// public string Name => "My Custom Test";
|
||||
///
|
||||
/// public SelfTestStepResult RunStep()
|
||||
/// {
|
||||
/// // Your test logic here
|
||||
/// if (/* test condition passes */)
|
||||
/// return SelfTestStepResult.Pass;
|
||||
///
|
||||
/// if (/* test condition fails */)
|
||||
/// return SelfTestStepResult.Fail;
|
||||
///
|
||||
/// // Still waiting for test to complete
|
||||
/// return SelfTestStepResult.Waiting;
|
||||
/// }
|
||||
///
|
||||
/// public void CleanUp()
|
||||
/// {
|
||||
/// // Clean up any resources used by the test
|
||||
/// }
|
||||
/// }
|
||||
/// </code>
|
||||
/// </example>
|
||||
public interface ISelfTestRegistry
|
||||
{
|
||||
/// <summary>
|
||||
/// Registers the self-test steps for this plugin.
|
||||
/// </summary>
|
||||
/// <param name="steps">The test steps to register.</param>
|
||||
public void RegisterTestSteps(IEnumerable<ISelfTestStep> steps);
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
namespace Dalamud.Interface.Internal.Windows.SelfTest.Steps;
|
||||
namespace Dalamud.Plugin.SelfTest;
|
||||
|
||||
/// <summary>
|
||||
/// Interface for test implementations.
|
||||
/// </summary>
|
||||
internal interface ISelfTestStep
|
||||
public interface ISelfTestStep
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the name of the test.
|
||||
28
Dalamud/Plugin/SelfTest/Internal/SelfTestGroup.cs
Normal file
28
Dalamud/Plugin/SelfTest/Internal/SelfTestGroup.cs
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
namespace Dalamud.Plugin.SelfTest.Internal;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a self-test group with its loaded/unloaded state.
|
||||
/// </summary>
|
||||
internal class SelfTestGroup
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SelfTestGroup"/> class.
|
||||
/// </summary>
|
||||
/// <param name="name">The name of the test group.</param>
|
||||
/// <param name="loaded">Whether the group is currently loaded.</param>
|
||||
public SelfTestGroup(string name, bool loaded = true)
|
||||
{
|
||||
this.Name = name;
|
||||
this.Loaded = loaded;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the name of the test group.
|
||||
/// </summary>
|
||||
public string Name { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this test group is currently loaded.
|
||||
/// </summary>
|
||||
public bool Loaded { get; set; }
|
||||
}
|
||||
124
Dalamud/Plugin/SelfTest/Internal/SelfTestRegistry.cs
Normal file
124
Dalamud/Plugin/SelfTest/Internal/SelfTestRegistry.cs
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
using Dalamud.Logging.Internal;
|
||||
using Dalamud.Plugin.Internal.Types;
|
||||
|
||||
namespace Dalamud.Plugin.SelfTest.Internal;
|
||||
|
||||
/// <summary>
|
||||
/// Registry for self-tests that can be run in the SelfTest window.
|
||||
/// </summary>
|
||||
[ServiceManager.EarlyLoadedService]
|
||||
internal class SelfTestRegistry : IServiceType
|
||||
{
|
||||
/// <summary>
|
||||
/// The name of the Dalamud test group.
|
||||
/// </summary>
|
||||
public const string DalamudTestGroup = "Dalamud";
|
||||
|
||||
private static readonly ModuleLog Log = new("SelfTestRegistry");
|
||||
|
||||
private List<SelfTestWithResults> dalamudSelfTests = new();
|
||||
private List<SelfTestWithResults> pluginSelfTests = new();
|
||||
private Dictionary<string, SelfTestGroup> allGroups = new();
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SelfTestRegistry"/> class.
|
||||
/// </summary>
|
||||
[ServiceManager.ServiceConstructor]
|
||||
public SelfTestRegistry()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets all available self test groups.
|
||||
/// </summary>
|
||||
public IEnumerable<SelfTestGroup> SelfTestGroups
|
||||
{
|
||||
get
|
||||
{
|
||||
// Always return Dalamud group first, then plugin groups
|
||||
if (this.allGroups.TryGetValue(DalamudTestGroup, out var dalamudGroup))
|
||||
{
|
||||
yield return dalamudGroup;
|
||||
}
|
||||
|
||||
foreach (var group in this.allGroups.Values)
|
||||
{
|
||||
if (group.Name != DalamudTestGroup)
|
||||
{
|
||||
yield return group;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets all self tests from all groups.
|
||||
/// </summary>
|
||||
public IEnumerable<SelfTestWithResults> SelfTests => this.dalamudSelfTests.Concat(this.pluginSelfTests);
|
||||
|
||||
/// <summary>
|
||||
/// Registers Dalamud self test steps.
|
||||
/// </summary>
|
||||
/// <param name="steps">The steps to register.</param>
|
||||
public void RegisterDalamudSelfTestSteps(IEnumerable<ISelfTestStep> steps)
|
||||
{
|
||||
// Ensure Dalamud group exists and is loaded
|
||||
if (!this.allGroups.ContainsKey(DalamudTestGroup))
|
||||
{
|
||||
this.allGroups[DalamudTestGroup] = new SelfTestGroup(DalamudTestGroup, loaded: true);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.allGroups[DalamudTestGroup].Loaded = true;
|
||||
}
|
||||
|
||||
this.dalamudSelfTests.AddRange(steps.Select(step => SelfTestWithResults.FromDalamudStep(step)));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Registers plugin self test steps.
|
||||
/// </summary>
|
||||
/// <param name="plugin">The plugin registering the tests.</param>
|
||||
/// <param name="steps">The steps to register.</param>
|
||||
public void RegisterPluginSelfTestSteps(LocalPlugin plugin, IEnumerable<ISelfTestStep> steps)
|
||||
{
|
||||
// Ensure plugin group exists and is loaded
|
||||
if (!this.allGroups.ContainsKey(plugin.InternalName))
|
||||
{
|
||||
this.allGroups[plugin.InternalName] = new SelfTestGroup(plugin.InternalName, loaded: true);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.allGroups[plugin.InternalName].Loaded = true;
|
||||
}
|
||||
|
||||
this.pluginSelfTests.AddRange(steps.Select(step => SelfTestWithResults.FromPluginStep(plugin, step)));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Unregisters all self test steps for a plugin.
|
||||
/// </summary>
|
||||
/// <param name="plugin">The plugin to unregister tests for.</param>
|
||||
public void UnregisterPluginSelfTestSteps(LocalPlugin plugin)
|
||||
{
|
||||
// Clean up existing tests for this plugin
|
||||
this.pluginSelfTests.ForEach(test =>
|
||||
{
|
||||
if (test.Plugin == plugin)
|
||||
{
|
||||
test.Unload();
|
||||
}
|
||||
});
|
||||
|
||||
this.pluginSelfTests.RemoveAll(test => test.Plugin == plugin);
|
||||
|
||||
// Mark group as unloaded if it exists
|
||||
if (this.allGroups.ContainsKey(plugin.InternalName))
|
||||
{
|
||||
this.allGroups[plugin.InternalName].Loaded = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
using Dalamud.IoC;
|
||||
using Dalamud.IoC.Internal;
|
||||
using Dalamud.Plugin.Internal.Types;
|
||||
|
||||
namespace Dalamud.Plugin.SelfTest.Internal;
|
||||
|
||||
/// <summary>
|
||||
/// Plugin-scoped version of SelfTestRegistry.
|
||||
/// </summary>
|
||||
[PluginInterface]
|
||||
[ServiceManager.ScopedService]
|
||||
[ResolveVia<ISelfTestRegistry>]
|
||||
internal class SelfTestRegistryPluginScoped : ISelfTestRegistry, IInternalDisposableService
|
||||
{
|
||||
[ServiceManager.ServiceDependency]
|
||||
private readonly SelfTestRegistry selfTestRegistry = Service<SelfTestRegistry>.Get();
|
||||
|
||||
private readonly LocalPlugin plugin;
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SelfTestRegistryPluginScoped"/> class.
|
||||
/// </summary>
|
||||
/// <param name="plugin">The plugin this service belongs to.</param>
|
||||
[ServiceManager.ServiceConstructor]
|
||||
public SelfTestRegistryPluginScoped(LocalPlugin plugin)
|
||||
{
|
||||
this.plugin = plugin;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the plugin name.
|
||||
/// </summary>
|
||||
public string PluginName { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Registers test steps for this plugin.
|
||||
/// </summary>
|
||||
/// <param name="steps">The test steps to register.</param>
|
||||
public void RegisterTestSteps(IEnumerable<ISelfTestStep> steps)
|
||||
{
|
||||
this.selfTestRegistry.RegisterPluginSelfTestSteps(this.plugin, steps);
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
void IInternalDisposableService.DisposeService()
|
||||
{
|
||||
this.selfTestRegistry.UnregisterPluginSelfTestSteps(this.plugin);
|
||||
}
|
||||
}
|
||||
173
Dalamud/Plugin/SelfTest/Internal/SelfTestWithResults.cs
Normal file
173
Dalamud/Plugin/SelfTest/Internal/SelfTestWithResults.cs
Normal file
|
|
@ -0,0 +1,173 @@
|
|||
using Dalamud.Logging.Internal;
|
||||
using Dalamud.Plugin.Internal.Types;
|
||||
|
||||
namespace Dalamud.Plugin.SelfTest.Internal;
|
||||
|
||||
/// <summary>
|
||||
/// A self test step with result tracking.
|
||||
/// </summary>
|
||||
internal class SelfTestWithResults
|
||||
{
|
||||
private static readonly ModuleLog Log = new("SelfTest");
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SelfTestWithResults"/> class.
|
||||
/// </summary>
|
||||
/// <param name="plugin">The plugin providing this test.</param>
|
||||
/// <param name="group">The test group name.</param>
|
||||
/// <param name="step">The test step.</param>
|
||||
public SelfTestWithResults(LocalPlugin plugin, string group, ISelfTestStep step)
|
||||
{
|
||||
this.Plugin = plugin;
|
||||
this.Group = group;
|
||||
this.Step = step;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the test group name.
|
||||
/// </summary>
|
||||
public string Group { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the plugin that defined these tests. <c>null</c> for Dalamud tests.
|
||||
/// </summary>
|
||||
public LocalPlugin? Plugin { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the test name.
|
||||
/// </summary>
|
||||
public string Name { get => this.Step.Name; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the test has run and finished.
|
||||
/// </summary>
|
||||
public bool Finished => this.Result == SelfTestStepResult.Fail || this.Result == SelfTestStepResult.Pass;
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the plugin that provided this test has been unloaded.
|
||||
/// </summary>
|
||||
public bool Unloaded => this.Step == null;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the most recent result of running this test.
|
||||
/// </summary>
|
||||
public SelfTestStepResult Result { get; private set; } = SelfTestStepResult.NotRan;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the last time this test was started.
|
||||
/// </summary>
|
||||
public DateTimeOffset? StartTime { get; private set; } = null;
|
||||
|
||||
/// <summary>
|
||||
/// Gets how long it took (or is taking) for this test to execute.
|
||||
/// </summary>
|
||||
public TimeSpan? Duration { get; private set; } = null;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the Step that our results are for.
|
||||
///
|
||||
/// If <c>null</c> it means the Plugin that provided this test has been unloaded and we can't use this test anymore.
|
||||
/// </summary>
|
||||
private ISelfTestStep? Step { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Creates a SelfTestWithResults from a Dalamud step.
|
||||
/// </summary>
|
||||
/// <param name="step">The step to wrap.</param>
|
||||
/// <returns>A new SelfTestWithResults instance.</returns>
|
||||
public static SelfTestWithResults FromDalamudStep(ISelfTestStep step)
|
||||
{
|
||||
return new SelfTestWithResults(plugin: null, group: "Dalamud", step: step);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates a SelfTestWithResults from a plugin step.
|
||||
/// </summary>
|
||||
/// <param name="plugin">The plugin providing the step.</param>
|
||||
/// <param name="step">The step to wrap.</param>
|
||||
/// <returns>A new SelfTestWithResults instance.</returns>
|
||||
public static SelfTestWithResults FromPluginStep(LocalPlugin plugin, ISelfTestStep step)
|
||||
{
|
||||
return new SelfTestWithResults(plugin: plugin, group: plugin.InternalName, step: step);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Reset the test.
|
||||
/// </summary>
|
||||
public void Reset()
|
||||
{
|
||||
this.Result = SelfTestStepResult.NotRan;
|
||||
this.StartTime = null;
|
||||
this.Duration = null;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Finish the currently running test and clean up any state. This preserves test run results.
|
||||
/// </summary>
|
||||
public void Finish()
|
||||
{
|
||||
if (this.Step == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.Result == SelfTestStepResult.NotRan)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
this.Step.CleanUp();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Steps the state of this Self Test. This should be called every frame that we care about the results of this test.
|
||||
/// </summary>
|
||||
public void DrawAndStep()
|
||||
{
|
||||
// If we've been unloaded then there's nothing to do.
|
||||
if (this.Step == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// If we have already finished then there's nothing to do
|
||||
if (this.Finished)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Otherwise, we assume that calling this functions means we are running the test.
|
||||
if (this.Result == SelfTestStepResult.NotRan)
|
||||
{
|
||||
this.StartTime = DateTimeOffset.Now;
|
||||
this.Result = SelfTestStepResult.Waiting;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
this.Result = this.Step.RunStep();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Log.Error(ex, $"Step failed: {this.Name} ({this.Group})");
|
||||
this.Result = SelfTestStepResult.Fail;
|
||||
}
|
||||
|
||||
this.Duration = DateTimeOffset.Now - this.StartTime;
|
||||
|
||||
// If we ran and finished we need to clean up
|
||||
if (this.Finished)
|
||||
{
|
||||
this.Finish();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Unloads the test and cleans up.
|
||||
/// </summary>
|
||||
public void Unload()
|
||||
{
|
||||
this.Finish();
|
||||
this.Step = null;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
namespace Dalamud.Interface.Internal.Windows.SelfTest;
|
||||
namespace Dalamud.Plugin.SelfTest;
|
||||
|
||||
/// <summary>
|
||||
/// Enum declaring result states of tests.
|
||||
/// </summary>
|
||||
internal enum SelfTestStepResult
|
||||
public enum SelfTestStepResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Test was not ran.
|
||||
|
|
@ -18,6 +18,7 @@ using Dalamud.Game;
|
|||
using Dalamud.Game.ClientState.Objects.SubKinds;
|
||||
using Dalamud.Game.ClientState.Objects.Types;
|
||||
using Dalamud.Interface.Colors;
|
||||
using Dalamud.Interface.Internal;
|
||||
using Dalamud.Interface.Utility;
|
||||
using Dalamud.Interface.Utility.Raii;
|
||||
using Dalamud.Support;
|
||||
|
|
@ -28,8 +29,6 @@ using Windows.Win32.System.Memory;
|
|||
using Windows.Win32.System.Ole;
|
||||
using Windows.Win32.UI.WindowsAndMessaging;
|
||||
|
||||
using Dalamud.Interface.Internal;
|
||||
|
||||
using FLASHWINFO = Windows.Win32.UI.WindowsAndMessaging.FLASHWINFO;
|
||||
using HWND = Windows.Win32.Foundation.HWND;
|
||||
using MEMORY_BASIC_INFORMATION = Windows.Win32.System.Memory.MEMORY_BASIC_INFORMATION;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue