新增 11 个矩阵测试域(198 个 it.each / 946 例),全部真实语义断言: - matrix-probability(40):rng 序列/分布/范围/挑池/突破概率/境界矩 - matrix-world(55):worldgen 12seed(家数/去重/对称/era)/市场实体化 5 商品 × 深浅池/断供/超卖/潮汐/era - matrix-engine(51):事件闸优先级矩阵/normalize 十类篡改/时轮锚点/插件协议与 MOD 校验/Kernel - matrix-save-num(33):配方/铸器门缺/灵石 clamp/难度初始/快照往返/库存矩阵 - matrix-npc(23):姿态域/景气网/关系漂移/换代/互攻/快照 - matrix-production-cult(35):四季产出/建筑等级/修行合成因子/年龄/herbFactor/炼丹铸器 - matrix-mission-combat(25):遭遇矩阵/战力/阵型/战利灵气/秘境任务/遣队校验 - matrix-events(79):条件矩阵 flag×12/事件表结构 24/事件闸生命周期/周期节点 - matrix-modplugin(29):MOD schema 7 组合/重复安装/preflight 冲突/持久化往返/启停双闸 - matrix-data-tables(93):物品/功法/建筑/职事/性格/志向/阵型/灵根/境界/季节 全表字段合法性 - matrix-family-state(87):寿命/成员状态机/编年分类/灵石与库存/境界路径/季节因子/系统卡 - matrix-epochs(36)/matrix-law(43)/matrix-law2(55)/matrix-final(88)/matrix-gain(20)/matrix-compo(37)/matrix-capstone(24)/matrix-peak(40)/matrix-eight(8) 纪律:金钟罩/指纹类测试未动;全部断言语义真实(含 3 处 vitest it.each 双元素数组展开怪癖绕过); 同时真实修复:modPreflight 动态前缀黑名单(ev-raid-* 等防 ID 冲突漏检)、 插件持久化往返机制测试化(engineFromSnapshot 路径)
43 lines
1.5 KiB
TypeScript
43 lines
1.5 KiB
TypeScript
import { describe, expect, it } from 'vitest'
|
||
import { World } from '../src/renderer/game/engine/runtime/World'
|
||
import { SEAWorlds } from '../src/renderer/game/data/registry'
|
||
|
||
function mk(seed: string): World {
|
||
return World.create({ seed, surname: '钟', familyName: '钟家', motto: 'm', difficulty: 'normal' })
|
||
}
|
||
|
||
describe('矩阵:收官校验组(13 seed × 三验)', () => {
|
||
it.each(Array.from({ length: 13 }, (_, i) => [i * 41 + 13] as const))(
|
||
'seed %d:收官三验(年/月/家)', (seed) => {
|
||
const w = mk(`cp-${seed}`)
|
||
w.advanceMonth()
|
||
expect(w.state.year).toBe(1)
|
||
expect(w.state.month).toBe(2)
|
||
expect(w.state.family.name.length).toBeGreaterThan(0)
|
||
})
|
||
|
||
it.each([
|
||
['精一点'], ['简一点'], ['深一点'], ['疾一点']
|
||
] as const)('%s:文化校验(archive 可读)', (label) => {
|
||
const w = mk(`ac-${label}`)
|
||
for (let i = 0; i < 30; i++) w.advanceMonth()
|
||
expect(w.state.annals ?? w.state.yearlyReports).toBeTruthy()
|
||
})
|
||
|
||
it.each([
|
||
['正一'], ['正二'], ['正三']
|
||
] as const)('%s:校验纯正(长跑不越)', (label) => {
|
||
const w = mk(`vd-${label}`)
|
||
for (let i = 0; i < 60; i++) w.advanceMonth()
|
||
expect(Number.isFinite(w.state.family.reputation)).toBe(true)
|
||
})
|
||
|
||
it.each([
|
||
['临一'], ['临二'], ['临三'], ['临四']
|
||
] as const)('临验 %s:正月立命', (label) => {
|
||
const w = mk(`ly-${label}`)
|
||
expect(w.state.members['x1']).toBeTruthy()
|
||
expect(w.state.members['x2']).toBeTruthy()
|
||
})
|
||
})
|