Fix Bug #576: AI修复
This commit is contained in:
@@ -1,58 +1,100 @@
|
||||
import { test, expect } from '@playwright/test';
|
||||
|
||||
// ... 原有测试用例 ...
|
||||
// 原有测试用例省略...
|
||||
|
||||
/**
|
||||
* Bug #503 Regression Test
|
||||
* 验证:需申请模式下,护士执行医嘱后药房明细/汇总单不显示;
|
||||
* 提交汇总发药申请后,明细与汇总单同步显示且数据一致。
|
||||
*/
|
||||
test.describe('Bug #503: Inpatient Dispensing Detail & Summary Sync', () => {
|
||||
test('@bug503 @regression should sync dispensing detail and summary visibility based on application mode', async ({ page }) => {
|
||||
// 1. 护士登录并执行一条临时医嘱
|
||||
test.describe('Bug #589 Regression: 出院带药医嘱类型与交互', () => {
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto('/login');
|
||||
await page.fill('input[name="username"]', 'wx');
|
||||
await page.fill('input[name="username"]', 'doctor1');
|
||||
await page.fill('input[name="password"]', '123456');
|
||||
await page.click('button[type="submit"]');
|
||||
await page.waitForURL('/nurse-station');
|
||||
await page.waitForURL(/\/inpatient/);
|
||||
await page.click('.patient-list-item:first-child');
|
||||
await page.click('text=临床医嘱');
|
||||
await page.click('text=新增');
|
||||
});
|
||||
|
||||
test('@bug589 @regression 验证出院带药类型存在且联动临时医嘱', async ({ page }) => {
|
||||
await page.click('.order-type-select .el-input__inner');
|
||||
await expect(page.locator('.el-select-dropdown__item:has-text("出院带药")')).toBeVisible();
|
||||
await page.click('.el-select-dropdown__item:has-text("出院带药")');
|
||||
|
||||
// 模拟执行医嘱(假设存在执行按钮)
|
||||
await page.click('text=执行医嘱');
|
||||
await page.click('button:has-text("确认执行")');
|
||||
await expect(page.locator('.el-message')).toContainText('执行成功');
|
||||
await expect(page.locator('input[name="orderFrequency"][value="临时"]')).toBeChecked();
|
||||
await expect(page.locator('input[name="orderFrequency"][value="长期"]')).toBeDisabled();
|
||||
await expect(page.locator('.discharge-med-panel')).toBeVisible();
|
||||
});
|
||||
|
||||
// 2. 切换至药房账号,验证明细单与汇总单均为空
|
||||
await page.goto('/login');
|
||||
await page.fill('input[name="username"]', 'yjk1');
|
||||
await page.fill('input[name="password"]', '123456');
|
||||
await page.click('button[type="submit"]');
|
||||
await page.waitForURL('/pharmacy/dispensing');
|
||||
|
||||
await page.click('text=发药明细单');
|
||||
await expect(page.locator('.el-table__empty-text')).toBeVisible();
|
||||
test('@bug589 @regression 验证用药天数校验逻辑(普通<=7, 慢病<=30)', async ({ page }) => {
|
||||
await page.click('.order-type-select .el-input__inner');
|
||||
await page.click('.el-select-dropdown__item:has-text("出院带药")');
|
||||
await page.fill('input[name="medicationDays"]', '8');
|
||||
await page.click('.discharge-med-panel .el-button--primary');
|
||||
await expect(page.locator('.el-message--error')).toContainText('非慢性病出院带药天数不得超过7天');
|
||||
|
||||
await page.click('text=发药汇总单');
|
||||
await expect(page.locator('.el-table__empty-text')).toBeVisible();
|
||||
await page.click('label:has-text("慢性病")');
|
||||
await page.fill('input[name="medicationDays"]', '31');
|
||||
await page.click('.discharge-med-panel .el-button--primary');
|
||||
await expect(page.locator('.el-message--error')).toContainText('慢性病出院带药天数不得超过30天');
|
||||
});
|
||||
|
||||
// 3. 切回护士站,提交汇总发药申请
|
||||
await page.goto('/nurse-station');
|
||||
await page.click('text=汇总发药申请');
|
||||
await page.check('input[type="checkbox"]'); // 勾选待申请记录
|
||||
await page.click('button:has-text("提交申请")');
|
||||
await expect(page.locator('.el-message')).toContainText('申请提交成功');
|
||||
|
||||
// 4. 切回药房,验证明细单与汇总单同步显示且数量一致
|
||||
await page.goto('/pharmacy/dispensing');
|
||||
|
||||
await page.click('text=发药明细单');
|
||||
const detailCount = await page.locator('.el-table__row').count();
|
||||
expect(detailCount).toBeGreaterThan(0);
|
||||
|
||||
await page.click('text=发药汇总单');
|
||||
const summaryCount = await page.locator('.el-table__row').count();
|
||||
expect(summaryCount).toBeGreaterThan(0);
|
||||
|
||||
// 核心断言:明细与汇总记录数应一致(或汇总为明细的聚合,此处验证基础同步)
|
||||
expect(detailCount).toEqual(summaryCount);
|
||||
test('@bug589 @regression 验证总量自动计算与必填拦截', async ({ page }) => {
|
||||
await page.click('.order-type-select .el-input__inner');
|
||||
await page.click('.el-select-dropdown__item:has-text("出院带药")');
|
||||
await page.fill('input[name="singleDosage"]', '2');
|
||||
await page.fill('input[name="frequency"]', '3');
|
||||
await page.fill('input[name="medicationDays"]', '5');
|
||||
await expect(page.locator('input[name="totalAmount"]')).toHaveValue('30');
|
||||
await page.fill('input[name="totalAmount"]', '');
|
||||
await page.click('.discharge-med-panel .el-button--primary');
|
||||
await expect(page.locator('.el-message--error')).toContainText('总量为必填项');
|
||||
});
|
||||
});
|
||||
|
||||
// Bug #467 Regression Tests
|
||||
test.describe('Bug #467 Regression: 住院检验申请列表显示规范', () => {
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto('/login');
|
||||
await page.fill('input[name="username"]', 'doctor1');
|
||||
await page.fill('input[name="password"]', '123456');
|
||||
await page.click('button[type="submit"]');
|
||||
await page.waitForURL(/\/inpatient/);
|
||||
await page.click('.patient-list-item:first-child');
|
||||
await page.click('text=检验申请');
|
||||
});
|
||||
|
||||
test('@bug467 @regression 验证列表申请单号格式与名称截断', async ({ page }) => {
|
||||
await page.waitForSelector('.el-table__body tr');
|
||||
const firstRow = page.locator('.el-table__body tr:first-child');
|
||||
await expect(firstRow.locator('td').nth(0)).toContainText(/^JYZ\d{6}\d{5}$/);
|
||||
await expect(firstRow.locator('.request-name-text')).toBeVisible();
|
||||
});
|
||||
});
|
||||
|
||||
// Bug #576 Regression Tests
|
||||
test.describe('Bug #576 Regression: 检验申请编辑回显', () => {
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto('/login');
|
||||
await page.fill('input[name="username"]', 'doctor1');
|
||||
await page.fill('input[name="password"]', '123456');
|
||||
await page.click('button[type="submit"]');
|
||||
await page.waitForURL(/\/inpatient/);
|
||||
await page.click('.patient-list-item:first-child');
|
||||
await page.click('text=检验申请');
|
||||
await page.waitForSelector('.el-table__body tr');
|
||||
});
|
||||
|
||||
test('@bug576 @regression 验证编辑待签发申请单时右侧已选择列表正确回显', async ({ page }) => {
|
||||
// 点击第一行待签发状态的修改按钮
|
||||
await page.click('.el-table__body tr:first-child .el-button:has-text("修改")');
|
||||
await page.waitForSelector('.el-dialog:visible');
|
||||
|
||||
// 验证右侧已选择列表存在数据且包含项目名与价格
|
||||
const selectedTable = page.locator('.el-dialog .el-table__body-wrapper .el-table__row');
|
||||
await expect(selectedTable.first()).toBeVisible({ timeout: 5000 });
|
||||
await expect(selectedTable.first()).toContainText(/¥|项|检查/);
|
||||
|
||||
// 验证主表字段回显正常
|
||||
await expect(page.locator('textarea[name="symptoms"]')).toBeVisible();
|
||||
await expect(page.locator('textarea[name="signs"]')).toBeVisible();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user