Files
TeslaSuite/Console/tests/TeslaConsole.DiffTests/CatalogTests.cs
T
CydandClaude Opus 4.8 ce094535fa Add RIOJoy to the product catalog
RIOJoy (the cockpit RIO → virtual-gamepad feeder; separate net48 repo) is now an
installable/launchable product in Console/RedPlanet/Apps.xml. Its dist zip is
already TeslaConsole-shaped (postinstall.bat + RIOJoy\ → extracts to C:\Games, the
launcher runs postinstall.bat as SYSTEM to install ViGEmBus + register auto-start),
so this is the only change needed on the TeslaSuite side.

- Launch entry exe C:\Games\RIOJoy\app\RioJoy.Tray.exe, autoRestart=false (the
  postinstall HKLM Run entry owns startup; the catalog entry is for registration +
  manual restart from the console).
- CatalogTests: bumped the count guard to 4 products / 6 entries and added a
  byte-exact LaunchData check for the RIOJoy entry. 74 tests green.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-30 14:13:36 -05:00

84 lines
3.8 KiB
C#

using System.IO;
using Xunit;
namespace TeslaConsole.DiffTests
{
/// <summary>
/// Characterization tests for the data-driven product catalog (AppRegistry + RedPlanet\Apps.xml).
/// These assert the catalog reproduces the EXACT LaunchData the previously-hardcoded
/// SiteManagement code produced, so the refactor is behavior-preserving. Catalog logic is new
/// (absent from the original exe), so these run against the recovered build only.
/// </summary>
public class CatalogTests : IClassFixture<DifferentialFixture>
{
private readonly DifferentialFixture _fx;
private readonly string _catalog;
public CatalogTests(DifferentialFixture fx)
{
_fx = fx;
_catalog = AssemblyPaths.RecoveredCatalog;
Assert.True(File.Exists(_catalog), "Catalog not found next to the build: " + _catalog);
}
private string Entry(string launchKey, string w = "", string h = "")
=> _fx.Recovered.Run("CatalogEntry", new[] { _catalog, launchKey, w, h });
[Fact]
public void Catalog_Has_Four_Products_And_Six_Entries()
=> Assert.Equal("products=4;entries=6",
_fx.Recovered.Run("CatalogSummary", new[] { _catalog }));
[Fact]
public void RioJoy_Matches_Expected()
=> Assert.Equal(
@"RIOJoy|fe83e212-45df-48f9-848e-0b3cee0692a3|C:\Games\RIOJoy\app\RioJoy.Tray.exe||C:\Games\RIOJoy\app|False",
Entry("FE83E212-45DF-48F9-848E-0B3CEE0692A3"));
// Each expected string is "DisplayName|LaunchKey|Exe|Args|WorkingDirectory|AutoRestart"
// and matches exactly what the old hardcoded PodInfo_InstallProductCompleted emitted.
[Fact]
public void RedPlanet_GameClient_Matches_Original()
=> Assert.Equal(
@"Red Planet 4.11|7d241b1f-ab6d-4e08-9c20-12294e743d94|C:\Games\RP411\rpl4opt.exe|-net 1501|C:\Games\RP411|True",
Entry("7D241B1F-AB6D-4e08-9C20-12294E743D94"));
[Fact]
public void RedPlanet_GameClient_With_Resolution_Matches_Original()
=> Assert.Equal(
@"Red Planet 4.11|7d241b1f-ab6d-4e08-9c20-12294e743d94|C:\Games\RP411\rpl4opt.exe|-net 1501 -res 1024 768|C:\Games\RP411|True",
Entry("7D241B1F-AB6D-4e08-9C20-12294E743D94", "1024", "768"));
[Fact]
public void RedPlanet_LiveCamera_Matches_Original()
=> Assert.Equal(
@"Red Planet 4.11 LC|57a0b3c2-d5cf-46d6-abed-a8f4a26ab086|C:\Games\RP411\rpl4opt.exe|-net 1501 -lc|C:\Games\RP411|True",
Entry("57A0B3C2-D5CF-46d6-ABED-A8F4A26AB086"));
[Fact]
public void RedPlanet_LiveCamera_With_Resolution_Matches_Original()
=> Assert.Equal(
@"Red Planet 4.11 LC|57a0b3c2-d5cf-46d6-abed-a8f4a26ab086|C:\Games\RP411\rpl4opt.exe|-net 1501 -res 1024 768 -lc|C:\Games\RP411|True",
Entry("57A0B3C2-D5CF-46d6-ABED-A8F4A26AB086", "1024", "768"));
[Fact]
public void RedPlanet_MissionReview_Matches_Original()
=> Assert.Equal(
@"Red Planet 4.11 MR|8f71d5c2-38e4-413c-8e22-88cad08774d2|C:\Games\RP411\rpl4opt.exe|-net 1501 -mr|C:\Games\RP411|True",
Entry("8F71D5C2-38E4-413c-8E22-88CAD08774D2"));
[Fact]
public void Firestorm_Matches_Original()
=> Assert.Equal(
@"BattleTech Firestorm|cc8500ed-a653-45a7-bef8-c332d30371a6|C:\Games\MW4\launcher.exe||C:\Games\MW4|True",
Entry("CC8500ED-A653-45a7-BEF8-C332D30371A6"));
[Fact]
public void FirestormLC_Matches_Original()
=> Assert.Equal(
@"BattleTech Firestorm LC|8ee93a6c-f16a-49be-b867-37fae9087fff|C:\Games\MW4\launcher.exe||C:\Games\MW4|True",
Entry("8EE93A6C-F16A-49be-B867-37FAE9087FFF"));
}
}