import 'package:flutter_test/flutter_test.dart'; import 'package:pangolin_vpn/services/api_config.dart'; void main() { test('控制面基址默认走 https(禁止回退明文 http)', () { expect(kApiBaseUrl, startsWith('https://'), reason: '控制面已迁 CF Tunnel(api.yanmeiai.com);默认值不得是明文 http'); expect(kApiBaseUrl, isNot(contains('103.119.13.48')), reason: '不得再硬编码节点 IP 作控制面基址'); }); }