| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- import { test, expect } from '../fixtures/auth';
- import type { Page, Response } from '@playwright/test';
- /**
- * SRM schema mismatch 修复后回归:
- * Supplier 删除拦截:用 SupplierNumber 真实列查 SRM,应正确拦截
- * Material 抽查:原 Routing 引用样本仍应被拦截(不受 SRM 分支移除影响)
- */
- async function token(page: Page) {
- return page.evaluate(() => {
- for (let i = 0; i < localStorage.length; i++) {
- const k = localStorage.key(i)!;
- if (/access-token$/i.test(k) && !/x-access-token$/i.test(k)) {
- const raw = localStorage.getItem(k)!;
- try { const v = JSON.parse(raw); return typeof v === 'string' ? v : v?.value ?? raw; } catch { return raw; }
- }
- }
- return null;
- });
- }
- async function api<T = any>(page: Page, method: 'GET' | 'DELETE', url: string): Promise<{ status: number; body: T | string | null }> {
- const tk = await token(page);
- const base = new URL(page.url()).origin;
- const r = await page.request.fetch(`${base}${url}`, {
- method,
- headers: { Authorization: `Bearer ${tk!}` },
- });
- let body: any = null;
- try { body = await r.json(); } catch { body = await r.text().catch(() => null); }
- return { status: r.status(), body };
- }
- test('Supplier 删除被 SRM 引用 → 409 + 红色 toast(修复后)', async ({ authedPage }) => {
- // 已知样本:Supp=10001875 在 SRM 有 390 条引用
- const SAMPLE_SUPP = '10001875';
- await authedPage.goto('/#/dashboard/home', { waitUntil: 'domcontentloaded' });
- // 反查 id
- const lookup = await api(authedPage, 'GET', `/api/s0/supply/suppliers?Supp=${SAMPLE_SUPP}&page=1&pageSize=5&tenantId=1&factoryId=1`);
- const items: any[] = (lookup.body as any)?.list ?? [];
- test.skip(items.length === 0, `供应商样本 ${SAMPLE_SUPP} 不存在`);
- const sample = { id: Number(items[0].id), supp: items[0].supp };
- test.info().annotations.push({ type: 'sample', description: JSON.stringify(sample) });
- // 走 UI:Supplier 列表页 → 搜索 → 删除
- await authedPage.goto('/#/aidop/s0/supply/supplier', { waitUntil: 'domcontentloaded' });
- await authedPage.waitForLoadState('networkidle', { timeout: 10_000 }).catch(() => {});
- await expect(authedPage.locator('table tbody tr').first()).toBeVisible({ timeout: 15_000 });
- const kw = authedPage.locator('input[placeholder*="编码/简称"]').first();
- await expect(kw).toBeVisible({ timeout: 5_000 });
- await kw.fill(SAMPLE_SUPP);
- const respWait = authedPage.waitForResponse((r) => /\/api\/s0\/supply\/suppliers\?/.test(r.url()) && r.request().method() === 'GET', { timeout: 10_000 });
- await authedPage.getByRole('button', { name: /^查询$/ }).first().click();
- await respWait;
- await authedPage.waitForLoadState('networkidle', { timeout: 5_000 }).catch(() => {});
- const row = authedPage.locator('tr', { hasText: SAMPLE_SUPP }).first();
- await expect(row).toBeVisible({ timeout: 10_000 });
- let delResp: Response | null = null;
- authedPage.on('response', (r) => {
- if (/\/api\/s0\/supply\/suppliers\/\d+/.test(r.url()) && r.request().method() === 'DELETE') delResp = r;
- });
- await row.getByRole('button', { name: /删除/ }).click();
- const confirm = authedPage.locator('.el-message-box').getByRole('button', { name: /确\s*定/ });
- await expect(confirm).toBeVisible({ timeout: 5_000 });
- await confirm.click();
- await expect.poll(() => delResp?.status() ?? 0, { timeout: 10_000 }).toBe(409);
- const body = await delResp!.json().catch(() => null);
- test.info().annotations.push({
- type: 'api',
- description: `DELETE → ${delResp!.status()} body=${JSON.stringify(body).slice(0, 200)}`,
- });
- expect(body?.code).toBe('S01006');
- expect(String(body?.message ?? '')).toMatch(/引用该供应商|SrmPurchase|货源清单/);
- const errToast = authedPage.locator('.el-message--error, .el-message.is-error').first();
- await expect(errToast).toBeVisible({ timeout: 5_000 });
- const toastText = (await errToast.innerText()).replace(/\s+/g, '');
- test.info().annotations.push({ type: 'toast', description: toastText });
- expect(toastText).toMatch(/引用该供应商|货源清单/);
- const okToast = authedPage.locator('.el-message--success').first();
- expect(await okToast.isVisible().catch(() => false)).toBeFalsy();
- await expect(authedPage.locator('tr', { hasText: SAMPLE_SUPP }).first()).toBeVisible({ timeout: 3_000 });
- });
- test('Material 连带回归:原 Routing 引用样本仍 409', async ({ authedPage }) => {
- // 直接 API 验:DELETE 物料 id 4479 (itemNum 3132C0G6, 9 条 routing 引用)
- await authedPage.goto('/#/dashboard/home', { waitUntil: 'domcontentloaded' });
- const r = await api(authedPage, 'DELETE', '/api/s0/sales/materials/4479?tenantId=1&factoryId=1');
- test.info().annotations.push({
- type: 'api',
- description: `DELETE /materials/4479 → ${r.status} body=${JSON.stringify(r.body).slice(0, 200)}`,
- });
- expect(r.status).toBe(409);
- expect((r.body as any)?.code).toBe('S01006');
- expect(String((r.body as any)?.message ?? '')).toMatch(/工艺路线明细/);
- });
|