- PdfSharpCore 1.3.64 引入(纯托管,Unity IL2CPP 兼容,+9 DLL) - ReportData 结构化模型 + MarkdownRenderer + StandardPdfTemplate - IReportService.ExportReport(id, format) 按需导出 PDF/MD - 仿真后自动生成 MD 到 reports 目录,PDF 按需调用 - CJK 字体嵌入(SimHei),IPathProvider + GetFontPath - ReportGenerator 重构为构建 ReportData,去掉 emoji - check_unity_build.ps1 修复 -quit 参数缺失导致超时 - 对接文档 V2.0:坐标系/3D 可视化/完整枚举/Manager 签名/模型字段 - 262 测试全部通过
103 lines
4.2 KiB
C#
103 lines
4.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using CounterDrone.Core;
|
|
using CounterDrone.Core.Models;
|
|
using SQLite;
|
|
|
|
namespace CounterDrone.Core.Tests
|
|
{
|
|
/// <summary>测试辅助:从 seeded 数据库读取(与生产环境同源)</summary>
|
|
internal static class TestData
|
|
{
|
|
private static readonly string _tempDir;
|
|
private static readonly SQLiteConnection _db;
|
|
|
|
static TestData()
|
|
{
|
|
_tempDir = Path.Combine(Path.GetTempPath(), $"cd_td_{Guid.NewGuid():N}");
|
|
var paths = new TestPathProvider(_tempDir);
|
|
var dbm = new DatabaseManager(paths);
|
|
_db = dbm.OpenMainDb();
|
|
}
|
|
|
|
private static List<AmmunitionSpec>? _ammo;
|
|
public static List<AmmunitionSpec> Ammo =>
|
|
_ammo ??= new List<AmmunitionSpec>(_db.Table<AmmunitionSpec>());
|
|
|
|
private static DroneSpec? _droneSpec;
|
|
public static DroneSpec DefaultDroneSpec => _droneSpec ??= _db.Table<DroneSpec>().First(d => d.Id == "shahed");
|
|
|
|
private static LaunchPlatformSpec? _groundSpec;
|
|
public static LaunchPlatformSpec GroundSpec => _groundSpec ??= _db.Table<LaunchPlatformSpec>().First(f => f.Id == "ground-light");
|
|
|
|
public static ScenarioDrone CreateScenarioDrone(string waveId = "w1", int quantity = 1)
|
|
=> new() { DroneSpecId = DefaultDroneSpec.Id, WaveId = waveId, Quantity = quantity };
|
|
|
|
public static ScenarioDrone CreateScenarioDroneWithId(string scenarioId, string waveId = "w1", int quantity = 1)
|
|
=> new() { ScenarioId = scenarioId, DroneSpecId = DefaultDroneSpec.Id, WaveId = waveId, Quantity = quantity };
|
|
|
|
public static ScenarioUnit CreateScenarioUnit(double px, double py, double pz,
|
|
int ammoType = 0, int? munitionCount = null)
|
|
=> new() { LaunchPlatformSpecId = "ground-light", SensorSpecId = "radar-sr", PositionX = px, PositionY = py, PositionZ = pz,
|
|
AerosolType = ammoType, MunitionCount = munitionCount ?? 8, Quantity = 1 };
|
|
|
|
private static LaunchPlatformSpec? _defaultFuSpec;
|
|
public static LaunchPlatformSpec DefaultFuSpec => _defaultFuSpec ??= new LaunchPlatformSpec
|
|
{
|
|
Id = "test-fu", PlatformType = (int)PlatformType.GroundBased,
|
|
GunCount = 1, ChannelsPerGun = 8, ChannelInterval = 1,
|
|
MuzzleVelocity = 800, Cooldown = 5, AmmoChangeTime = 30,
|
|
};
|
|
|
|
private static SensorSpec? _sensorSpec;
|
|
public static SensorSpec DefaultSensorSpec => _sensorSpec ??= new SensorSpec
|
|
{
|
|
Id = "test-sensor", RadarRange = 3000, Accuracy = 50,
|
|
};
|
|
|
|
public static ScenarioUnit CreateDetectionUnit(double px, double py, double pz)
|
|
=> new()
|
|
{
|
|
SensorSpecId = "radar-mr",
|
|
EquipmentRole = (int)EquipmentRole.Detection,
|
|
PositionX = px, PositionY = py, PositionZ = pz, Quantity = 1
|
|
};
|
|
|
|
public static Dictionary<string, DroneSpec> EmptyDroneSpecs => new();
|
|
public static Dictionary<string, LaunchPlatformSpec> EmptyFuSpecs => new();
|
|
public static Dictionary<string, SensorSpec> EmptySensorSpecs => new();
|
|
|
|
private static DefaultData? _all;
|
|
public static DefaultData All
|
|
{
|
|
get
|
|
{
|
|
if (_all == null)
|
|
{
|
|
var dir = TestPathProvider.FindProjectDataDirectory()!;
|
|
_all = DefaultData.Load(new DirPathProvider(dir));
|
|
}
|
|
return _all;
|
|
}
|
|
}
|
|
|
|
private class DirPathProvider : IPathProvider
|
|
{
|
|
private readonly string _dir;
|
|
public DirPathProvider(string dir) => _dir = dir;
|
|
public string GetDataRoot() => _dir;
|
|
public string GetMainDbPath() => throw new NotImplementedException();
|
|
public string GetFramesDir() => throw new NotImplementedException();
|
|
public string GetModelsDir() => throw new NotImplementedException();
|
|
public string GetFontPath() => throw new NotImplementedException();
|
|
}
|
|
|
|
public static void Cleanup()
|
|
{
|
|
_db?.Close();
|
|
if (Directory.Exists(_tempDir)) Directory.Delete(_tempDir, true);
|
|
}
|
|
}
|
|
}
|