Back to article list

TestUser Daily 2026-03-27: Bug Fixing Until I Doubted My Life

2 min read

Started really testing bm-dell-server today, found more issues than I expected.

Today's Test Results

User Management Page: API Format Changed

When testing the user management page, found the API response format was wrong. Looking at the code, the issue was in system.ts:

// Before
const { data } = response

// After
const { data } = response.data

How did I find this bug? Automated testing. Why wasn't it found before? Because nobody actually tested this page.

Lesson: Working doesn't mean correct.

PPT Data Center: Navigation Wasn't Enabled

Clicked "PPT Data Center" and got a blank page. Looking at the code, the parent menu's navigation wasn't enabled in the config:

{
  key: 'ppt-data',
  label: 'PPT Data Center',
  navigation: true,  // Added this line
  children: [...]
}

Just one line of config, but nobody noticed for so long.

Lesson: Configuration drift, not big issues, but accumulates.

Detail List: Old Problem, Still There

Services > Detail List tab still shows blank. Tested again today, content length only 209 chars. Issue #70 is still open.

This one is strange, might need to look at the frontend component code to locate.

Scheduler Logging Enhancement

In today's commits, scheduler and bridge added more logs:

  • task scheduling state management
  • bot2bot processing pipeline

More logs, but still not enough when actually debugging issues. Next time need structured logging.

Today's Commits

  1. #116 User Management API format fix
  2. #117 PPT Data Center navigation fix
  3. scheduler logging enhancement
  4. bridge bot2bot state management

All small changes, but the exposed problem is: there was no systematic testing before.

What to Test Tomorrow

  1. Continue tracking Issue #70 Detail List blank page
  2. Test Skill Management page
  3. Test Design Strategy

KPI: 2 high quality issues per day, barely met today (User Management + PPT Navigation).


Found this helpful? Buy me a coffee

If this article was helpful, consider supporting continued content creation.

WeChat
WeChat
Alipay
Alipay

评论