Files
lixi a4a97c03c2 新增:资料页真实化 + 编辑页——/me 读写、PATCH 三态、获赞与作品统计(T3.5-08)
资料页头部三项(展示名 / 头像 / 数字)自此全部来自服务端,176 行硬编码
demo(「萌宠新手(豆豆家长)」/ 24 / 1.8k / 2)退役。

- `PatchField<T>` 承载契约 v1.4.0 的 PATCH 三态(absent 不落键 / clear 落
  显式 null / value 落值)。三态必须由类型承载而非 `T?` 加约定:把「不改」
  也编码成 null,用户只改昵称就会连头像一起被服务端清掉。
- `UserProfile` 补 nickname / avatarUrl,展示回退 `nickname ?? username`
  **做在客户端展示层**——服务端 /me 刻意返回 DB 原值,编辑页因此只用原值
  预填,避免把展示约定固化成真实昵称。
- `ProfileController`:`/me` 主链路四态 + 两块统计独立三态(统计失败只降级
  这一块,不为两个数字丢掉整页);登出 reset 防跨账号泄漏。
- 编辑页维护三态意图而非「当前值整体提交」:昵称 / 头像各有显式清除入口,
  未改字段的键根本不进 JSON;空 patch 直接短路(服务端对空 patch 答 400)。
- 昵称校验按**码点**计 1~32 且先 btrim,与 `ck_users_nickname` 对齐;
  纯空白是校验失败而非隐式清空。
- `MediaUploader` 的 purpose 参数化 + 复用其六态编排的 `AvatarUploadSheet`
  (单图、预览确认后才交付 ready assetId,孤儿防护不变)。
- 修复 `/api/v1/me` 端口线路:该端点由 user 服务(:8082)提供,`ApiAuthRepository`
  此前只挂 auth(:8081)会得到 404。此前无人消费 me(),故这条错线一直没被
  触发;本单是第一个真实消费者,桌面实测即暴露。

测试 526 → 588(+62)。

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-09-11 15:37:00 +08:00

208 lines
7.3 KiB
Dart

import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:patbond_flutter/core/network/api_exception.dart';
import 'package:patbond_flutter/core/theme/app_theme.dart';
import 'package:patbond_flutter/core/widgets/inline_error_banner.dart';
import 'package:patbond_flutter/features/auth/auth_models.dart';
import 'package:patbond_flutter/features/community/community_models.dart';
import 'package:patbond_flutter/features/profile/profile_controller.dart';
import 'package:patbond_flutter/features/profile/profile_edit_page.dart';
import 'package:patbond_flutter/features/profile/profile_page.dart';
import 'package:patbond_flutter/state/app_state.dart';
import '../../helpers/auth_test_helpers.dart';
import '../../helpers/community_test_helpers.dart';
void main() {
late FakeCommunityRepository community;
setUp(() {
community = FakeCommunityRepository();
community.onGetMyCommunityStats = () async =>
CommunityStats.fromJson(sampleCommunityStatsJson());
community.onGetFollowStats = (_) async =>
FollowStats.fromJson(sampleFollowStatsJson());
});
Future<ProfileController> pumpProfile(
WidgetTester tester, {
required FakeAuthRepository auth,
}) async {
// 资料页头部 + 五行菜单 + 两个底部按钮,加高视口保证全在栏内。
tester.view.physicalSize = const Size(700, 2400);
tester.view.devicePixelRatio = 1.0;
addTearDown(tester.view.reset);
final controller = ProfileController(
authRepository: auth,
communityRepository: community,
);
addTearDown(controller.dispose);
await tester.pumpWidget(
MaterialApp(
theme: buildAppTheme(),
home: Scaffold(
body: ProfilePage(appState: AppState(), controller: controller),
),
),
);
return controller;
}
testWidgets('loading 态:居中转圈,无 demo 文案', (tester) async {
final gate = Completer<UserProfile>();
await pumpProfile(
tester,
auth: FakeAuthRepository(meHandler: () => gate.future),
);
// 预取推到帧末,故先走一帧再断言。
await tester.pump();
expect(find.byType(CircularProgressIndicator), findsOneWidget);
expect(find.text('萌宠新手(豆豆家长)'), findsNothing);
expect(find.text('Patbond 社区创作达人'), findsNothing);
gate.complete(buildProfile());
await tester.pumpAndSettle();
});
testWidgets('ready + 有昵称:展示昵称与 @username,四个数字来自服务端', (tester) async {
await pumpProfile(
tester,
auth: FakeAuthRepository(
meHandler: () async => buildProfile(username: 'llx', nickname: '小柴'),
),
);
await tester.pumpAndSettle();
expect(find.text('小柴'), findsOneWidget);
expect(find.text('@llx'), findsOneWidget);
// 24 关注我 / 7 我关注 / 128 获赞 / 12 作品(helpers 样本)。
expect(find.text('24'), findsOneWidget);
expect(find.text('7'), findsOneWidget);
expect(find.text('128'), findsOneWidget);
expect(find.text('12'), findsOneWidget);
expect(find.text('获赞'), findsOneWidget);
expect(find.text('我的作品'), findsOneWidget);
// demo 硬编码彻底退役。
expect(find.text('1.8k'), findsNothing);
expect(find.text('萌宠新手(豆豆家长)'), findsNothing);
});
testWidgets('ready + 无昵称:展示名回退 username(回退在客户端展示层)', (tester) async {
await pumpProfile(
tester,
auth: FakeAuthRepository(
meHandler: () async => buildProfile(username: 'llx'),
),
);
await tester.pumpAndSettle();
// 展示名与 @username 两处都是 llx。
expect(find.text('llx'), findsOneWidget);
expect(find.text('@llx'), findsOneWidget);
});
testWidgets('空数据:四个数字全 0(不是空白、不是错误态)', (tester) async {
community.onGetMyCommunityStats = () async => CommunityStats.fromJson(
sampleCommunityStatsJson(receivedLikeCount: 0, publishedPostCount: 0),
);
community.onGetFollowStats = (_) async => FollowStats.fromJson(
sampleFollowStatsJson(followerCount: 0, followingCount: 0),
);
await pumpProfile(tester, auth: FakeAuthRepository());
await tester.pumpAndSettle();
expect(find.text('0'), findsNWidgets(4));
expect(find.text('统计加载失败'), findsNothing);
});
testWidgets('error 态:横幅 + 重试;重试成功进 ready', (tester) async {
var attempts = 0;
await pumpProfile(
tester,
auth: FakeAuthRepository(
meHandler: () async {
attempts += 1;
if (attempts == 1) throw const ApiNetworkException('断网');
return buildProfile(nickname: '小柴');
},
),
);
await tester.pumpAndSettle();
expect(find.byType(InlineErrorBanner), findsOneWidget);
expect(find.text('网络异常,请检查网络后重试'), findsOneWidget);
await tester.tap(find.text('重试'));
await tester.pumpAndSettle();
expect(find.text('小柴'), findsOneWidget);
expect(find.byType(InlineErrorBanner), findsNothing);
});
testWidgets('统计块独立降级:资料照常显示,统计给「加载失败 + 重试」', (tester) async {
var statsAttempts = 0;
community.onGetMyCommunityStats = () async {
statsAttempts += 1;
if (statsAttempts == 1) throw const ApiNetworkException('断网');
return CommunityStats.fromJson(sampleCommunityStatsJson());
};
await pumpProfile(
tester,
auth: FakeAuthRepository(
meHandler: () async => buildProfile(nickname: '小柴'),
),
);
await tester.pumpAndSettle();
expect(find.text('小柴'), findsOneWidget, reason: '统计失败不该拖垮整页');
expect(find.text('统计加载失败'), findsOneWidget);
await tester.tap(find.text('重试'));
await tester.pumpAndSettle();
expect(find.text('128'), findsOneWidget);
expect(find.text('统计加载失败'), findsNothing);
});
testWidgets('点「编辑资料」进编辑页;保存成功回资料页并提示', (tester) async {
final auth = FakeAuthRepository(
meHandler: () async => buildProfile(username: 'llx'),
updateMeHandler: (_) async =>
buildProfile(username: 'llx', nickname: '小柴'),
);
await pumpProfile(tester, auth: auth);
await tester.pumpAndSettle();
await tester.tap(find.text('编辑资料'));
await tester.pumpAndSettle();
expect(find.byType(ProfileEditPage), findsOneWidget);
await tester.enterText(find.byType(TextFormField), '小柴');
await tester.pump();
await tester.tap(find.text('保存'));
await tester.pumpAndSettle();
expect(find.byType(ProfileEditPage), findsNothing);
expect(find.text('资料已更新'), findsOneWidget);
// 头部随之更新为新昵称。
expect(find.text('小柴'), findsOneWidget);
});
testWidgets('未装配上传能力时编辑页不渲染头像入口', (tester) async {
await pumpProfile(
tester,
auth: FakeAuthRepository(meHandler: () async => buildProfile()),
);
await tester.pumpAndSettle();
await tester.tap(find.text('编辑资料'));
await tester.pumpAndSettle();
expect(find.text('更换头像'), findsNothing);
expect(find.byType(TextFormField), findsOneWidget, reason: '昵称输入仍在');
});
}