tideway 0.7.17

A batteries-included Rust web framework built on Axum for building SaaS applications quickly
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
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
//! Storage traits for billing data.
//!
//! Implement these traits to persist billing state to your database.

use crate::error::Result;
use async_trait::async_trait;
use serde::{Deserialize, Serialize};

/// Trait for storing billing data.
///
/// Implement this trait to persist billing state to your database.
/// An in-memory implementation is provided for testing.
#[async_trait]
pub trait BillingStore: Send + Sync {
    // Customer management

    /// Get the Stripe customer ID for a billable entity.
    async fn get_stripe_customer_id(&self, billable_id: &str) -> Result<Option<String>>;

    /// Link a billable entity to a Stripe customer.
    async fn set_stripe_customer_id(
        &self,
        billable_id: &str,
        billable_type: &str,
        customer_id: &str,
    ) -> Result<()>;

    // Subscription tracking

    /// Get the cached subscription for a billable entity.
    async fn get_subscription(&self, billable_id: &str) -> Result<Option<StoredSubscription>>;

    /// Save/update the cached subscription.
    async fn save_subscription(
        &self,
        billable_id: &str,
        subscription: &StoredSubscription,
    ) -> Result<()>;

    /// Save subscription only if it hasn't been modified since `expected_version`.
    ///
    /// This is used for optimistic locking to prevent race conditions.
    /// Returns `Ok(true)` if the save succeeded, `Ok(false)` if the version didn't match.
    ///
    /// # Important: Production Implementations MUST Override This
    ///
    /// The default implementation has a **time-of-check to time-of-use (TOCTOU) race condition**
    /// and is only suitable for single-threaded development/testing scenarios.
    ///
    /// Production implementations MUST override this method with an atomic compare-and-swap
    /// operation. Examples:
    ///
    /// - **PostgreSQL**: Use `UPDATE ... WHERE updated_at = $expected_version`
    /// - **Redis**: Use `WATCH`/`MULTI`/`EXEC` transactions
    /// - **DynamoDB**: Use conditional writes with `ConditionExpression`
    ///
    /// # Example (PostgreSQL)
    ///
    /// ```sql
    /// UPDATE subscriptions
    /// SET ..., updated_at = NOW()
    /// WHERE billable_id = $1 AND updated_at = $2
    /// RETURNING billable_id
    /// ```
    ///
    /// If the query returns a row, the update succeeded. If not, version mismatch.
    async fn compare_and_save_subscription(
        &self,
        billable_id: &str,
        subscription: &StoredSubscription,
        expected_version: u64,
    ) -> Result<bool> {
        // WARNING: This default implementation is NOT atomic and has a TOCTOU race condition.
        // It exists only for backwards compatibility and simple development scenarios.
        // Production code MUST override this method with an atomic implementation.
        #[cfg(debug_assertions)]
        {
            static WARNED: std::sync::atomic::AtomicBool =
                std::sync::atomic::AtomicBool::new(false);
            if !WARNED.swap(true, std::sync::atomic::Ordering::Relaxed) {
                tracing::warn!(
                    target: "tideway::billing",
                    "Using default non-atomic compare_and_save_subscription implementation. \
                     This is NOT safe for production use with concurrent requests. \
                     Override this method with an atomic compare-and-swap operation."
                );
            }
        }

        if let Some(current) = self.get_subscription(billable_id).await? {
            if current.updated_at != expected_version {
                return Ok(false);
            }
        }
        self.save_subscription(billable_id, subscription).await?;
        Ok(true)
    }

    /// Delete the subscription record.
    async fn delete_subscription(&self, billable_id: &str) -> Result<()>;

    /// Get subscription by Stripe subscription ID.
    async fn get_subscription_by_stripe_id(
        &self,
        stripe_subscription_id: &str,
    ) -> Result<Option<(String, StoredSubscription)>>;

    // Webhook idempotency

    /// Check if a webhook event has already been processed.
    async fn is_event_processed(&self, event_id: &str) -> Result<bool>;

    /// Mark a webhook event as processed.
    async fn mark_event_processed(&self, event_id: &str) -> Result<()>;

    // Optional: cleanup old events

    /// Clean up old processed events (default: no-op).
    async fn cleanup_old_events(&self, _older_than_days: u32) -> Result<usize> {
        Ok(0)
    }

    // Plan-subscription relationship

    /// Count active subscriptions using a specific plan.
    ///
    /// Used to prevent deleting plans that have active subscriptions.
    /// Returns the count of subscriptions with status Active or Trialing.
    async fn count_subscriptions_by_plan(&self, plan_id: &str) -> Result<u32>;
}

/// Cached subscription state.
///
/// This is synced from Stripe via webhooks to avoid API calls on every request.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct StoredSubscription {
    /// Stripe subscription ID.
    pub stripe_subscription_id: String,
    /// Stripe customer ID.
    pub stripe_customer_id: String,
    /// Plan ID (your internal plan identifier).
    pub plan_id: String,
    /// Subscription status.
    pub status: SubscriptionStatus,
    /// Current billing period start (Unix timestamp).
    pub current_period_start: u64,
    /// Current billing period end (Unix timestamp).
    pub current_period_end: u64,
    /// Number of extra seats purchased.
    pub extra_seats: u32,
    /// Trial end timestamp (if in trial).
    pub trial_end: Option<u64>,
    /// Whether subscription will cancel at period end.
    pub cancel_at_period_end: bool,
    /// Stripe subscription item ID for the base plan.
    pub base_item_id: Option<String>,
    /// Stripe subscription item ID for extra seats.
    pub seat_item_id: Option<String>,
    /// Last updated timestamp.
    pub updated_at: u64,
}

impl StoredSubscription {
    /// Check if the subscription is active (including trialing).
    #[must_use]
    pub fn is_active(&self) -> bool {
        matches!(
            self.status,
            SubscriptionStatus::Active | SubscriptionStatus::Trialing
        )
    }

    /// Check if the subscription is in trial.
    #[must_use]
    pub fn is_trialing(&self) -> bool {
        self.status == SubscriptionStatus::Trialing
    }

    /// Check if payment has failed.
    #[must_use]
    pub fn is_past_due(&self) -> bool {
        self.status == SubscriptionStatus::PastDue
    }

    /// Check if the subscription is canceled.
    #[must_use]
    pub fn is_canceled(&self) -> bool {
        self.status == SubscriptionStatus::Canceled
    }

    /// Check if the subscription will cancel at period end.
    #[must_use]
    pub fn will_cancel(&self) -> bool {
        self.cancel_at_period_end
    }

    /// Get remaining trial days (if in trial).
    #[must_use]
    pub fn trial_days_remaining(&self) -> Option<u32> {
        self.trial_end.and_then(|end| {
            let now = std::time::SystemTime::now()
                .duration_since(std::time::UNIX_EPOCH)
                .map(|d| d.as_secs())
                .unwrap_or(0);

            if end > now {
                Some(((end - now) / 86400) as u32)
            } else {
                None
            }
        })
    }
}

/// Subscription status.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum SubscriptionStatus {
    /// Subscription is active and paid.
    Active,
    /// Subscription is in trial period.
    Trialing,
    /// Payment failed, subscription still active but past due.
    PastDue,
    /// Subscription has been canceled.
    Canceled,
    /// Subscription is incomplete (awaiting payment).
    Incomplete,
    /// Subscription expired after incomplete payment.
    IncompleteExpired,
    /// Subscription is paused.
    Paused,
    /// Subscription is unpaid.
    Unpaid,
}

impl SubscriptionStatus {
    /// Parse from Stripe subscription status string.
    #[must_use]
    pub fn from_stripe(status: &str) -> Self {
        match status {
            "active" => Self::Active,
            "trialing" => Self::Trialing,
            "past_due" => Self::PastDue,
            "canceled" => Self::Canceled,
            "incomplete" => Self::Incomplete,
            "incomplete_expired" => Self::IncompleteExpired,
            "paused" => Self::Paused,
            "unpaid" => Self::Unpaid,
            _ => Self::Canceled, // Default to canceled for unknown statuses
        }
    }

    /// Convert to string for Stripe.
    #[must_use]
    pub fn as_str(&self) -> &'static str {
        match self {
            Self::Active => "active",
            Self::Trialing => "trialing",
            Self::PastDue => "past_due",
            Self::Canceled => "canceled",
            Self::Incomplete => "incomplete",
            Self::IncompleteExpired => "incomplete_expired",
            Self::Paused => "paused",
            Self::Unpaid => "unpaid",
        }
    }
}

impl std::fmt::Display for SubscriptionStatus {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

// =============================================================================
// Plan Storage
// =============================================================================

/// A plan stored in the database.
///
/// This represents a subscription plan that can be managed through the admin UI.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct StoredPlan {
    /// Unique plan identifier (e.g., "starter", "pro", "enterprise").
    pub id: String,
    /// Display name shown to users.
    pub name: String,
    /// Description of the plan.
    pub description: Option<String>,
    /// Stripe Price ID for the subscription.
    pub stripe_price_id: String,
    /// Stripe Price ID for additional seats (optional).
    pub stripe_seat_price_id: Option<String>,
    /// Price in cents (for display purposes).
    pub price_cents: i64,
    /// Currency code (e.g., "usd", "gbp", "eur").
    pub currency: String,
    /// Billing interval.
    pub interval: PlanInterval,
    /// Number of seats included in the base price.
    pub included_seats: u32,
    /// Features available on this plan (JSON object).
    pub features: serde_json::Value,
    /// Resource limits for this plan (JSON object).
    pub limits: serde_json::Value,
    /// Trial period in days (None = no trial).
    pub trial_days: Option<u32>,
    /// Whether the plan is active and available for purchase.
    pub is_active: bool,
    /// Sort order for display.
    pub sort_order: i32,
    /// Created timestamp.
    pub created_at: u64,
    /// Updated timestamp.
    pub updated_at: u64,
}

impl StoredPlan {
    /// Create a new StoredPlan with minimal required fields.
    #[must_use]
    pub fn new(id: impl Into<String>, stripe_price_id: impl Into<String>) -> Self {
        let now = std::time::SystemTime::now()
            .duration_since(std::time::UNIX_EPOCH)
            .map(|d| d.as_secs())
            .unwrap_or(0);

        Self {
            id: id.into(),
            name: String::new(),
            description: None,
            stripe_price_id: stripe_price_id.into(),
            stripe_seat_price_id: None,
            price_cents: 0,
            currency: "usd".to_string(),
            interval: PlanInterval::Monthly,
            included_seats: 1,
            features: serde_json::json!({}),
            limits: serde_json::json!({}),
            trial_days: None,
            is_active: true,
            sort_order: 0,
            created_at: now,
            updated_at: now,
        }
    }

    /// Check if this plan has a specific feature.
    #[must_use]
    pub fn has_feature(&self, feature: &str) -> bool {
        self.features
            .get(feature)
            .and_then(|v| v.as_bool())
            .unwrap_or(false)
    }

    /// Get a feature limit value.
    #[must_use]
    pub fn get_limit(&self, limit: &str) -> Option<i64> {
        self.limits.get(limit).and_then(|v| v.as_i64())
    }

    /// Check if a resource usage is within limits.
    #[must_use]
    pub fn check_limit(&self, resource: &str, current: i64) -> bool {
        match self.get_limit(resource) {
            None => true, // No limit = unlimited
            Some(max) => current < max,
        }
    }

    /// Get the price formatted for display (e.g., "$9.99").
    #[must_use]
    pub fn formatted_price(&self) -> String {
        let symbol = match self.currency.as_str() {
            "usd" => "$",
            "gbp" => "£",
            "eur" => "€",
            _ => &self.currency,
        };
        let dollars = self.price_cents as f64 / 100.0;
        format!("{}{:.2}", symbol, dollars)
    }
}

/// Billing interval for a plan.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum PlanInterval {
    /// Billed monthly.
    Monthly,
    /// Billed yearly.
    Yearly,
    /// One-time payment (lifetime).
    OneTime,
}

impl PlanInterval {
    /// Convert from string.
    #[allow(clippy::should_implement_trait)] // This is intentionally lenient and defaults unknown values to monthly.
    #[must_use]
    pub fn from_str(s: &str) -> Self {
        match s {
            "monthly" | "month" => Self::Monthly,
            "yearly" | "year" | "annual" => Self::Yearly,
            "one_time" | "onetime" | "lifetime" => Self::OneTime,
            _ => Self::Monthly,
        }
    }

    /// Convert to string.
    #[must_use]
    pub fn as_str(&self) -> &'static str {
        match self {
            Self::Monthly => "monthly",
            Self::Yearly => "yearly",
            Self::OneTime => "one_time",
        }
    }
}

impl std::fmt::Display for PlanInterval {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

/// Trait for storing plan data.
///
/// Implement this trait to persist plans to your database.
#[async_trait]
pub trait PlanStore: Send + Sync {
    /// Get all active plans, ordered by sort_order.
    async fn list_plans(&self) -> Result<Vec<StoredPlan>>;

    /// Get all plans (including inactive), ordered by sort_order.
    async fn list_all_plans(&self) -> Result<Vec<StoredPlan>>;

    /// Get a plan by ID.
    async fn get_plan(&self, plan_id: &str) -> Result<Option<StoredPlan>>;

    /// Get a plan by Stripe price ID.
    async fn get_plan_by_stripe_price(&self, stripe_price_id: &str) -> Result<Option<StoredPlan>>;

    /// Create a new plan.
    async fn create_plan(&self, plan: &StoredPlan) -> Result<()>;

    /// Update an existing plan.
    async fn update_plan(&self, plan: &StoredPlan) -> Result<()>;

    /// Delete a plan by ID.
    async fn delete_plan(&self, plan_id: &str) -> Result<()>;

    /// Activate or deactivate a plan.
    async fn set_plan_active(&self, plan_id: &str, is_active: bool) -> Result<()>;
}

/// Information about a billable entity.
///
/// Implement this trait for your User or Organization types.
pub trait BillableEntity: Send + Sync {
    /// Get the unique ID of this billable entity.
    fn billable_id(&self) -> &str;

    /// Get the type of billable entity ("user" or "org").
    fn billable_type(&self) -> &str;

    /// Get the email for this entity (for Stripe customer creation).
    fn email(&self) -> &str;

    /// Get the display name for this entity.
    fn name(&self) -> Option<&str>;
}

/// In-memory billing store for testing.
#[cfg(any(test, feature = "test-billing"))]
pub mod test {
    use super::*;
    use std::collections::HashMap;
    use std::sync::{Arc, RwLock};

    /// In-memory billing store for testing.
    ///
    /// Wraps data in Arc for cheap cloning.
    #[derive(Default, Clone)]
    pub struct InMemoryBillingStore {
        inner: Arc<InMemoryBillingStoreInner>,
    }

    #[derive(Default)]
    struct InMemoryBillingStoreInner {
        customers: RwLock<HashMap<String, CustomerRecord>>,
        subscriptions: RwLock<HashMap<String, StoredSubscription>>,
        processed_events: RwLock<HashMap<String, u64>>,
        plans: RwLock<HashMap<String, StoredPlan>>,
    }

    #[derive(Clone)]
    struct CustomerRecord {
        #[allow(dead_code)]
        billable_type: String,
        stripe_customer_id: String,
    }

    impl InMemoryBillingStore {
        /// Create a new in-memory store.
        #[must_use]
        pub fn new() -> Self {
            Self::default()
        }

        /// Get all subscriptions (for testing).
        pub fn get_all_subscriptions(&self) -> HashMap<String, StoredSubscription> {
            self.inner.subscriptions.read().unwrap().clone()
        }

        /// Get all processed events (for testing).
        pub fn get_processed_events(&self) -> Vec<String> {
            self.inner
                .processed_events
                .read()
                .unwrap()
                .keys()
                .cloned()
                .collect()
        }

        /// Get all plans (for testing).
        pub fn get_all_plans(&self) -> HashMap<String, StoredPlan> {
            self.inner.plans.read().unwrap().clone()
        }

        /// Seed plans for testing.
        pub fn seed_plans(&self, plans: Vec<StoredPlan>) {
            let mut store = self.inner.plans.write().unwrap();
            for plan in plans {
                store.insert(plan.id.clone(), plan);
            }
        }
    }

    #[async_trait]
    impl PlanStore for InMemoryBillingStore {
        async fn list_plans(&self) -> Result<Vec<StoredPlan>> {
            let plans = self.inner.plans.read().unwrap();
            let mut active: Vec<StoredPlan> =
                plans.values().filter(|p| p.is_active).cloned().collect();
            active.sort_by_key(|p| p.sort_order);
            Ok(active)
        }

        async fn list_all_plans(&self) -> Result<Vec<StoredPlan>> {
            let plans = self.inner.plans.read().unwrap();
            let mut all: Vec<StoredPlan> = plans.values().cloned().collect();
            all.sort_by_key(|p| p.sort_order);
            Ok(all)
        }

        async fn get_plan(&self, plan_id: &str) -> Result<Option<StoredPlan>> {
            Ok(self.inner.plans.read().unwrap().get(plan_id).cloned())
        }

        async fn get_plan_by_stripe_price(
            &self,
            stripe_price_id: &str,
        ) -> Result<Option<StoredPlan>> {
            let plans = self.inner.plans.read().unwrap();
            Ok(plans
                .values()
                .find(|p| p.stripe_price_id == stripe_price_id)
                .cloned())
        }

        async fn create_plan(&self, plan: &StoredPlan) -> Result<()> {
            self.inner
                .plans
                .write()
                .unwrap()
                .insert(plan.id.clone(), plan.clone());
            Ok(())
        }

        async fn update_plan(&self, plan: &StoredPlan) -> Result<()> {
            let mut plans = self.inner.plans.write().unwrap();
            if plans.contains_key(&plan.id) {
                plans.insert(plan.id.clone(), plan.clone());
            }
            Ok(())
        }

        async fn delete_plan(&self, plan_id: &str) -> Result<()> {
            self.inner.plans.write().unwrap().remove(plan_id);
            Ok(())
        }

        async fn set_plan_active(&self, plan_id: &str, is_active: bool) -> Result<()> {
            let mut plans = self.inner.plans.write().unwrap();
            if let Some(plan) = plans.get_mut(plan_id) {
                plan.is_active = is_active;
            }
            Ok(())
        }
    }

    #[async_trait]
    impl BillingStore for InMemoryBillingStore {
        async fn get_stripe_customer_id(&self, billable_id: &str) -> Result<Option<String>> {
            Ok(self
                .inner
                .customers
                .read()
                .unwrap()
                .get(billable_id)
                .map(|r| r.stripe_customer_id.clone()))
        }

        async fn set_stripe_customer_id(
            &self,
            billable_id: &str,
            billable_type: &str,
            customer_id: &str,
        ) -> Result<()> {
            self.inner.customers.write().unwrap().insert(
                billable_id.to_string(),
                CustomerRecord {
                    billable_type: billable_type.to_string(),
                    stripe_customer_id: customer_id.to_string(),
                },
            );
            Ok(())
        }

        async fn get_subscription(&self, billable_id: &str) -> Result<Option<StoredSubscription>> {
            Ok(self
                .inner
                .subscriptions
                .read()
                .unwrap()
                .get(billable_id)
                .cloned())
        }

        async fn save_subscription(
            &self,
            billable_id: &str,
            subscription: &StoredSubscription,
        ) -> Result<()> {
            self.inner
                .subscriptions
                .write()
                .unwrap()
                .insert(billable_id.to_string(), subscription.clone());
            Ok(())
        }

        async fn compare_and_save_subscription(
            &self,
            billable_id: &str,
            subscription: &StoredSubscription,
            expected_version: u64,
        ) -> Result<bool> {
            let mut subs = self.inner.subscriptions.write().unwrap();

            // Check if current version matches expected
            if let Some(current) = subs.get(billable_id) {
                if current.updated_at != expected_version {
                    return Ok(false);
                }
            }

            // Version matches (or no existing record), save the new subscription
            subs.insert(billable_id.to_string(), subscription.clone());
            Ok(true)
        }

        async fn delete_subscription(&self, billable_id: &str) -> Result<()> {
            self.inner
                .subscriptions
                .write()
                .unwrap()
                .remove(billable_id);
            Ok(())
        }

        async fn get_subscription_by_stripe_id(
            &self,
            stripe_subscription_id: &str,
        ) -> Result<Option<(String, StoredSubscription)>> {
            let subs = self.inner.subscriptions.read().unwrap();
            for (billable_id, sub) in subs.iter() {
                if sub.stripe_subscription_id == stripe_subscription_id {
                    return Ok(Some((billable_id.clone(), sub.clone())));
                }
            }
            Ok(None)
        }

        async fn is_event_processed(&self, event_id: &str) -> Result<bool> {
            Ok(self
                .inner
                .processed_events
                .read()
                .unwrap()
                .contains_key(event_id))
        }

        async fn mark_event_processed(&self, event_id: &str) -> Result<()> {
            let now = std::time::SystemTime::now()
                .duration_since(std::time::UNIX_EPOCH)
                .map(|d| d.as_secs())
                .unwrap_or(0);

            self.inner
                .processed_events
                .write()
                .unwrap()
                .insert(event_id.to_string(), now);
            Ok(())
        }

        async fn cleanup_old_events(&self, older_than_days: u32) -> Result<usize> {
            let now = std::time::SystemTime::now()
                .duration_since(std::time::UNIX_EPOCH)
                .map(|d| d.as_secs())
                .unwrap_or(0);

            let cutoff = now - (older_than_days as u64 * 86400);
            let mut events = self.inner.processed_events.write().unwrap();
            let initial_len = events.len();
            events.retain(|_, &mut timestamp| timestamp >= cutoff);
            Ok(initial_len - events.len())
        }

        async fn count_subscriptions_by_plan(&self, plan_id: &str) -> Result<u32> {
            let subs = self.inner.subscriptions.read().unwrap();
            let count = subs
                .values()
                .filter(|s| {
                    s.plan_id == plan_id
                        && matches!(
                            s.status,
                            SubscriptionStatus::Active | SubscriptionStatus::Trialing
                        )
                })
                .count();
            Ok(count as u32)
        }
    }
}

// =============================================================================
// Cached Plan Store
// =============================================================================

/// Cached plan store with TTL-based caching.
///
/// Wraps any `PlanStore` implementation and caches plan data to reduce database calls.
/// Use this for high-traffic applications where plan data is read frequently.
///
/// # Example
///
/// ```rust,ignore
/// use tideway::billing::{CachedPlanStore, SeaOrmBillingStore};
/// use std::time::Duration;
///
/// let inner = SeaOrmBillingStore::new(db);
/// let cached = CachedPlanStore::new(inner, Duration::from_secs(300)); // 5 min cache
///
/// // First call hits database
/// let plans = cached.list_plans().await?;
///
/// // Subsequent calls within 5 minutes use cache
/// let plans = cached.list_plans().await?;
///
/// // Invalidate after plan changes
/// cached.invalidate();
/// ```
pub struct CachedPlanStore<S: PlanStore> {
    inner: S,
    cache: std::sync::Arc<std::sync::RwLock<PlanCache>>,
    ttl: std::time::Duration,
}

struct PlanCache {
    /// Cache of individual plans by ID.
    plans: std::collections::HashMap<String, CachedPlan>,
    /// Cache of all active plans.
    active_plans: Option<CachedPlanList>,
    /// Cache of all plans (including inactive).
    all_plans: Option<CachedPlanList>,
}

struct CachedPlan {
    plan: Option<StoredPlan>,
    expires_at: std::time::Instant,
}

struct CachedPlanList {
    plans: Vec<StoredPlan>,
    expires_at: std::time::Instant,
}

impl<S: PlanStore> CachedPlanStore<S> {
    /// Create a new cached plan store.
    ///
    /// # Arguments
    ///
    /// * `inner` - The underlying plan store
    /// * `ttl` - How long to cache plans (e.g., 5 minutes)
    #[must_use]
    pub fn new(inner: S, ttl: std::time::Duration) -> Self {
        Self {
            inner,
            cache: std::sync::Arc::new(std::sync::RwLock::new(PlanCache {
                plans: std::collections::HashMap::new(),
                active_plans: None,
                all_plans: None,
            })),
            ttl,
        }
    }

    /// Invalidate all cached plan data.
    ///
    /// Call this after creating, updating, or deleting plans.
    pub fn invalidate(&self) {
        if let Ok(mut cache) = self.cache.write() {
            cache.plans.clear();
            cache.active_plans = None;
            cache.all_plans = None;
        }
    }

    /// Invalidate cache for a specific plan.
    pub fn invalidate_plan(&self, plan_id: &str) {
        if let Ok(mut cache) = self.cache.write() {
            cache.plans.remove(plan_id);
            // Also invalidate lists since they may contain this plan
            cache.active_plans = None;
            cache.all_plans = None;
        }
    }

    /// Get the number of cached individual plans.
    #[must_use]
    pub fn cache_size(&self) -> usize {
        self.cache.read().map(|c| c.plans.len()).unwrap_or(0)
    }
}

#[async_trait::async_trait]
impl<S: PlanStore + Send + Sync> PlanStore for CachedPlanStore<S> {
    async fn list_plans(&self) -> Result<Vec<StoredPlan>> {
        // Check cache
        if let Ok(cache) = self.cache.read() {
            if let Some(ref cached) = cache.active_plans {
                if cached.expires_at > std::time::Instant::now() {
                    return Ok(cached.plans.clone());
                }
            }
        }

        // Cache miss - fetch from store
        let plans = self.inner.list_plans().await?;

        // Update cache
        if let Ok(mut cache) = self.cache.write() {
            cache.active_plans = Some(CachedPlanList {
                plans: plans.clone(),
                expires_at: std::time::Instant::now() + self.ttl,
            });
        }

        Ok(plans)
    }

    async fn list_all_plans(&self) -> Result<Vec<StoredPlan>> {
        // Check cache
        if let Ok(cache) = self.cache.read() {
            if let Some(ref cached) = cache.all_plans {
                if cached.expires_at > std::time::Instant::now() {
                    return Ok(cached.plans.clone());
                }
            }
        }

        // Cache miss - fetch from store
        let plans = self.inner.list_all_plans().await?;

        // Update cache
        if let Ok(mut cache) = self.cache.write() {
            cache.all_plans = Some(CachedPlanList {
                plans: plans.clone(),
                expires_at: std::time::Instant::now() + self.ttl,
            });
        }

        Ok(plans)
    }

    async fn get_plan(&self, plan_id: &str) -> Result<Option<StoredPlan>> {
        // Check cache
        if let Ok(cache) = self.cache.read() {
            if let Some(cached) = cache.plans.get(plan_id) {
                if cached.expires_at > std::time::Instant::now() {
                    return Ok(cached.plan.clone());
                }
            }
        }

        // Cache miss - fetch from store
        let plan = self.inner.get_plan(plan_id).await?;

        // Update cache
        if let Ok(mut cache) = self.cache.write() {
            cache.plans.insert(
                plan_id.to_string(),
                CachedPlan {
                    plan: plan.clone(),
                    expires_at: std::time::Instant::now() + self.ttl,
                },
            );
        }

        Ok(plan)
    }

    async fn get_plan_by_stripe_price(&self, stripe_price_id: &str) -> Result<Option<StoredPlan>> {
        // For price lookups, check all_plans cache first
        if let Ok(cache) = self.cache.read() {
            if let Some(ref cached) = cache.all_plans {
                if cached.expires_at > std::time::Instant::now() {
                    return Ok(cached
                        .plans
                        .iter()
                        .find(|p| p.stripe_price_id == stripe_price_id)
                        .cloned());
                }
            }
        }

        // Fall through to inner store
        self.inner.get_plan_by_stripe_price(stripe_price_id).await
    }

    async fn create_plan(&self, plan: &StoredPlan) -> Result<()> {
        let result = self.inner.create_plan(plan).await;
        if result.is_ok() {
            self.invalidate();
        }
        result
    }

    async fn update_plan(&self, plan: &StoredPlan) -> Result<()> {
        let result = self.inner.update_plan(plan).await;
        if result.is_ok() {
            self.invalidate_plan(&plan.id);
        }
        result
    }

    async fn delete_plan(&self, plan_id: &str) -> Result<()> {
        let result = self.inner.delete_plan(plan_id).await;
        if result.is_ok() {
            self.invalidate_plan(plan_id);
        }
        result
    }

    async fn set_plan_active(&self, plan_id: &str, is_active: bool) -> Result<()> {
        let result = self.inner.set_plan_active(plan_id, is_active).await;
        if result.is_ok() {
            self.invalidate_plan(plan_id);
        }
        result
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_subscription_status_from_stripe() {
        assert_eq!(
            SubscriptionStatus::from_stripe("active"),
            SubscriptionStatus::Active
        );
        assert_eq!(
            SubscriptionStatus::from_stripe("trialing"),
            SubscriptionStatus::Trialing
        );
        assert_eq!(
            SubscriptionStatus::from_stripe("past_due"),
            SubscriptionStatus::PastDue
        );
        assert_eq!(
            SubscriptionStatus::from_stripe("canceled"),
            SubscriptionStatus::Canceled
        );
        assert_eq!(
            SubscriptionStatus::from_stripe("unknown"),
            SubscriptionStatus::Canceled
        );
    }

    #[test]
    fn test_subscription_is_active() {
        let sub = StoredSubscription {
            stripe_subscription_id: "sub_123".to_string(),
            stripe_customer_id: "cus_123".to_string(),
            plan_id: "starter".to_string(),
            status: SubscriptionStatus::Active,
            current_period_start: 0,
            current_period_end: 0,
            extra_seats: 0,
            trial_end: None,
            cancel_at_period_end: false,
            base_item_id: None,
            seat_item_id: None,
            updated_at: 0,
        };

        assert!(sub.is_active());
        assert!(!sub.is_trialing());
        assert!(!sub.is_past_due());
    }

    #[test]
    fn test_subscription_trialing() {
        let sub = StoredSubscription {
            stripe_subscription_id: "sub_123".to_string(),
            stripe_customer_id: "cus_123".to_string(),
            plan_id: "starter".to_string(),
            status: SubscriptionStatus::Trialing,
            current_period_start: 0,
            current_period_end: 0,
            extra_seats: 0,
            trial_end: Some(
                std::time::SystemTime::now()
                    .duration_since(std::time::UNIX_EPOCH)
                    .unwrap()
                    .as_secs()
                    + 86400 * 7,
            ), // 7 days
            cancel_at_period_end: false,
            base_item_id: None,
            seat_item_id: None,
            updated_at: 0,
        };

        assert!(sub.is_active());
        assert!(sub.is_trialing());
        assert!(sub.trial_days_remaining().unwrap() >= 6);
    }

    #[tokio::test]
    async fn test_in_memory_store() {
        use test::InMemoryBillingStore;

        let store = InMemoryBillingStore::new();

        // Test customer
        assert!(
            store
                .get_stripe_customer_id("org_123")
                .await
                .unwrap()
                .is_none()
        );

        store
            .set_stripe_customer_id("org_123", "org", "cus_abc")
            .await
            .unwrap();

        assert_eq!(
            store
                .get_stripe_customer_id("org_123")
                .await
                .unwrap()
                .unwrap(),
            "cus_abc"
        );

        // Test subscription
        let sub = StoredSubscription {
            stripe_subscription_id: "sub_123".to_string(),
            stripe_customer_id: "cus_abc".to_string(),
            plan_id: "starter".to_string(),
            status: SubscriptionStatus::Active,
            current_period_start: 0,
            current_period_end: 0,
            extra_seats: 2,
            trial_end: None,
            cancel_at_period_end: false,
            base_item_id: None,
            seat_item_id: None,
            updated_at: 0,
        };

        store.save_subscription("org_123", &sub).await.unwrap();

        let loaded = store.get_subscription("org_123").await.unwrap().unwrap();
        assert_eq!(loaded.plan_id, "starter");
        assert_eq!(loaded.extra_seats, 2);

        // Test event idempotency
        assert!(!store.is_event_processed("evt_123").await.unwrap());
        store.mark_event_processed("evt_123").await.unwrap();
        assert!(store.is_event_processed("evt_123").await.unwrap());
    }

    fn create_test_plan(
        id: &str,
        price_cents: i64,
        is_active: bool,
        sort_order: i32,
    ) -> StoredPlan {
        StoredPlan {
            id: id.to_string(),
            name: format!("{} Plan", id),
            description: Some(format!("Description for {}", id)),
            stripe_price_id: format!("price_{}", id),
            stripe_seat_price_id: None,
            price_cents,
            currency: "usd".to_string(),
            interval: PlanInterval::Monthly,
            included_seats: 1,
            features: serde_json::json!({"basic": true}),
            limits: serde_json::json!({"projects": 10}),
            trial_days: Some(14),
            is_active,
            sort_order,
            created_at: 0,
            updated_at: 0,
        }
    }

    #[tokio::test]
    async fn test_in_memory_plan_store() {
        use test::InMemoryBillingStore;

        let store = InMemoryBillingStore::new();

        // Initially empty
        assert!(store.list_plans().await.unwrap().is_empty());
        assert!(store.list_all_plans().await.unwrap().is_empty());

        // Create plans
        let starter = create_test_plan("starter", 999, true, 1);
        let pro = create_test_plan("pro", 2999, true, 2);
        let inactive = create_test_plan("legacy", 499, false, 0);

        store.create_plan(&starter).await.unwrap();
        store.create_plan(&pro).await.unwrap();
        store.create_plan(&inactive).await.unwrap();

        // List active plans (should be sorted by sort_order)
        let active = store.list_plans().await.unwrap();
        assert_eq!(active.len(), 2);
        assert_eq!(active[0].id, "starter");
        assert_eq!(active[1].id, "pro");

        // List all plans
        let all = store.list_all_plans().await.unwrap();
        assert_eq!(all.len(), 3);

        // Get by ID
        let plan = store.get_plan("starter").await.unwrap().unwrap();
        assert_eq!(plan.price_cents, 999);

        // Get by Stripe price
        let plan = store
            .get_plan_by_stripe_price("price_pro")
            .await
            .unwrap()
            .unwrap();
        assert_eq!(plan.id, "pro");

        // Update plan
        let mut updated = starter.clone();
        updated.price_cents = 1499;
        store.update_plan(&updated).await.unwrap();
        let plan = store.get_plan("starter").await.unwrap().unwrap();
        assert_eq!(plan.price_cents, 1499);

        // Set active status
        store.set_plan_active("starter", false).await.unwrap();
        let active = store.list_plans().await.unwrap();
        assert_eq!(active.len(), 1);
        assert_eq!(active[0].id, "pro");

        // Delete plan
        store.delete_plan("pro").await.unwrap();
        assert!(store.get_plan("pro").await.unwrap().is_none());
    }

    #[test]
    fn test_stored_plan_helpers() {
        let plan = StoredPlan {
            id: "test".to_string(),
            name: "Test".to_string(),
            description: None,
            stripe_price_id: "price_test".to_string(),
            stripe_seat_price_id: None,
            price_cents: 1999,
            currency: "usd".to_string(),
            interval: PlanInterval::Monthly,
            included_seats: 5,
            features: serde_json::json!({"api_access": true, "support": false}),
            limits: serde_json::json!({"projects": 50, "storage_mb": 1000}),
            trial_days: Some(14),
            is_active: true,
            sort_order: 0,
            created_at: 0,
            updated_at: 0,
        };

        // Test has_feature
        assert!(plan.has_feature("api_access"));
        assert!(!plan.has_feature("support"));
        assert!(!plan.has_feature("nonexistent"));

        // Test get_limit
        assert_eq!(plan.get_limit("projects"), Some(50));
        assert_eq!(plan.get_limit("storage_mb"), Some(1000));
        assert_eq!(plan.get_limit("nonexistent"), None);

        // Test check_limit
        assert!(plan.check_limit("projects", 49)); // under limit
        assert!(!plan.check_limit("projects", 50)); // at limit (not under)
        assert!(plan.check_limit("nonexistent", 9999)); // no limit = unlimited

        // Test formatted_price
        assert_eq!(plan.formatted_price(), "$19.99");
    }

    #[test]
    fn test_plan_interval() {
        assert_eq!(PlanInterval::from_str("monthly"), PlanInterval::Monthly);
        assert_eq!(PlanInterval::from_str("month"), PlanInterval::Monthly);
        assert_eq!(PlanInterval::from_str("yearly"), PlanInterval::Yearly);
        assert_eq!(PlanInterval::from_str("year"), PlanInterval::Yearly);
        assert_eq!(PlanInterval::from_str("annual"), PlanInterval::Yearly);
        assert_eq!(PlanInterval::from_str("one_time"), PlanInterval::OneTime);
        assert_eq!(PlanInterval::from_str("lifetime"), PlanInterval::OneTime);
        assert_eq!(PlanInterval::from_str("unknown"), PlanInterval::Monthly); // default

        assert_eq!(PlanInterval::Monthly.as_str(), "monthly");
        assert_eq!(PlanInterval::Yearly.as_str(), "yearly");
        assert_eq!(PlanInterval::OneTime.as_str(), "one_time");
    }

    #[tokio::test]
    async fn test_count_subscriptions_by_plan() {
        use test::InMemoryBillingStore;

        let store = InMemoryBillingStore::new();

        // Initially no subscriptions
        assert_eq!(
            store.count_subscriptions_by_plan("starter").await.unwrap(),
            0
        );

        // Add an active subscription on starter plan
        let sub1 = StoredSubscription {
            stripe_subscription_id: "sub_1".to_string(),
            stripe_customer_id: "cus_1".to_string(),
            plan_id: "starter".to_string(),
            status: SubscriptionStatus::Active,
            current_period_start: 0,
            current_period_end: 0,
            extra_seats: 0,
            trial_end: None,
            cancel_at_period_end: false,
            base_item_id: None,
            seat_item_id: None,
            updated_at: 0,
        };
        store.save_subscription("org_1", &sub1).await.unwrap();
        assert_eq!(
            store.count_subscriptions_by_plan("starter").await.unwrap(),
            1
        );

        // Add a trialing subscription on starter plan
        let sub2 = StoredSubscription {
            stripe_subscription_id: "sub_2".to_string(),
            stripe_customer_id: "cus_2".to_string(),
            plan_id: "starter".to_string(),
            status: SubscriptionStatus::Trialing,
            current_period_start: 0,
            current_period_end: 0,
            extra_seats: 0,
            trial_end: Some(99999999),
            cancel_at_period_end: false,
            base_item_id: None,
            seat_item_id: None,
            updated_at: 0,
        };
        store.save_subscription("org_2", &sub2).await.unwrap();
        assert_eq!(
            store.count_subscriptions_by_plan("starter").await.unwrap(),
            2
        );

        // Add a canceled subscription on starter plan (should not count)
        let sub3 = StoredSubscription {
            stripe_subscription_id: "sub_3".to_string(),
            stripe_customer_id: "cus_3".to_string(),
            plan_id: "starter".to_string(),
            status: SubscriptionStatus::Canceled,
            current_period_start: 0,
            current_period_end: 0,
            extra_seats: 0,
            trial_end: None,
            cancel_at_period_end: false,
            base_item_id: None,
            seat_item_id: None,
            updated_at: 0,
        };
        store.save_subscription("org_3", &sub3).await.unwrap();
        assert_eq!(
            store.count_subscriptions_by_plan("starter").await.unwrap(),
            2
        );

        // Add an active subscription on pro plan (should not affect starter count)
        let sub4 = StoredSubscription {
            stripe_subscription_id: "sub_4".to_string(),
            stripe_customer_id: "cus_4".to_string(),
            plan_id: "pro".to_string(),
            status: SubscriptionStatus::Active,
            current_period_start: 0,
            current_period_end: 0,
            extra_seats: 0,
            trial_end: None,
            cancel_at_period_end: false,
            base_item_id: None,
            seat_item_id: None,
            updated_at: 0,
        };
        store.save_subscription("org_4", &sub4).await.unwrap();
        assert_eq!(
            store.count_subscriptions_by_plan("starter").await.unwrap(),
            2
        );
        assert_eq!(store.count_subscriptions_by_plan("pro").await.unwrap(), 1);
    }

    #[tokio::test]
    async fn test_cached_plan_store_caches_results() {
        use std::time::Duration;
        use test::InMemoryBillingStore;

        let inner = InMemoryBillingStore::new();

        // Seed a plan
        let starter = create_test_plan("starter", 999, true, 1);
        inner.create_plan(&starter).await.unwrap();

        // Create cached store with 1 second TTL
        let cached = CachedPlanStore::new(inner.clone(), Duration::from_secs(1));

        // First call should hit the store and cache
        let plans = cached.list_plans().await.unwrap();
        assert_eq!(plans.len(), 1);
        assert_eq!(plans[0].id, "starter");

        // Add another plan directly to inner store (bypassing cache)
        let pro = create_test_plan("pro", 2999, true, 2);
        inner.create_plan(&pro).await.unwrap();

        // Should still return cached result
        let plans = cached.list_plans().await.unwrap();
        assert_eq!(plans.len(), 1); // Still 1 from cache

        // After invalidation, should see new plan
        cached.invalidate();
        let plans = cached.list_plans().await.unwrap();
        assert_eq!(plans.len(), 2);
    }

    #[tokio::test]
    async fn test_cached_plan_store_get_plan() {
        use std::time::Duration;
        use test::InMemoryBillingStore;

        let inner = InMemoryBillingStore::new();
        let starter = create_test_plan("starter", 999, true, 1);
        inner.create_plan(&starter).await.unwrap();

        let cached = CachedPlanStore::new(inner.clone(), Duration::from_secs(60));

        // First fetch should cache
        let plan = cached.get_plan("starter").await.unwrap().unwrap();
        assert_eq!(plan.price_cents, 999);
        assert_eq!(cached.cache_size(), 1);

        // Update directly in inner store
        let mut updated = starter.clone();
        updated.price_cents = 1499;
        inner.update_plan(&updated).await.unwrap();

        // Should still return cached version
        let plan = cached.get_plan("starter").await.unwrap().unwrap();
        assert_eq!(plan.price_cents, 999);

        // Invalidate specific plan
        cached.invalidate_plan("starter");
        let plan = cached.get_plan("starter").await.unwrap().unwrap();
        assert_eq!(plan.price_cents, 1499);
    }

    #[tokio::test]
    async fn test_cached_plan_store_write_operations_invalidate() {
        use std::time::Duration;
        use test::InMemoryBillingStore;

        let inner = InMemoryBillingStore::new();
        let cached = CachedPlanStore::new(inner, Duration::from_secs(60));

        // Create plan through cached store
        let starter = create_test_plan("starter", 999, true, 1);
        cached.create_plan(&starter).await.unwrap();

        // Should be fetchable
        let plans = cached.list_plans().await.unwrap();
        assert_eq!(plans.len(), 1);

        // Update through cached store should invalidate
        let mut updated = starter.clone();
        updated.price_cents = 1499;
        cached.update_plan(&updated).await.unwrap();

        let plan = cached.get_plan("starter").await.unwrap().unwrap();
        assert_eq!(plan.price_cents, 1499);

        // Delete through cached store should invalidate
        cached.delete_plan("starter").await.unwrap();
        assert!(cached.get_plan("starter").await.unwrap().is_none());
        assert!(cached.list_plans().await.unwrap().is_empty());
    }

    #[tokio::test]
    async fn test_cached_plan_store_set_active_invalidates() {
        use std::time::Duration;
        use test::InMemoryBillingStore;

        let inner = InMemoryBillingStore::new();
        let cached = CachedPlanStore::new(inner, Duration::from_secs(60));

        let starter = create_test_plan("starter", 999, true, 1);
        cached.create_plan(&starter).await.unwrap();

        // Initially active
        let plans = cached.list_plans().await.unwrap();
        assert_eq!(plans.len(), 1);

        // Deactivate
        cached.set_plan_active("starter", false).await.unwrap();

        // Should not appear in active plans
        let active_plans = cached.list_plans().await.unwrap();
        assert!(active_plans.is_empty());

        // But should still exist
        let all_plans = cached.list_all_plans().await.unwrap();
        assert_eq!(all_plans.len(), 1);
        assert!(!all_plans[0].is_active);
    }
}