Files
jiu/client/test/product_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

311 lines
8.7 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/core/api/api_client.dart';
import 'package:jiu_client/core/exceptions.dart';
import 'package:jiu_client/repositories/product_repository.dart';
const _baseUrl = 'http://localhost:8080/api/v1';
ApiClient _buildClient(Dio dio) {
// We inject the Dio directly by creating ApiClient and swapping it out
// via a subclass-free approach: wrap with a test double.
return _TestApiClient(dio);
}
/// A thin ApiClient subclass that delegates to an injected Dio.
class _TestApiClient extends ApiClient {
final Dio _testDio;
_TestApiClient(this._testDio) : super(token: 'test-token');
@override
Future<Response> get(String path, {Map<String, dynamic>? params}) =>
_testDio.get(path, queryParameters: params);
@override
Future<Response> post(String path, {dynamic data}) =>
_testDio.post(path, data: data);
@override
Future<Response> put(String path, {dynamic data}) =>
_testDio.put(path, data: data);
@override
Future<Response> delete(String path) => _testDio.delete(path);
}
void main() {
late Dio dio;
late DioAdapter adapter;
late ProductRepository repo;
setUp(() {
dio = Dio(BaseOptions(baseUrl: _baseUrl));
adapter = DioAdapter(dio: dio, matcher: const FullHttpRequestMatcher());
repo = ProductRepository(_buildClient(dio));
});
// ---------------------------------------------------------------------------
// list()
// ---------------------------------------------------------------------------
group('ProductRepository.list()', () {
test('returns PageResult with products on 200', () async {
adapter.onGet(
'/products',
(server) => server.reply(200, {
'data': [
{
'id': 1,
'code': 'P001',
'name': '五粮液',
'unit': '',
'barcode': null,
'series': null,
'spec': '500ml',
'category_id': null,
'brand': '五粮液集团',
'purchase_price': 500.0,
'sale_price': 680.0,
'min_stock': 10,
'remark': null,
'custom_fields': null,
}
],
'total': 1,
'page': 1,
'page_size': 20,
}),
queryParameters: {'page': 1, 'page_size': 20},
);
final result = await repo.list();
expect(result.total, 1);
expect(result.data.length, 1);
expect(result.data.first.name, '五粮液');
expect(result.data.first.code, 'P001');
expect(result.data.first.purchasePrice, 500.0);
});
test('returns empty list without error when data array is empty', () async {
adapter.onGet(
'/products',
(server) => server.reply(200, {
'data': [],
'total': 0,
'page': 1,
'page_size': 20,
}),
queryParameters: {'page': 1, 'page_size': 20},
);
final result = await repo.list();
expect(result.data, isEmpty);
expect(result.total, 0);
});
test('passes keyword query param when provided', () async {
adapter.onGet(
'/products',
(server) => server.reply(200, {
'data': [],
'total': 0,
'page': 1,
'page_size': 20,
}),
queryParameters: {
'page': 1,
'page_size': 20,
'keyword': '茅台',
},
);
final result = await repo.list(keyword: '茅台');
expect(result.data, isEmpty);
});
test('400 response throws AppException with server error message',
() async {
adapter.onGet(
'/products',
(server) => server.reply(400, {'error': 'invalid page parameter'}),
queryParameters: {'page': 1, 'page_size': 20},
);
expect(
() => repo.list(),
throwsA(
predicate<AppException>(
(e) => e.message == 'invalid page parameter' && e.statusCode == 400,
),
),
);
});
test('401 response throws AppException with status 401', () async {
adapter.onGet(
'/products',
(server) => server.reply(401, {'error': 'unauthorized'}),
queryParameters: {'page': 1, 'page_size': 20},
);
expect(
() => repo.list(),
throwsA(
predicate<AppException>(
(e) => e.statusCode == 401,
),
),
);
});
test('network timeout throws AppException with fallback message', () async {
final badDio = Dio(BaseOptions(
baseUrl: 'http://localhost:19999',
connectTimeout: const Duration(milliseconds: 100),
));
final badRepo = ProductRepository(_buildClient(badDio));
try {
await badRepo.list();
fail('Expected AppException');
} on AppException catch (e) {
expect(e.message, isNotEmpty);
}
});
});
// ---------------------------------------------------------------------------
// create()
// ---------------------------------------------------------------------------
group('ProductRepository.create()', () {
test('returns created Product on 201', () async {
final payload = {'name': '茅台', 'code': 'MT001', 'unit': ''};
adapter.onPost(
'/products',
(server) => server.reply(201, {
'data': {
'id': 2,
'code': 'MT001',
'name': '茅台',
'unit': '',
'barcode': null,
'series': null,
'spec': null,
'category_id': null,
'brand': null,
'purchase_price': null,
'sale_price': null,
'min_stock': null,
'remark': null,
'custom_fields': null,
}
}),
data: payload,
);
final product = await repo.create(payload);
expect(product.id, 2);
expect(product.name, '茅台');
expect(product.code, 'MT001');
});
test('400 response throws AppException', () async {
adapter.onPost(
'/products',
(server) => server.reply(400, {'error': 'code already exists'}),
data: {'name': '茅台', 'code': 'MT001', 'unit': ''},
);
expect(
() => repo.create({'name': '茅台', 'code': 'MT001', 'unit': ''}),
throwsA(
predicate<AppException>(
(e) => e.message == 'code already exists' && e.statusCode == 400,
),
),
);
});
});
// ---------------------------------------------------------------------------
// update()
// ---------------------------------------------------------------------------
group('ProductRepository.update()', () {
test('returns updated Product on 200', () async {
final payload = {'name': '茅台(升级)', 'code': 'MT001', 'unit': ''};
adapter.onPut(
'/products/2',
(server) => server.reply(200, {
'data': {
'id': 2,
'code': 'MT001',
'name': '茅台(升级)',
'unit': '',
'barcode': null,
'series': null,
'spec': null,
'category_id': null,
'brand': null,
'purchase_price': null,
'sale_price': null,
'min_stock': null,
'remark': null,
'custom_fields': null,
}
}),
data: payload,
);
final product = await repo.update(2, payload);
expect(product.id, 2);
expect(product.name, '茅台(升级)');
});
test('404 response throws AppException with status 404', () async {
adapter.onPut(
'/products/999',
(server) => server.reply(404, {'error': 'product not found'}),
data: {'name': 'X', 'code': 'X', 'unit': ''},
);
expect(
() => repo.update(999, {'name': 'X', 'code': 'X', 'unit': ''}),
throwsA(
predicate<AppException>((e) => e.statusCode == 404),
),
);
});
});
// ---------------------------------------------------------------------------
// delete()
// ---------------------------------------------------------------------------
group('ProductRepository.delete()', () {
test('completes without error on 200', () async {
adapter.onDelete(
'/products/1',
(server) => server.reply(200, {'message': 'deleted'}),
);
await expectLater(repo.delete(1), completes);
});
test('404 response throws AppException', () async {
adapter.onDelete(
'/products/999',
(server) => server.reply(404, {'error': 'product not found'}),
);
expect(
() => repo.delete(999),
throwsA(isA<AppException>()),
);
});
});
}