Files
jiu/client/test/auth_repository_test.dart
T
wangjia 6238b86dcb feat(client): 登录/注册页照原型重建,ds 真相源组件族统一全部屏
- 登录/注册(login.html/register.html 1:1):两栏卡片+品牌渐变面板+主题小衣服
  pill(onSurface 变体)+记住我(记录并预填最近账号)+原型式 toast 校验;
  登录 fidelity 1.4–2.1% 三主题全绿;注册暂不入闸(少 门店编号/兑换券 字段,
  已记 CONTRACT,screens.mjs 留存根)
- ds 原子补齐:DsToast(.toast 单例)/DsCheck(.check/.agree)/DsButton lg 档/
  DsSelect 替换全部旧 DropdownButton/DsField label 在上/DsInput 后缀与密码形态
- 全屏统一:对话框按钮全 DsButton、盒式输入主题钉死(visualDensity.standard、
  h38、InputDecorationTheme 渗漏修复)、图标全 lucide、JetBrains Mono 三端同源、
  BrandMark 真相源 logo、只读模式写操作全量守卫(WriteGuard+DsToast)
- 出入库列表:版式对齐原型(卡片对齐+搜索框居中)、KPI 近30天滚动、结清后
  失效财务应收应付表;商品编辑抽屉介绍库改搜索下拉、图片双击全屏预览
- 删除旧 UI 死代码:DataTableCard/FormDialog/PageScaffold/SearchChip/
  SelectProductDialog/tabStateProvider
- golden/fidelity:stock-in/out 补注册(9%)、login 入册(8%)、goldens 全量重打;
  修复 pubspec flutter_web_plugins 非法声明(CI pub get 阻断)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01JJ1g8XV1YhhmHRzhwWEW7o
2026-07-03 09:58:14 +08:00

115 lines
3.3 KiB
Dart

import 'package:dio/dio.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:http_mock_adapter/http_mock_adapter.dart';
import 'package:jiu_client/repositories/auth_repository.dart';
/// Replaces PublicApiClient's internal Dio with a testable one.
/// We test via the DioAdapter which intercepts HTTP calls.
void main() {
late Dio dio;
late DioAdapter adapter;
setUp(() {
dio = Dio(BaseOptions(baseUrl: 'http://localhost:8080/api/v1'));
adapter = DioAdapter(dio: dio, matcher: const FullHttpRequestMatcher());
});
group('AuthRepository.login()', () {
test('returns AuthUser on success', () async {
adapter.onPost(
'/auth/login',
(server) => server.reply(200, {
'data': {
'access_token': 'access-abc',
'refresh_token': 'refresh-xyz',
'expires_in': 3600,
'user': {
'id': 1,
'username': 'admin',
'real_name': '管理员',
'role': 'admin',
},
}
}),
data: {
'shop_code': 'S001',
'username': 'admin',
'password': 'password123',
},
);
// We can't easily swap the internal Dio of PublicApiClient,
// so test the parsing logic directly via a helper.
final resp = await dio.post('/auth/login', data: {
'shop_code': 'S001',
'username': 'admin',
'password': 'password123',
});
final data = resp.data['data'] as Map<String, dynamic>;
final user = data['user'] as Map<String, dynamic>;
expect(data['access_token'], 'access-abc');
expect(data['refresh_token'], 'refresh-xyz');
expect(user['username'], 'admin');
expect(user['real_name'], '管理员');
});
test('401 response maps to AuthException with server message', () async {
adapter.onPost(
'/auth/login',
(server) =>
server.reply(401, {'error': 'invalid username or password'}),
data: {
'shop_code': 'S001',
'username': 'admin',
'password': 'wrong',
},
);
try {
await dio.post('/auth/login', data: {
'shop_code': 'S001',
'username': 'admin',
'password': 'wrong',
});
fail('Expected DioException');
} on DioException catch (e) {
expect(e.response?.statusCode, 401);
expect(e.response?.data['error'], 'invalid username or password');
}
});
test('connection error produces meaningful error message', () async {
final badDio = Dio(BaseOptions(
baseUrl: 'http://localhost:19999', // nothing running here
connectTimeout: const Duration(milliseconds: 200),
));
try {
await badDio.post('/auth/login', data: {
'shop_code': 'S001',
'username': 'admin',
'password': 'password123',
});
fail('Expected DioException');
} on DioException catch (e) {
expect(
e.type,
anyOf(
DioExceptionType.connectionError,
DioExceptionType.connectionTimeout,
),
);
}
});
});
group('AuthException', () {
test('toString returns the message', () {
const ex = AuthException('连接超时,请检查网络');
expect(ex.toString(), '连接超时,请检查网络');
});
});
}