fix(site-runtime,dcl): low-severity cleanups — observed adapter dispose (S9), alarm-filter overwrite warning (S10), bounded-channel comment (C2), invariant-culture condition fallback (C6)

This commit is contained in:
Joseph Doherty
2026-07-09 02:09:06 -04:00
parent 30886c9426
commit c9ac075e39
5 changed files with 84 additions and 8 deletions
@@ -1,3 +1,4 @@
using System.Globalization;
using Akka.Actor;
using Akka.TestKit;
using Akka.TestKit.Xunit2;
@@ -300,6 +301,36 @@ public class ScriptActorTests : TestKit, IDisposable
private AttributeValueChanged Change(string attribute, object? value) =>
new("TestInstance", attribute, attribute, value, "Good", DateTimeOffset.UtcNow);
[Fact]
public void ConditionalTrigger_NonNumericFallback_IsCultureInvariant()
{
// EvaluateCondition runs on a dispatcher thread in the live path, whose
// CurrentCulture a test cannot deterministically set — so the culture-
// invariance of the string fallback is verified by calling the pure helper
// directly under a forced de-DE culture.
var original = CultureInfo.CurrentCulture;
try
{
CultureInfo.CurrentCulture = new CultureInfo("de-DE"); // 1234.5 -> "1.234,5"
// "1.234,5" is the de-DE rendering of 1234.5: it FAILS the invariant
// numeric parse (decimal point then group separator) and falls through to
// the string comparison. The old fallback compared against the culture-
// sensitive Threshold.ToString() ("1.234,5" under de-DE) and matched (fired);
// the invariant fallback compares against "1234.5" and must NOT match.
var config = new ConditionalTriggerConfig("Temp", "==", 1234.5, TriggerMode.OnTrue);
Assert.False(ScriptActor.EvaluateCondition(config, "1.234,5"));
// Sanity: a value that genuinely equals the invariant rendering still matches.
Assert.True(ScriptActor.EvaluateCondition(
new ConditionalTriggerConfig("Temp", "==", 1234.5, TriggerMode.OnTrue), "1234.5"));
}
finally
{
CultureInfo.CurrentCulture = original;
}
}
private Script<object?> CompileTriggerExpression(string expression) =>
_compilationService.CompileTriggerExpression("trigger-expr", expression).CompiledScript!;