Completes the BattleTech console feature to parity with Red Planet: - BTPrintDocument: the per-pilot landscape score sheet (mech portrait, placing, kill/death/damage stats, randomized mission-highlights narrative, pilot-vs-pilot damage matrix, place-over-time chart), mirroring RPPrintDocument minus the football/lap/boost/score-zone concepts. Wired into BTGame (Auto Print checkbox + Print Last Mission button) and the shell's File menu (BT Mission Print Preview / Print BT Mission, loading .btm files). - BTStrings(.xml): the BT mission-highlight narrative pools (damage tiers, kill, death-without-honor, recap), loaded from BattleTech\BTStrings.xml like RPStrings. - BTDefaultsDialog: two-column (Free For All / No Return) editor for the BT operator defaults, reachable from Settings (Change/Import/Export BattleTech Defaults). Verified via UI Automation: opens with all 18 option combos populated. - Apps.xml: the BattleTech 4.11 product (btl4.exe on the shared RP411 engine, same -net/-res/-lc/-mr command line; deploys to C:\Games\BT411) with Game Client / Live Camera / Mission Review launch entries. CatalogTests updated to 4 products / 8 entries plus the three new BT entry assertions. Role model spelling corrected to "noreturn": the Mac Console.ini tag and the game's BTL4.RES role resource are dfltrole/NoReturn; the 4.10 console's eggs emitted a broken "noretun" that cannot resolve against the RES. BTGoldenEggTests and BTConfig.xml updated accordingly. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
105 lines
4.9 KiB
C#
105 lines
4.9 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_Eight_Entries()
|
|
=> Assert.Equal("products=4;entries=8",
|
|
_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|True",
|
|
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"));
|
|
|
|
// BattleTech 4.11 is a new product (no original counterpart); these pin the
|
|
// catalog entries the console registers on BT pods.
|
|
|
|
[Fact]
|
|
public void BattleTech_GameClient_Matches_Expected()
|
|
=> Assert.Equal(
|
|
@"BattleTech 4.11|f4c957fd-72f7-4c5f-8971-28095007e8df|C:\Games\BT411\btl4.exe|-net 1501|C:\Games\BT411|True",
|
|
Entry("F4C957FD-72F7-4C5F-8971-28095007E8DF"));
|
|
|
|
[Fact]
|
|
public void BattleTech_GameClient_With_Resolution_Matches_Expected()
|
|
=> Assert.Equal(
|
|
@"BattleTech 4.11|f4c957fd-72f7-4c5f-8971-28095007e8df|C:\Games\BT411\btl4.exe|-net 1501 -res 1024 768|C:\Games\BT411|True",
|
|
Entry("F4C957FD-72F7-4C5F-8971-28095007E8DF", "1024", "768"));
|
|
|
|
[Fact]
|
|
public void BattleTech_LiveCamera_Matches_Expected()
|
|
=> Assert.Equal(
|
|
@"BattleTech 4.11 LC|d393711a-eda0-48b2-82a0-89df12b768af|C:\Games\BT411\btl4.exe|-net 1501 -lc|C:\Games\BT411|True",
|
|
Entry("D393711A-EDA0-48B2-82A0-89DF12B768AF"));
|
|
|
|
[Fact]
|
|
public void BattleTech_MissionReview_Matches_Expected()
|
|
=> Assert.Equal(
|
|
@"BattleTech 4.11 MR|2e9b8628-9c20-42fb-b070-e9c38d521082|C:\Games\BT411\btl4.exe|-net 1501 -mr|C:\Games\BT411|True",
|
|
Entry("2E9B8628-9C20-42FB-B070-E9C38D521082"));
|
|
}
|
|
}
|