feat(v2.4): 切换需求池领域主写
This commit is contained in:
67
apps/web/lib/requirement-domain-write-source.test.ts
Normal file
67
apps/web/lib/requirement-domain-write-source.test.ts
Normal file
@@ -0,0 +1,67 @@
|
||||
import assert from 'node:assert/strict';
|
||||
import { readFileSync } from 'node:fs';
|
||||
import { join } from 'node:path';
|
||||
import test from 'node:test';
|
||||
|
||||
const storeSource = () => readFileSync(join(process.cwd(), 'stores/useRequirementStore.ts'), 'utf8');
|
||||
const pageSource = () => readFileSync(join(process.cwd(), 'app/requirements/page.tsx'), 'utf8');
|
||||
|
||||
function storeMethodBody(text: string, name: string) {
|
||||
const start = text.indexOf(` ${name}:`);
|
||||
assert.notEqual(start, -1, `missing store method ${name}`);
|
||||
|
||||
let depth = 0;
|
||||
let sawFirstBrace = false;
|
||||
for (let i = start; i < text.length; i += 1) {
|
||||
const char = text[i];
|
||||
if (char === '{') {
|
||||
depth += 1;
|
||||
sawFirstBrace = true;
|
||||
}
|
||||
if (char === '}') {
|
||||
depth -= 1;
|
||||
if (sawFirstBrace && depth === 0) {
|
||||
return text.slice(start, i + 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
throw new Error(`could not extract store method ${name}`);
|
||||
}
|
||||
|
||||
test('requirement store imports domain requirement write helpers', () => {
|
||||
const text = storeSource();
|
||||
|
||||
assert.match(text, /from '@\/lib\/domain-api'/);
|
||||
assert.match(text, /createRequirementByProductId/);
|
||||
assert.match(text, /updateRequirementByProductId/);
|
||||
assert.match(text, /deleteRequirementByProductId/);
|
||||
});
|
||||
|
||||
test('requirement mutations use domain APIs instead of AppData requirements saves', () => {
|
||||
const text = storeSource();
|
||||
const createRequirement = storeMethodBody(text, 'createRequirement');
|
||||
const updateRequirement = storeMethodBody(text, 'updateRequirement');
|
||||
const deleteRequirement = storeMethodBody(text, 'deleteRequirement');
|
||||
|
||||
assert.match(createRequirement, /createRequirementByProductId\(newReq\.productId,/);
|
||||
assert.match(updateRequirement, /updateRequirementByProductId\(productId, id,/);
|
||||
assert.match(deleteRequirement, /deleteRequirementByProductId\(productId, id\)/);
|
||||
assert.doesNotMatch(createRequirement, /saveServerData\('requirements'/);
|
||||
assert.doesNotMatch(updateRequirement, /saveServerData\('requirements'/);
|
||||
assert.doesNotMatch(deleteRequirement, /saveServerData\('requirements'/);
|
||||
});
|
||||
|
||||
test('requirement pool uses server pagination without full AppData load for scoped list queries', () => {
|
||||
const text = pageSource();
|
||||
|
||||
assert.match(text, /loadV22RequirementsPage\(v22RequirementQuery\)/);
|
||||
assert.match(text, /if \(v22RequirementQuery && !v22RequirementsFailed\) return;\s+fetchRequirements\(\);/);
|
||||
});
|
||||
|
||||
test('relation-backed requirement rows remain mutable without AppData identity', () => {
|
||||
const text = pageSource();
|
||||
|
||||
assert.match(text, /const canMutateRequirement = \(req: Requirement\) => Boolean\(req\.productId\);/);
|
||||
assert.doesNotMatch(text, /appDataRequirementIds\.has\(req\.id\)/);
|
||||
});
|
||||
Reference in New Issue
Block a user