sz-orm-core 4.7.0

Core ORM engine: Model trait, ActiveRecord, QueryBuilder, Pool, Transaction, migration, and SQL dialect abstraction
Documentation
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
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
//! # 租户资源配额与行级安全增强
//!
//! 租户资源配额(`TenantResourceQuota`)+ 配额执行器(`QuotaEnforcer`)+
//! RLS 策略增强器(`RlsPolicyEnhancer`,多条件组合 + 参数化绑定)+
//! 租户级审计日志器(`TenantAuditLogger`,追加写入不可篡改)。
//!
//! 复用 v4.6.0 `ConnectionTenantBinder`(`connection_tenant.rs:133`)连接级隔离,
//! 复用既有 `RowLevelSecurityPolicy`(`tenant_security.rs:67`)/ `ColumnMaskingRule`(`:155`)/
//! `TenantAuditContext`(`:244`)/ `TenantAuditOperation`(`:197`)/ `AuditResult`(`:224`)。

use std::collections::HashMap;
use std::sync::{Arc, Mutex};

use serde::{Deserialize, Serialize};

use crate::tenant_security::{
    AuditResult, ColumnMaskingRule, ParameterizedCondition, Principal, RowLevelSecurityPolicy,
    TenantAuditContext, TenantAuditOperation,
};

/// 配额资源类型
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum QuotaResource {
    /// 连接数
    Connection,
    /// 每秒查询数
    Qps,
    /// 存储容量(字节)
    Storage,
}

impl std::fmt::Display for QuotaResource {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Connection => write!(f, "connection"),
            Self::Qps => write!(f, "qps"),
            Self::Storage => write!(f, "storage"),
        }
    }
}

/// 配额执行策略
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, Default)]
pub enum QuotaEnforceStrategy {
    /// 超限拒绝(安全优先)
    #[default]
    FailClose,
    /// 超限放行(可用性优先)
    FailOpen,
}

/// 租户资源配额
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TenantResourceQuota {
    /// 租户 ID
    pub tenant_id: String,
    /// 最大连接数
    pub max_connections: Option<u32>,
    /// 最大 QPS
    pub max_qps: Option<u32>,
    /// 最大存储容量(字节)
    pub max_storage: Option<u64>,
}

impl TenantResourceQuota {
    pub fn new(tenant_id: impl Into<String>) -> Self {
        Self {
            tenant_id: tenant_id.into(),
            max_connections: None,
            max_qps: None,
            max_storage: None,
        }
    }

    pub fn with_max_connections(mut self, max: u32) -> Self {
        self.max_connections = Some(max);
        self
    }

    pub fn with_max_qps(mut self, max: u32) -> Self {
        self.max_qps = Some(max);
        self
    }

    pub fn with_max_storage(mut self, max: u64) -> Self {
        self.max_storage = Some(max);
        self
    }

    /// 获取指定资源的配额上限
    pub fn limit(&self, resource: QuotaResource) -> Option<u64> {
        match resource {
            QuotaResource::Connection => self.max_connections.map(|v| v as u64),
            QuotaResource::Qps => self.max_qps.map(|v| v as u64),
            QuotaResource::Storage => self.max_storage,
        }
    }

    /// 检查指定资源是否超限
    pub fn is_exceeded(&self, resource: QuotaResource, current: u64) -> bool {
        self.limit(resource).is_some_and(|limit| current >= limit)
    }
}

impl Default for TenantResourceQuota {
    fn default() -> Self {
        Self::new("default")
    }
}

/// 配额错误
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum QuotaError {
    /// 配额超限
    QuotaExceeded {
        tenant_id: String,
        resource: QuotaResource,
        limit: u64,
        current: u64,
    },
    /// 配额检查失败
    QuotaCheckFailed(String),
    /// RLS 策略冲突
    RlsPolicyConflict(String),
    /// 审计日志写入失败
    AuditLogWriteFailed(String),
    /// 无效配额值
    InvalidQuotaValue(String),
}

impl std::fmt::Display for QuotaError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::QuotaExceeded {
                tenant_id,
                resource,
                limit,
                current,
            } => {
                write!(
                    f,
                    "quota exceeded for tenant {tenant_id}: {resource} limit={limit}, current={current}"
                )
            }
            Self::QuotaCheckFailed(msg) => write!(f, "quota check failed: {msg}"),
            Self::RlsPolicyConflict(msg) => write!(f, "RLS policy conflict: {msg}"),
            Self::AuditLogWriteFailed(msg) => write!(f, "audit log write failed: {msg}"),
            Self::InvalidQuotaValue(msg) => write!(f, "invalid quota value: {msg}"),
        }
    }
}

impl std::error::Error for QuotaError {}

/// 配额使用统计
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
struct QuotaUsage {
    connections: u64,
    qps: u64,
    storage: u64,
}

/// 配额执行器
///
/// 在连接池/查询层强制执行配额检查,超限按策略拒绝或放行。
/// 复用 v4.6.0 `ConnectionTenantBinder` 连接级隔离。
pub struct QuotaEnforcer {
    quotas: Arc<Mutex<HashMap<String, TenantResourceQuota>>>,
    usage: Arc<Mutex<HashMap<String, QuotaUsage>>>,
    strategy: QuotaEnforceStrategy,
}

impl QuotaEnforcer {
    pub fn new() -> Self {
        Self {
            quotas: Arc::new(Mutex::new(HashMap::new())),
            usage: Arc::new(Mutex::new(HashMap::new())),
            strategy: QuotaEnforceStrategy::default(),
        }
    }

    pub fn with_strategy(mut self, strategy: QuotaEnforceStrategy) -> Self {
        self.strategy = strategy;
        self
    }

    /// 设置租户配额
    pub fn set_quota(&self, quota: TenantResourceQuota) {
        let tenant_id = quota.tenant_id.clone();
        self.quotas.lock().unwrap().insert(tenant_id, quota);
    }

    /// 获取租户配额
    pub fn get_quota(&self, tenant_id: &str) -> Option<TenantResourceQuota> {
        self.quotas.lock().unwrap().get(tenant_id).cloned()
    }

    /// 检查配额
    ///
    /// `current` 为当前使用量,超限按策略返回错误或放行。
    pub fn check_quota(
        &self,
        tenant_id: &str,
        resource: QuotaResource,
        current: u64,
    ) -> Result<(), QuotaError> {
        let quotas = self.quotas.lock().unwrap();
        let quota = quotas.get(tenant_id);
        match quota {
            None => Ok(()),
            Some(q) => {
                let limit = q.limit(resource);
                match limit {
                    None => Ok(()),
                    Some(limit) if current >= limit => {
                        if matches!(self.strategy, QuotaEnforceStrategy::FailOpen) {
                            Ok(())
                        } else {
                            Err(QuotaError::QuotaExceeded {
                                tenant_id: tenant_id.to_string(),
                                resource,
                                limit,
                                current,
                            })
                        }
                    }
                    _ => Ok(()),
                }
            }
        }
    }

    /// 记录资源使用
    pub fn record_usage(&self, tenant_id: &str, resource: QuotaResource, amount: u64) {
        let mut usage = self.usage.lock().unwrap();
        let entry = usage.entry(tenant_id.to_string()).or_default();
        match resource {
            QuotaResource::Connection => entry.connections += amount,
            QuotaResource::Qps => entry.qps += amount,
            QuotaResource::Storage => entry.storage += amount,
        }
    }

    /// 获取当前使用量
    pub fn current_usage(&self, tenant_id: &str, resource: QuotaResource) -> u64 {
        let usage = self.usage.lock().unwrap();
        usage.get(tenant_id).map_or(0, |u| match resource {
            QuotaResource::Connection => u.connections,
            QuotaResource::Qps => u.qps,
            QuotaResource::Storage => u.storage,
        })
    }

    /// 检查并记录(原子操作)
    pub fn check_and_record(
        &self,
        tenant_id: &str,
        resource: QuotaResource,
        amount: u64,
    ) -> Result<(), QuotaError> {
        let current = self.current_usage(tenant_id, resource);
        self.check_quota(tenant_id, resource, current + amount)?;
        self.record_usage(tenant_id, resource, amount);
        Ok(())
    }
}

impl Default for QuotaEnforcer {
    fn default() -> Self {
        Self::new()
    }
}

impl std::fmt::Debug for QuotaEnforcer {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("QuotaEnforcer")
            .field("strategy", &self.strategy)
            .field("quota_count", &self.quotas.lock().unwrap().len())
            .finish()
    }
}

/// 增强 RLS 策略(多条件组合)
///
/// 支持多条件组合(`tenant_id=? AND dept_id IN (?,?)`),
/// 与列级脱敏联动,不修改既有 `RowLevelSecurityPolicy`。
#[derive(Debug, Clone)]
pub struct EnhancedRlsPolicy {
    /// 表名
    pub table: String,
    /// 多条件组合(AND 连接)
    pub conditions: Vec<ParameterizedCondition>,
    /// 权限主体
    pub principal: Principal,
    /// 关联的列级脱敏规则
    pub masking_rules: Vec<ColumnMaskingRule>,
}

impl EnhancedRlsPolicy {
    pub fn new(table: impl Into<String>, principal: Principal) -> Self {
        Self {
            table: table.into(),
            conditions: Vec::new(),
            principal,
            masking_rules: Vec::new(),
        }
    }

    pub fn with_condition(mut self, condition: ParameterizedCondition) -> Self {
        self.conditions.push(condition);
        self
    }

    pub fn with_masking_rule(mut self, rule: ColumnMaskingRule) -> Self {
        self.masking_rules.push(rule);
        self
    }

    /// 合并所有条件的 SQL 片段和参数
    ///
    /// 将 `$N` 占位符统一替换为 `?`(由调用方按位置绑定参数),避免跨条件占位符重编号。
    pub fn combined_condition(&self) -> Option<ParameterizedCondition> {
        if self.conditions.is_empty() {
            return None;
        }
        let mut sql_parts = Vec::new();
        let mut all_params = Vec::new();
        for cond in &self.conditions {
            let sql = replace_placeholders(&cond.sql_fragment);
            sql_parts.push(sql);
            all_params.extend(cond.params.clone());
        }
        Some(ParameterizedCondition::new(
            sql_parts.join(" AND "),
            all_params,
        ))
    }

    /// 转换为既有 `RowLevelSecurityPolicy`(单条件兼容)
    pub fn to_legacy_policy(&self) -> Result<RowLevelSecurityPolicy, QuotaError> {
        let condition = self.combined_condition().ok_or_else(|| {
            QuotaError::RlsPolicyConflict("no conditions in enhanced policy".to_string())
        })?;
        Ok(RowLevelSecurityPolicy::new(
            self.table.clone(),
            condition,
            self.principal.clone(),
        ))
    }
}

/// RLS 策略增强器
///
/// 自动注入 WHERE 参数化绑定,与列级脱敏联动。
/// 复用既有 `RowLevelSecurityPolicy`(`tenant_security.rs:67`)/ `ColumnMaskingRule`(`:155`)。
pub struct RlsPolicyEnhancer {
    policies: Arc<Mutex<HashMap<String, EnhancedRlsPolicy>>>,
}

impl RlsPolicyEnhancer {
    pub fn new() -> Self {
        Self {
            policies: Arc::new(Mutex::new(HashMap::new())),
        }
    }

    /// 注册增强 RLS 策略
    pub fn with_policy(&self, policy: EnhancedRlsPolicy) -> Result<(), QuotaError> {
        let table = policy.table.clone();
        let mut policies = self.policies.lock().unwrap();
        if policies.contains_key(&table) {
            return Err(QuotaError::RlsPolicyConflict(format!(
                "policy already exists for table {table}"
            )));
        }
        policies.insert(table, policy);
        Ok(())
    }

    /// 获取表的策略
    pub fn get_policy(&self, table: &str) -> Option<EnhancedRlsPolicy> {
        self.policies.lock().unwrap().get(table).cloned()
    }

    /// 增强 SQL 查询:注入 WHERE 参数化条件
    ///
    /// 返回增强后的 SQL 片段和参数列表。
    pub fn enhance_query(
        &self,
        table: &str,
        tenant_id: &str,
    ) -> Result<Option<ParameterizedCondition>, QuotaError> {
        let policies = self.policies.lock().unwrap();
        let policy = policies.get(table);
        match policy {
            None => Ok(None),
            Some(p) => {
                if p.principal.tenant_id.to_string() != tenant_id {
                    return Err(QuotaError::RlsPolicyConflict(format!(
                        "tenant_id mismatch: policy={}, request={}",
                        p.principal.tenant_id, tenant_id
                    )));
                }
                Ok(p.combined_condition())
            }
        }
    }

    /// 获取表关联的列级脱敏规则
    pub fn masking_rules(&self, table: &str) -> Vec<ColumnMaskingRule> {
        self.policies
            .lock()
            .unwrap()
            .get(table)
            .map(|p| p.masking_rules.clone())
            .unwrap_or_default()
    }

    /// 对查询结果行执行列级脱敏
    pub fn mask_row(&self, table: &str, row: &mut HashMap<String, String>) {
        for rule in self.masking_rules(table) {
            if let Some(val) = row.get_mut(&rule.column) {
                *val = rule.mask(val);
            }
        }
    }
}

impl Default for RlsPolicyEnhancer {
    fn default() -> Self {
        Self::new()
    }
}

impl std::fmt::Debug for RlsPolicyEnhancer {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("RlsPolicyEnhancer")
            .field("policy_count", &self.policies.lock().unwrap().len())
            .finish()
    }
}

/// 租户审计日志条目
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TenantAuditEntry {
    /// 租户 ID
    pub tenant_id: String,
    /// 操作类型(字符串表示)
    pub operation: String,
    /// 时间戳(Unix 秒)
    pub timestamp: i64,
    /// 结果(字符串表示)
    pub result: String,
    /// 详情
    pub detail: String,
    /// 关联表(可选)
    pub table: Option<String>,
    /// 关联配额资源(可选)
    pub quota_resource: Option<QuotaResource>,
}

impl TenantAuditEntry {
    pub fn new(
        tenant_id: impl Into<String>,
        operation: TenantAuditOperation,
        result: AuditResult,
        detail: impl Into<String>,
    ) -> Self {
        Self {
            tenant_id: tenant_id.into(),
            operation: operation.to_string(),
            timestamp: chrono::Utc::now().timestamp(),
            result: result.to_string(),
            detail: detail.into(),
            table: None,
            quota_resource: None,
        }
    }

    pub fn with_table(mut self, table: impl Into<String>) -> Self {
        self.table = Some(table.into());
        self
    }

    pub fn with_quota_resource(mut self, resource: QuotaResource) -> Self {
        self.quota_resource = Some(resource);
        self
    }

    /// 转换为既有 `TenantAuditContext`
    pub fn to_audit_context(&self) -> TenantAuditContext {
        let operation = match self.operation.as_str() {
            "context_set" => TenantAuditOperation::ContextSet,
            "context_switch" => TenantAuditOperation::ContextSwitch,
            "cross_tenant_denied" => TenantAuditOperation::CrossTenantDenied,
            "row_level_filtered" => TenantAuditOperation::RowLevelFiltered,
            "column_masked" => TenantAuditOperation::ColumnMasked,
            _ => TenantAuditOperation::ContextSet,
        };
        let result = if self.result == "success" {
            AuditResult::Success
        } else {
            AuditResult::Denied
        };
        TenantAuditContext::new(
            self.tenant_id.parse().unwrap_or(0),
            operation,
            result,
            self.detail.clone(),
        )
    }
}

/// 租户级审计日志器
///
/// 按租户独立记录审计日志,追加写入不可篡改。
/// 复用既有 `TenantAuditContext`(`tenant_security.rs:244`)/ `TenantAuditOperation`(`:197`)/ `AuditResult`(`:224`)。
pub struct TenantAuditLogger {
    logs: Arc<Mutex<Vec<TenantAuditEntry>>>,
}

impl TenantAuditLogger {
    pub fn new() -> Self {
        Self {
            logs: Arc::new(Mutex::new(Vec::new())),
        }
    }

    /// 记录审计日志(追加写入,不可篡改)
    pub fn log(&self, entry: TenantAuditEntry) -> Result<(), QuotaError> {
        let mut logs = self.logs.lock().unwrap();
        logs.push(entry);
        Ok(())
    }

    /// 获取指定租户的审计日志
    pub fn get_logs(&self, tenant_id: &str) -> Vec<TenantAuditEntry> {
        self.logs
            .lock()
            .unwrap()
            .iter()
            .filter(|e| e.tenant_id == tenant_id)
            .cloned()
            .collect()
    }

    /// 获取所有审计日志
    pub fn all_logs(&self) -> Vec<TenantAuditEntry> {
        self.logs.lock().unwrap().clone()
    }

    /// 获取指定租户的日志数量
    pub fn log_count(&self, tenant_id: &str) -> usize {
        self.logs
            .lock()
            .unwrap()
            .iter()
            .filter(|e| e.tenant_id == tenant_id)
            .count()
    }

    /// 按操作类型过滤
    pub fn filter_by_operation(&self, tenant_id: &str, operation: &str) -> Vec<TenantAuditEntry> {
        self.logs
            .lock()
            .unwrap()
            .iter()
            .filter(|e| e.tenant_id == tenant_id && e.operation == operation)
            .cloned()
            .collect()
    }
}

impl Default for TenantAuditLogger {
    fn default() -> Self {
        Self::new()
    }
}

impl std::fmt::Debug for TenantAuditLogger {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("TenantAuditLogger")
            .field("log_count", &self.logs.lock().unwrap().len())
            .finish()
    }
}

/// 将 `$N` 占位符替换为 `?`(N 为任意数字序列)
fn replace_placeholders(sql: &str) -> String {
    let mut result = String::with_capacity(sql.len());
    let mut chars = sql.chars().peekable();
    while let Some(ch) = chars.next() {
        if ch == '$' && chars.peek().is_some_and(|c| c.is_ascii_digit()) {
            result.push('?');
            while chars.peek().is_some_and(|c| c.is_ascii_digit()) {
                chars.next();
            }
        } else {
            result.push(ch);
        }
    }
    result
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::tenant_security::{MaskingFunction, PermissionPredicate};
    use crate::value::Value;

    #[test]
    fn test_quota_resource_display() {
        assert_eq!(QuotaResource::Connection.to_string(), "connection");
        assert_eq!(QuotaResource::Qps.to_string(), "qps");
        assert_eq!(QuotaResource::Storage.to_string(), "storage");
    }

    #[test]
    fn test_quota_enforce_strategy_default() {
        assert_eq!(
            QuotaEnforceStrategy::default(),
            QuotaEnforceStrategy::FailClose
        );
    }

    #[test]
    fn test_tenant_resource_quota_new() {
        let quota = TenantResourceQuota::new("tenant_001");
        assert_eq!(quota.tenant_id, "tenant_001");
        assert!(quota.max_connections.is_none());
        assert!(quota.max_qps.is_none());
        assert!(quota.max_storage.is_none());
    }

    #[test]
    fn test_tenant_resource_quota_builder() {
        let quota = TenantResourceQuota::new("tenant_001")
            .with_max_connections(10)
            .with_max_qps(1000)
            .with_max_storage(1024 * 1024 * 1024);
        assert_eq!(quota.max_connections, Some(10));
        assert_eq!(quota.max_qps, Some(1000));
        assert_eq!(quota.max_storage, Some(1073741824));
    }

    #[test]
    fn test_tenant_resource_quota_limit() {
        let quota = TenantResourceQuota::new("t1")
            .with_max_connections(10)
            .with_max_storage(1000);
        assert_eq!(quota.limit(QuotaResource::Connection), Some(10));
        assert_eq!(quota.limit(QuotaResource::Qps), None);
        assert_eq!(quota.limit(QuotaResource::Storage), Some(1000));
    }

    #[test]
    fn test_tenant_resource_quota_is_exceeded() {
        let quota = TenantResourceQuota::new("t1").with_max_connections(10);
        assert!(!quota.is_exceeded(QuotaResource::Connection, 5));
        assert!(quota.is_exceeded(QuotaResource::Connection, 10));
        assert!(quota.is_exceeded(QuotaResource::Connection, 15));
        assert!(!quota.is_exceeded(QuotaResource::Qps, 99999));
    }

    #[test]
    fn test_quota_error_display() {
        let err = QuotaError::QuotaExceeded {
            tenant_id: "t1".to_string(),
            resource: QuotaResource::Connection,
            limit: 10,
            current: 15,
        };
        assert!(err.to_string().contains("t1"));
        assert!(err.to_string().contains("connection"));

        let err = QuotaError::QuotaCheckFailed("db error".to_string());
        assert!(err.to_string().contains("db error"));

        let err = QuotaError::RlsPolicyConflict("conflict".to_string());
        assert!(err.to_string().contains("conflict"));

        let err = QuotaError::AuditLogWriteFailed("io".to_string());
        assert!(err.to_string().contains("io"));

        let err = QuotaError::InvalidQuotaValue("negative".to_string());
        assert!(err.to_string().contains("negative"));
    }

    #[test]
    fn test_quota_enforcer_no_quota() {
        let enforcer = QuotaEnforcer::new();
        let result = enforcer.check_quota("t1", QuotaResource::Connection, 100);
        assert!(result.is_ok());
    }

    #[test]
    fn test_quota_enforcer_within_limit() {
        let enforcer = QuotaEnforcer::new();
        let quota = TenantResourceQuota::new("t1").with_max_connections(10);
        enforcer.set_quota(quota);
        let result = enforcer.check_quota("t1", QuotaResource::Connection, 5);
        assert!(result.is_ok());
    }

    #[test]
    fn test_quota_enforcer_exceeded_fail_close() {
        let enforcer = QuotaEnforcer::new();
        let quota = TenantResourceQuota::new("t1").with_max_connections(10);
        enforcer.set_quota(quota);
        let result = enforcer.check_quota("t1", QuotaResource::Connection, 10);
        assert!(result.is_err());
        match result {
            Err(QuotaError::QuotaExceeded {
                tenant_id,
                resource,
                limit,
                current,
            }) => {
                assert_eq!(tenant_id, "t1");
                assert_eq!(resource, QuotaResource::Connection);
                assert_eq!(limit, 10);
                assert_eq!(current, 10);
            }
            _ => panic!("wrong error type"),
        }
    }

    #[test]
    fn test_quota_enforcer_exceeded_fail_open() {
        let enforcer = QuotaEnforcer::new().with_strategy(QuotaEnforceStrategy::FailOpen);
        let quota = TenantResourceQuota::new("t1").with_max_connections(10);
        enforcer.set_quota(quota);
        let result = enforcer.check_quota("t1", QuotaResource::Connection, 15);
        assert!(result.is_ok());
    }

    #[test]
    fn test_quota_enforcer_record_and_check() {
        let enforcer = QuotaEnforcer::new();
        let quota = TenantResourceQuota::new("t1").with_max_connections(10);
        enforcer.set_quota(quota);

        assert!(enforcer
            .check_and_record("t1", QuotaResource::Connection, 5)
            .is_ok());
        assert_eq!(enforcer.current_usage("t1", QuotaResource::Connection), 5);

        assert!(enforcer
            .check_and_record("t1", QuotaResource::Connection, 3)
            .is_ok());
        assert_eq!(enforcer.current_usage("t1", QuotaResource::Connection), 8);

        let result = enforcer.check_and_record("t1", QuotaResource::Connection, 5);
        assert!(result.is_err());
    }

    #[test]
    fn test_enhanced_rls_policy_new() {
        let principal = Principal::new(1, vec!["employee".to_string()]);
        let policy = EnhancedRlsPolicy::new("orders", principal);
        assert_eq!(policy.table, "orders");
        assert!(policy.conditions.is_empty());
        assert!(policy.masking_rules.is_empty());
    }

    #[test]
    fn test_enhanced_rls_policy_with_conditions() {
        let principal = Principal::new(1, vec!["employee".to_string()]);
        let policy = EnhancedRlsPolicy::new("orders", principal)
            .with_condition(ParameterizedCondition::new(
                "tenant_id = $1",
                vec![Value::I64(1)],
            ))
            .with_condition(ParameterizedCondition::new(
                "dept_id IN ($1, $2)",
                vec![Value::I32(10), Value::I32(20)],
            ));
        assert_eq!(policy.conditions.len(), 2);

        let combined = policy.combined_condition().unwrap();
        assert!(combined.sql_fragment.contains("AND"));
        assert_eq!(combined.params.len(), 3);
    }

    #[test]
    fn test_enhanced_rls_policy_no_conditions() {
        let principal = Principal::new(1, vec![]);
        let policy = EnhancedRlsPolicy::new("orders", principal);
        assert!(policy.combined_condition().is_none());
    }

    #[test]
    fn test_enhanced_rls_policy_with_masking() {
        let principal = Principal::new(1, vec!["employee".to_string()]);
        let masking_rule = ColumnMaskingRule::new(
            "orders",
            "customer_phone",
            MaskingFunction::Phone,
            PermissionPredicate::all(),
        );
        let policy = EnhancedRlsPolicy::new("orders", principal)
            .with_condition(ParameterizedCondition::new(
                "tenant_id = $1",
                vec![Value::I64(1)],
            ))
            .with_masking_rule(masking_rule);
        assert_eq!(policy.masking_rules.len(), 1);
    }

    #[test]
    fn test_rls_policy_enhancer_new() {
        let enhancer = RlsPolicyEnhancer::new();
        assert!(enhancer.get_policy("orders").is_none());
    }

    #[test]
    fn test_rls_policy_enhancer_register() {
        let enhancer = RlsPolicyEnhancer::new();
        let principal = Principal::new(1, vec!["employee".to_string()]);
        let policy = EnhancedRlsPolicy::new("orders", principal).with_condition(
            ParameterizedCondition::new("tenant_id = $1", vec![Value::I64(1)]),
        );
        assert!(enhancer.with_policy(policy).is_ok());
        assert!(enhancer.get_policy("orders").is_some());
    }

    #[test]
    fn test_rls_policy_enhancer_duplicate() {
        let enhancer = RlsPolicyEnhancer::new();
        let principal = Principal::new(1, vec![]);
        let policy1 = EnhancedRlsPolicy::new("orders", principal.clone());
        let policy2 = EnhancedRlsPolicy::new("orders", principal);
        enhancer.with_policy(policy1).unwrap();
        let result = enhancer.with_policy(policy2);
        assert!(result.is_err());
    }

    #[test]
    fn test_rls_policy_enhancer_enhance_query() {
        let enhancer = RlsPolicyEnhancer::new();
        let principal = Principal::new(1, vec!["employee".to_string()]);
        let policy = EnhancedRlsPolicy::new("orders", principal).with_condition(
            ParameterizedCondition::new("tenant_id = $1", vec![Value::I64(1)]),
        );
        enhancer.with_policy(policy).unwrap();

        let result = enhancer.enhance_query("orders", "1").unwrap();
        assert!(result.is_some());
        let cond = result.unwrap();
        assert!(cond.sql_fragment.contains("tenant_id"));
    }

    #[test]
    fn test_rls_policy_enhancer_tenant_mismatch() {
        let enhancer = RlsPolicyEnhancer::new();
        let principal = Principal::new(1, vec![]);
        let policy = EnhancedRlsPolicy::new("orders", principal).with_condition(
            ParameterizedCondition::new("tenant_id = $1", vec![Value::I64(1)]),
        );
        enhancer.with_policy(policy).unwrap();

        let result = enhancer.enhance_query("orders", "2");
        assert!(result.is_err());
    }

    #[test]
    fn test_rls_policy_enhancer_no_policy() {
        let enhancer = RlsPolicyEnhancer::new();
        let result = enhancer.enhance_query("unknown_table", "1").unwrap();
        assert!(result.is_none());
    }

    #[test]
    fn test_rls_policy_enhancer_mask_row() {
        let enhancer = RlsPolicyEnhancer::new();
        let principal = Principal::new(1, vec!["employee".to_string()]);
        let masking_rule = ColumnMaskingRule::new(
            "users",
            "phone",
            MaskingFunction::Phone,
            PermissionPredicate::all(),
        );
        let policy = EnhancedRlsPolicy::new("users", principal)
            .with_condition(ParameterizedCondition::new(
                "tenant_id = $1",
                vec![Value::I64(1)],
            ))
            .with_masking_rule(masking_rule);
        enhancer.with_policy(policy).unwrap();

        let mut row = HashMap::new();
        row.insert("phone".to_string(), "13800138000".to_string());
        row.insert("name".to_string(), "Alice".to_string());
        enhancer.mask_row("users", &mut row);
        assert_ne!(row.get("phone").unwrap(), "13800138000");
        assert_eq!(row.get("name").unwrap(), "Alice");
    }

    #[test]
    fn test_tenant_audit_entry_new() {
        let entry = TenantAuditEntry::new(
            "t1",
            TenantAuditOperation::ContextSet,
            AuditResult::Success,
            "tenant context set",
        );
        assert_eq!(entry.tenant_id, "t1");
        assert_eq!(entry.operation, "context_set");
        assert_eq!(entry.result, "success");
        assert!(entry.table.is_none());
        assert!(entry.quota_resource.is_none());
    }

    #[test]
    fn test_tenant_audit_entry_builder() {
        let entry = TenantAuditEntry::new(
            "t1",
            TenantAuditOperation::RowLevelFiltered,
            AuditResult::Denied,
            "access denied",
        )
        .with_table("orders")
        .with_quota_resource(QuotaResource::Connection);
        assert_eq!(entry.table, Some("orders".to_string()));
        assert_eq!(entry.quota_resource, Some(QuotaResource::Connection));
    }

    #[test]
    fn test_tenant_audit_logger_new() {
        let logger = TenantAuditLogger::new();
        assert_eq!(logger.all_logs().len(), 0);
    }

    #[test]
    fn test_tenant_audit_logger_log() {
        let logger = TenantAuditLogger::new();
        let entry = TenantAuditEntry::new(
            "t1",
            TenantAuditOperation::ContextSet,
            AuditResult::Success,
            "test",
        );
        assert!(logger.log(entry).is_ok());
        assert_eq!(logger.all_logs().len(), 1);
        assert_eq!(logger.log_count("t1"), 1);
        assert_eq!(logger.log_count("t2"), 0);
    }

    #[test]
    fn test_tenant_audit_logger_get_logs() {
        let logger = TenantAuditLogger::new();
        for i in 0..3 {
            let entry = TenantAuditEntry::new(
                "t1",
                TenantAuditOperation::ContextSet,
                AuditResult::Success,
                format!("entry {i}"),
            );
            logger.log(entry).unwrap();
        }
        let entry = TenantAuditEntry::new(
            "t2",
            TenantAuditOperation::ContextSet,
            AuditResult::Success,
            "other tenant",
        );
        logger.log(entry).unwrap();

        assert_eq!(logger.get_logs("t1").len(), 3);
        assert_eq!(logger.get_logs("t2").len(), 1);
    }

    #[test]
    fn test_tenant_audit_logger_filter_by_operation() {
        let logger = TenantAuditLogger::new();
        logger
            .log(TenantAuditEntry::new(
                "t1",
                TenantAuditOperation::ContextSet,
                AuditResult::Success,
                "set",
            ))
            .unwrap();
        logger
            .log(TenantAuditEntry::new(
                "t1",
                TenantAuditOperation::CrossTenantDenied,
                AuditResult::Denied,
                "denied",
            ))
            .unwrap();
        logger
            .log(TenantAuditEntry::new(
                "t1",
                TenantAuditOperation::ColumnMasked,
                AuditResult::Success,
                "masked",
            ))
            .unwrap();

        let filtered = logger.filter_by_operation("t1", "cross_tenant_denied");
        assert_eq!(filtered.len(), 1);
        assert_eq!(filtered[0].detail, "denied");
    }

    #[test]
    fn test_tenant_audit_entry_to_audit_context() {
        let entry = TenantAuditEntry::new(
            "42",
            TenantAuditOperation::ContextSet,
            AuditResult::Success,
            "test",
        );
        let ctx = entry.to_audit_context();
        assert_eq!(ctx.tenant_id, 42);
        assert_eq!(ctx.operation, TenantAuditOperation::ContextSet);
        assert_eq!(ctx.result, AuditResult::Success);
    }

    #[test]
    fn test_quota_enforcer_get_quota() {
        let enforcer = QuotaEnforcer::new();
        let quota = TenantResourceQuota::new("t1").with_max_connections(10);
        enforcer.set_quota(quota);
        let retrieved = enforcer.get_quota("t1").unwrap();
        assert_eq!(retrieved.max_connections, Some(10));
    }

    #[test]
    fn test_quota_enforcer_debug() {
        let enforcer = QuotaEnforcer::new().with_strategy(QuotaEnforceStrategy::FailOpen);
        let debug = format!("{:?}", enforcer);
        assert!(debug.contains("FailOpen"));
    }
}