test(playwright): CliRunner AddAlarm + alarm-override-delete helpers + round-trip (typed flags)

This commit is contained in:
Joseph Doherty
2026-06-07 10:05:32 -04:00
parent bbc3804d07
commit f0b144ebda
2 changed files with 59 additions and 0 deletions
@@ -100,6 +100,34 @@ public static partial class CliRunner
await RunAsync([.. args]);
}
/// <summary>
/// Adds an alarm to a template via <c>template alarm add</c> (using the typed setpoint
/// flags) and returns its new <c>id</c>. Throws on failure.
/// </summary>
public static async Task<int> AddAlarmAsync(
int templateId, string name, string triggerType = "HiLo", int priority = 500,
string? attribute = null, double? hi = null, double? hiHi = null,
double? lo = null, double? loLo = null)
{
var inv = System.Globalization.CultureInfo.InvariantCulture;
var args = new List<string>
{
"template", "alarm", "add",
"--template-id", templateId.ToString(inv),
"--name", name,
"--trigger-type", triggerType,
"--priority", priority.ToString(inv),
};
if (attribute is not null) { args.Add("--attribute"); args.Add(attribute); }
if (hi.HasValue) { args.Add("--hi"); args.Add(hi.Value.ToString(inv)); }
if (hiHi.HasValue) { args.Add("--hihi"); args.Add(hiHi.Value.ToString(inv)); }
if (lo.HasValue) { args.Add("--lo"); args.Add(lo.Value.ToString(inv)); }
if (loLo.HasValue) { args.Add("--lolo"); args.Add(loLo.Value.ToString(inv)); }
using var doc = await RunJsonAsync([.. args]);
return RequireId(doc, "template alarm add");
}
/// <summary>
/// Creates an area under a site via <c>site area create</c> and returns its
/// new <c>id</c>.
@@ -558,6 +586,18 @@ public static partial class CliRunner
}
}
/// <summary>Best-effort delete of an instance alarm override (teardown). Never throws.</summary>
public static async Task DeleteInstanceAlarmOverrideAsync(int instanceId, string alarmCanonicalName)
{
var inv = System.Globalization.CultureInfo.InvariantCulture;
try
{
await RunAsync("instance", "alarm-override", "delete",
"--instance-id", instanceId.ToString(inv), "--alarm", alarmCanonicalName);
}
catch { /* best-effort teardown — never mask the test's own failure. */ }
}
/// <summary>
/// Exports a Transport bundle scoped to a single template via
/// <c>bundle export</c>.
@@ -188,4 +188,23 @@ public class CliRunnerHelpersTests
}
finally { await CliRunner.DeleteRoleMappingAsync(id); }
}
/// <summary>
/// Exercises the typed HiLo setpoint flags end-to-end: a template alarm added via
/// <see cref="CliRunner.AddAlarmAsync"/> with <c>--hi</c>/<c>--hihi</c> returns a
/// positive id, confirming the server accepted the serialized trigger-config JSON.
/// </summary>
[SkippableFact]
public async Task AddAlarmWithTypedFlags_RoundTrips()
{
Skip.IfNot(await ClusterAvailability.IsAvailableAsync(), ClusterAvailability.SkipReason);
var id = await CliRunner.CreateTemplateAsync(CliRunner.UniqueName("tmpl"));
try
{
await CliRunner.AddAttributeAsync(id, "Value", "Double");
var alarmId = await CliRunner.AddAlarmAsync(id, "HiHi", "HiLo", 500, attribute: "Value", hi: 80, hiHi: 95);
Assert.True(alarmId > 0); // server accepted the serialized trigger-config JSON
}
finally { await CliRunner.DeleteTemplateAsync(id); }
}
}