File size: 22,312 Bytes
a21c316 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 | use serde::{Deserialize, Serialize};
// use std::path::PathBuf;
use std::collections::HashMap;
use std::sync::{OnceLock, RwLock};
// ============================================================================
// 辅助工具函数
// ============================================================================
/// 标准化代理 URL,如果缺失协议则默认补全 http://
pub fn normalize_proxy_url(url: &str) -> String {
let url = url.trim();
if url.is_empty() {
return String::new();
}
if !url.contains("://") {
format!("http://{}", url)
} else {
url.to_string()
}
}
// ============================================================================
// 全局 Thinking Budget 配置存储
// 用于在 request transform 函数中访问配置(无需修改函数签名)
// ============================================================================
static GLOBAL_THINKING_BUDGET_CONFIG: OnceLock<RwLock<ThinkingBudgetConfig>> = OnceLock::new();
/// 获取当前 Thinking Budget 配置
pub fn get_thinking_budget_config() -> ThinkingBudgetConfig {
GLOBAL_THINKING_BUDGET_CONFIG
.get()
.and_then(|lock| lock.read().ok())
.map(|cfg| cfg.clone())
.unwrap_or_default()
}
/// 更新全局 Thinking Budget 配置
pub fn update_thinking_budget_config(config: ThinkingBudgetConfig) {
if let Some(lock) = GLOBAL_THINKING_BUDGET_CONFIG.get() {
if let Ok(mut cfg) = lock.write() {
*cfg = config.clone();
tracing::info!(
"[Thinking-Budget] Global config updated: mode={:?}, custom_value={}",
config.mode,
config.custom_value
);
}
} else {
// 首次初始化
let _ = GLOBAL_THINKING_BUDGET_CONFIG.set(RwLock::new(config.clone()));
tracing::info!(
"[Thinking-Budget] Global config initialized: mode={:?}, custom_value={}",
config.mode,
config.custom_value
);
}
}
// ============================================================================
// 全局系统提示词配置存储
// 用户可在设置中配置一段全局提示词,自动注入到所有请求的 systemInstruction 中
// ============================================================================
static GLOBAL_SYSTEM_PROMPT_CONFIG: OnceLock<RwLock<GlobalSystemPromptConfig>> = OnceLock::new();
/// 获取当前全局系统提示词配置
pub fn get_global_system_prompt() -> GlobalSystemPromptConfig {
GLOBAL_SYSTEM_PROMPT_CONFIG
.get()
.and_then(|lock| lock.read().ok())
.map(|cfg| cfg.clone())
.unwrap_or_default()
}
/// 更新全局系统提示词配置
pub fn update_global_system_prompt_config(config: GlobalSystemPromptConfig) {
if let Some(lock) = GLOBAL_SYSTEM_PROMPT_CONFIG.get() {
if let Ok(mut cfg) = lock.write() {
*cfg = config.clone();
tracing::info!(
"[Global-System-Prompt] Config updated: enabled={}, content_len={}",
config.enabled,
config.content.len()
);
}
} else {
// 首次初始化
let _ = GLOBAL_SYSTEM_PROMPT_CONFIG.set(RwLock::new(config.clone()));
tracing::info!(
"[Global-System-Prompt] Config initialized: enabled={}, content_len={}",
config.enabled,
config.content.len()
);
}
}
// ============================================================================
// 全局图像思维模式配置存储
// ============================================================================
static GLOBAL_IMAGE_THINKING_MODE: OnceLock<RwLock<String>> = OnceLock::new();
pub fn get_image_thinking_mode() -> String {
GLOBAL_IMAGE_THINKING_MODE
.get()
.and_then(|lock| lock.read().ok())
.map(|s| s.clone())
.unwrap_or_else(|| "enabled".to_string())
}
pub fn update_image_thinking_mode(mode: Option<String>) {
let val = mode.unwrap_or_else(|| "enabled".to_string());
if let Some(lock) = GLOBAL_IMAGE_THINKING_MODE.get() {
if let Ok(mut cfg) = lock.write() {
if *cfg != val {
*cfg = val.clone();
tracing::info!("[Image-Thinking] Global config updated: {}", val);
}
}
} else {
let _ = GLOBAL_IMAGE_THINKING_MODE.set(RwLock::new(val.clone()));
}
}
/// 全局系统提示词配置
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GlobalSystemPromptConfig {
/// 是否启用全局系统提示词
#[serde(default)]
pub enabled: bool,
/// 系统提示词内容
#[serde(default)]
pub content: String,
}
impl Default for GlobalSystemPromptConfig {
fn default() -> Self {
Self {
enabled: false,
content: String::new(),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum ProxyAuthMode {
Off,
Strict,
AllExceptHealth,
Auto,
}
impl Default for ProxyAuthMode {
fn default() -> Self {
Self::Auto
}
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum ZaiDispatchMode {
/// Never use z.ai.
Off,
/// Use z.ai for all Anthropic protocol requests.
Exclusive,
/// Treat z.ai as one additional slot in the shared pool.
Pooled,
/// Use z.ai only when the Google pool is unavailable.
Fallback,
}
impl Default for ZaiDispatchMode {
fn default() -> Self {
Self::Off
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ZaiModelDefaults {
/// Default model for "opus" family (when the incoming model is a Claude id).
#[serde(default = "default_zai_opus_model")]
pub opus: String,
/// Default model for "sonnet" family (when the incoming model is a Claude id).
#[serde(default = "default_zai_sonnet_model")]
pub sonnet: String,
/// Default model for "haiku" family (when the incoming model is a Claude id).
#[serde(default = "default_zai_haiku_model")]
pub haiku: String,
}
impl Default for ZaiModelDefaults {
fn default() -> Self {
Self {
opus: default_zai_opus_model(),
sonnet: default_zai_sonnet_model(),
haiku: default_zai_haiku_model(),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ZaiMcpConfig {
#[serde(default)]
pub enabled: bool,
#[serde(default)]
pub web_search_enabled: bool,
#[serde(default)]
pub web_reader_enabled: bool,
#[serde(default)]
pub vision_enabled: bool,
}
impl Default for ZaiMcpConfig {
fn default() -> Self {
Self {
enabled: false,
web_search_enabled: false,
web_reader_enabled: false,
vision_enabled: false,
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ZaiConfig {
#[serde(default)]
pub enabled: bool,
#[serde(default = "default_zai_base_url")]
pub base_url: String,
#[serde(default)]
pub api_key: String,
#[serde(default)]
pub dispatch_mode: ZaiDispatchMode,
/// Optional per-model mapping overrides for Anthropic/Claude model ids.
/// Key: incoming `model` string, Value: upstream z.ai model id (e.g. `glm-4.7`).
#[serde(default)]
pub model_mapping: HashMap<String, String>,
#[serde(default)]
pub models: ZaiModelDefaults,
#[serde(default)]
pub mcp: ZaiMcpConfig,
}
impl Default for ZaiConfig {
fn default() -> Self {
Self {
enabled: false,
base_url: default_zai_base_url(),
api_key: String::new(),
dispatch_mode: ZaiDispatchMode::Off,
model_mapping: HashMap::new(),
models: ZaiModelDefaults::default(),
mcp: ZaiMcpConfig::default(),
}
}
}
/// 实验性功能配置 (Feature Flags)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ExperimentalConfig {
/// 启用双层签名缓存 (Signature Cache)
#[serde(default = "default_true")]
pub enable_signature_cache: bool,
/// 启用工具循环自动恢复 (Tool Loop Recovery)
#[serde(default = "default_true")]
pub enable_tool_loop_recovery: bool,
/// 启用跨模型兼容性检查 (Cross-Model Checks)
#[serde(default = "default_true")]
pub enable_cross_model_checks: bool,
/// 启用上下文用量缩放 (Context Usage Scaling)
/// 激进模式: 缩放用量并激活自动压缩以突破 200k 限制
/// 默认关闭以保持透明度,让客户端能触发原生压缩指令
#[serde(default = "default_false")]
pub enable_usage_scaling: bool,
/// 上下文压缩阈值 L1 (Tool Trimming)
#[serde(default = "default_threshold_l1")]
pub context_compression_threshold_l1: f32,
/// 上下文压缩阈值 L2 (Thinking Compression)
#[serde(default = "default_threshold_l2")]
pub context_compression_threshold_l2: f32,
/// 上下文压缩阈值 L3 (Fork + Summary)
#[serde(default = "default_threshold_l3")]
pub context_compression_threshold_l3: f32,
}
impl Default for ExperimentalConfig {
fn default() -> Self {
Self {
enable_signature_cache: true,
enable_tool_loop_recovery: true,
enable_cross_model_checks: true,
enable_usage_scaling: false, // 默认关闭,回归透明模式
context_compression_threshold_l1: 0.4,
context_compression_threshold_l2: 0.55,
context_compression_threshold_l3: 0.7,
}
}
}
fn default_threshold_l1() -> f32 {
0.4
}
fn default_threshold_l2() -> f32 {
0.55
}
fn default_threshold_l3() -> f32 {
0.7
}
/// Thinking Budget 模式
/// 控制如何处理调用方传入的 thinking_budget 参数
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum ThinkingBudgetMode {
/// 自动限制:对特定模型(Flash/Thinking)应用 24576 上限
Auto,
/// 透传:完全使用调用方传入的值,不做任何修改
Passthrough,
/// 自定义:使用用户设定的固定值覆盖所有请求
Custom,
/// 自适应:使用 effort 参数控制思考强度 (Claude 4.6+)
Adaptive,
}
impl Default for ThinkingBudgetMode {
fn default() -> Self {
Self::Auto
}
}
/// Thinking Budget 配置
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ThinkingBudgetConfig {
/// 模式选择
#[serde(default)]
pub mode: ThinkingBudgetMode,
/// 自定义固定值(仅在 mode=Custom 时生效)
#[serde(default = "default_thinking_budget_custom_value")]
pub custom_value: u32,
/// 思考强度 (仅在 mode=Adaptive 时生效) : low, medium, high
#[serde(default, skip_serializing_if = "Option::is_none")]
pub effort: Option<String>,
}
impl Default for ThinkingBudgetConfig {
fn default() -> Self {
Self {
mode: ThinkingBudgetMode::Auto,
custom_value: default_thinking_budget_custom_value(),
effort: None,
}
}
}
fn default_thinking_budget_custom_value() -> u32 {
24576
}
fn default_true() -> bool {
true
}
fn default_false() -> bool {
false
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DebugLoggingConfig {
#[serde(default)]
pub enabled: bool,
#[serde(default)]
pub output_dir: Option<String>,
}
impl Default for DebugLoggingConfig {
fn default() -> Self {
Self {
enabled: false,
output_dir: None,
}
}
}
/// IP 黑名单配置
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct IpBlacklistConfig {
/// 是否启用黑名单
#[serde(default)]
pub enabled: bool,
/// 自定义封禁消息
#[serde(default = "default_block_message")]
pub block_message: String,
}
impl Default for IpBlacklistConfig {
fn default() -> Self {
Self {
enabled: false,
block_message: default_block_message(),
}
}
}
fn default_block_message() -> String {
"Access denied".to_string()
}
/// IP 白名单配置
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct IpWhitelistConfig {
/// 是否启用白名单模式 (启用后只允许白名单IP访问)
#[serde(default)]
pub enabled: bool,
/// 白名单优先模式 (白名单IP跳过黑名单检查)
#[serde(default = "default_true")]
pub whitelist_priority: bool,
}
impl Default for IpWhitelistConfig {
fn default() -> Self {
Self {
enabled: false,
whitelist_priority: true,
}
}
}
/// 安全监控配置
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SecurityMonitorConfig {
/// IP 黑名单配置
#[serde(default)]
pub blacklist: IpBlacklistConfig,
/// IP 白名单配置
#[serde(default)]
pub whitelist: IpWhitelistConfig,
}
impl Default for SecurityMonitorConfig {
fn default() -> Self {
Self {
blacklist: IpBlacklistConfig::default(),
whitelist: IpWhitelistConfig::default(),
}
}
}
/// 反代服务配置
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ProxyConfig {
/// 是否启用反代服务
pub enabled: bool,
/// 是否允许局域网访问
/// - false: 仅本机访问 127.0.0.1(默认,隐私优先)
/// - true: 允许局域网访问 0.0.0.0
#[serde(default)]
pub allow_lan_access: bool,
/// Authorization policy for the proxy.
/// - off: no auth required
/// - strict: auth required for all routes
/// - all_except_health: auth required for all routes except `/healthz`
/// - auto: recommended defaults (currently: allow_lan_access => all_except_health, else off)
#[serde(default)]
pub auth_mode: ProxyAuthMode,
/// 监听端口
pub port: u16,
/// API 密钥
pub api_key: String,
/// Web UI 管理后台密码 (可选,如未设置则使用 api_key)
pub admin_password: Option<String>,
/// 是否自动启动
pub auto_start: bool,
/// 自定义精确模型映射表 (key: 原始模型名, value: 目标模型名)
#[serde(default)]
pub custom_mapping: std::collections::HashMap<String, String>,
/// API 请求超时时间(秒)
#[serde(default = "default_request_timeout")]
pub request_timeout: u64,
/// 是否开启请求日志记录 (监控)
#[serde(default)]
pub enable_logging: bool,
/// 调试日志配置 (保存完整链路)
#[serde(default)]
pub debug_logging: DebugLoggingConfig,
/// 上游代理配置
#[serde(default)]
pub upstream_proxy: UpstreamProxyConfig,
/// z.ai provider configuration (Anthropic-compatible).
#[serde(default)]
pub zai: ZaiConfig,
/// 自定义 User-Agent 请求头 (可选覆盖)
#[serde(default)]
pub user_agent_override: Option<String>,
/// 账号调度配置 (粘性会话/限流重试)
#[serde(default)]
pub scheduling: crate::proxy::sticky_config::StickySessionConfig,
/// 实验性功能配置
#[serde(default)]
pub experimental: ExperimentalConfig,
/// 安全监控配置 (IP 黑白名单)
#[serde(default)]
pub security_monitor: SecurityMonitorConfig,
/// 固定账号模式的账号ID (Fixed Account Mode)
/// - None: 使用轮询模式
/// - Some(account_id): 固定使用指定账号
#[serde(default)]
pub preferred_account_id: Option<String>,
/// Saved User-Agent string (persisted even when override is disabled)
#[serde(default)]
pub saved_user_agent: Option<String>,
/// Thinking Budget 配置
/// 控制如何处理 AI 深度思考时的 Token 预算
#[serde(default)]
pub thinking_budget: ThinkingBudgetConfig,
/// 全局系统提示词配置
/// 自动注入到所有 API 请求的 systemInstruction 中
#[serde(default)]
pub global_system_prompt: GlobalSystemPromptConfig,
/// 图像思维模式配置
/// - enabled: 保留思维链 (默认)
/// - disabled: 移除思维链 (画质优先)
#[serde(default)]
pub image_thinking_mode: Option<String>,
/// 代理池配置
#[serde(default)]
pub proxy_pool: ProxyPoolConfig,
}
/// 上游代理配置
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct UpstreamProxyConfig {
/// 是否启用
pub enabled: bool,
/// 代理地址 (http://, https://, socks5://)
pub url: String,
}
impl Default for ProxyConfig {
fn default() -> Self {
Self {
enabled: false,
allow_lan_access: false, // 默认仅本机访问,隐私优先
auth_mode: ProxyAuthMode::default(),
port: 8045,
api_key: format!("sk-{}", uuid::Uuid::new_v4().simple()),
admin_password: None,
auto_start: false,
custom_mapping: std::collections::HashMap::new(),
request_timeout: default_request_timeout(),
enable_logging: true, // 默认开启,支持 token 统计功能
debug_logging: DebugLoggingConfig::default(),
upstream_proxy: UpstreamProxyConfig::default(),
zai: ZaiConfig::default(),
scheduling: crate::proxy::sticky_config::StickySessionConfig::default(),
experimental: ExperimentalConfig::default(),
security_monitor: SecurityMonitorConfig::default(),
preferred_account_id: None, // 默认使用轮询模式
user_agent_override: None,
saved_user_agent: None,
thinking_budget: ThinkingBudgetConfig::default(),
global_system_prompt: GlobalSystemPromptConfig::default(),
proxy_pool: ProxyPoolConfig::default(),
image_thinking_mode: None,
}
}
}
fn default_request_timeout() -> u64 {
120 // 默认 120 秒,原来 60 秒太短
}
fn default_zai_base_url() -> String {
"https://api.z.ai/api/anthropic".to_string()
}
fn default_zai_opus_model() -> String {
"glm-4.7".to_string()
}
fn default_zai_sonnet_model() -> String {
"glm-4.7".to_string()
}
fn default_zai_haiku_model() -> String {
"glm-4.5-air".to_string()
}
impl ProxyConfig {
/// 获取实际的监听地址
/// - allow_lan_access = false: 返回 "127.0.0.1"(默认,隐私优先)
/// - allow_lan_access = true: 返回 "0.0.0.0"(允许局域网访问)
pub fn get_bind_address(&self) -> &str {
if self.allow_lan_access {
"0.0.0.0"
} else {
"127.0.0.1"
}
}
}
/// 代理认证信息
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ProxyAuth {
pub username: String,
#[serde(
serialize_with = "crate::utils::crypto::serialize_password",
deserialize_with = "crate::utils::crypto::deserialize_password"
)]
pub password: String,
}
/// 单个代理配置
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ProxyEntry {
pub id: String, // 唯一标识
pub name: String, // 显示名称
pub url: String, // 代理地址 (http://, https://, socks5://)
pub auth: Option<ProxyAuth>, // 认证信息 (可选)
pub enabled: bool, // 是否启用
pub priority: i32, // 优先级 (数字越小优先级越高)
pub tags: Vec<String>, // 标签 (如 "美国", "住宅IP")
pub max_accounts: Option<usize>, // 最大绑定账号数 (0 = 无限制)
pub health_check_url: Option<String>, // 健康检查 URL
pub last_check_time: Option<i64>, // 上次检查时间
pub is_healthy: bool, // 健康状态
pub latency: Option<u64>, // 延迟 (毫秒) [NEW]
}
/// 代理池配置
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ProxyPoolConfig {
pub enabled: bool, // 是否启用代理池
// pub mode: ProxyPoolMode, // [REMOVED] 代理池模式,统一为 Hybrid 逻辑
pub proxies: Vec<ProxyEntry>, // 代理列表
pub health_check_interval: u64, // 健康检查间隔 (秒)
pub auto_failover: bool, // 自动故障转移
pub strategy: ProxySelectionStrategy, // 代理选择策略
/// 账号到代理的绑定关系 (account_id -> proxy_id),持久化存储
#[serde(default)]
pub account_bindings: HashMap<String, String>,
}
impl Default for ProxyPoolConfig {
fn default() -> Self {
Self {
enabled: false,
// mode: ProxyPoolMode::Global,
proxies: Vec::new(),
health_check_interval: 300,
auto_failover: true,
strategy: ProxySelectionStrategy::Priority,
account_bindings: HashMap::new(),
}
}
}
/// 代理选择策略
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "snake_case")]
pub enum ProxySelectionStrategy {
/// 轮询: 依次使用
RoundRobin,
/// 随机: 随机选择
Random,
/// 优先级: 按 priority 字段排序
Priority,
/// 最少连接: 选择当前使用最少的代理
LeastConnections,
/// 加权轮询: 根据健康状态和优先级
WeightedRoundRobin,
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_normalize_proxy_url() {
// 测试已有协议
assert_eq!(normalize_proxy_url("http://127.0.0.1:7890"), "http://127.0.0.1:7890");
assert_eq!(normalize_proxy_url("https://proxy.com"), "https://proxy.com");
assert_eq!(normalize_proxy_url("socks5://127.0.0.1:1080"), "socks5://127.0.0.1:1080");
assert_eq!(normalize_proxy_url("socks5h://127.0.0.1:1080"), "socks5h://127.0.0.1:1080");
// 测试缺少协议(默认补全 http://)
assert_eq!(normalize_proxy_url("127.0.0.1:7890"), "http://127.0.0.1:7890");
assert_eq!(normalize_proxy_url("localhost:1082"), "http://localhost:1082");
// 测试边缘情况
assert_eq!(normalize_proxy_url(""), "");
assert_eq!(normalize_proxy_url(" "), "");
}
}
|