kuberator 0.4.0

A Kubernetes operator framework in Rust
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
//! `Kuberator`is a Kubernetes Operator Framework designed to simplify the process of
//! building Kubernetes Operators. It is still in its early stages and a work in progress.
//!
//! ## Usage
//!
//! It's best to follow an example to understand how to use `kuberator` in it's current form.
//!
//! ```rust,ignore
//! use std::sync::Arc;
//!
//! use async_trait::async_trait;
//! use kube::runtime::controller::Action;
//! use kube::runtime::watcher::Config;
//! use kube::Api;
//! use kube::Client;
//! use kube::CustomResource;
//! use kuberator::cache::StaticApiProvider;
//! use kuberator::cache::CachingStrategy;
//! use kuberator::error::Result as KubeResult;
//! use kuberator::Context;
//! use kuberator::Finalize;
//! use kuberator::Reconcile;
//! use schemars::JsonSchema;
//! use serde::Deserialize;
//! use serde::Serialize;
//!
//! // First, we need to define a custom resource that the operator will manage.
//! #[derive(CustomResource, Serialize, Deserialize, Debug, PartialEq, Clone, JsonSchema)]
//! #[kube(
//!     group = "commercetools.com",
//!     version = "v1",
//!     kind = "MyCrd",
//!     plural = "mycrds",
//!     shortname = "mc",
//!     derive = "PartialEq",
//!     namespaced
//! )]
//! pub struct MySpec {
//!     pub my_property: String,
//! }
//!
//! // The core of the operator is the implementation of the `Reconcile` trait, which requires
//! // us to first implement the `Context` and `Finalize` traits for certain structs.
//!
//! // Option 1: Use the generic K8sRepository (recommended for simple cases)
//! use kuberator::k8s::K8sRepository;
//! type MyK8sRepo = K8sRepository<MyCrd, StaticApiProvider<MyCrd>>;
//!
//! // Option 2: Create a custom repository (if you need custom state or methods)
//! // struct MyK8sRepo {
//! //     api_provider: StaticApiProvider<MyCrd>,
//! // }
//! //
//! // impl Finalize<MyCrd, StaticApiProvider<MyCrd>> for MyK8sRepo {
//! //     fn api_provider(&self) -> &StaticApiProvider<MyCrd> {
//! //         &self.api_provider
//! //     }
//! // }
//!
//! // The `Context` trait must be implemented on a struct that serves as the core of the
//! // operator. It contains the logic for handling the custom resource object, including
//! // creation, updates, and deletion.
//! struct MyContext {
//!     repo: Arc<MyK8sRepo>,
//! }
//!
//! #[async_trait]
//! impl Context<MyCrd, MyK8sRepo, StaticApiProvider<MyCrd>> for MyContext {
//!     // The only requirement is to provide a unique finalizer name and an Arc to an
//!     // implementation of the `Finalize` trait.
//!     fn k8s_repository(&self) -> Arc<MyK8sRepo> {
//!         Arc::clone(&self.repo)
//!     }
//!
//!     fn finalizer(&self) -> &'static str {
//!         "mycrds.commercetools.com/finalizers"
//!     }
//!
//!     // The core of the `Context` trait consists of the two hook functions `handle_apply`
//!     // and `handle_cleanup`.Keep in mind that both functions must be idempotent.
//!
//!     // The `handle_apply` function is triggered whenever a custom resource object is
//!     // created or updated.
//!     async fn handle_apply(&self, object: Arc<MyCrd>) -> KubeResult<Action> {
//!         // do whatever you want with your custom resource object
//!         println!("My property is: {}", object.spec.my_property);
//!         Ok(Action::await_change())
//!     }
//!
//!     // The `handle_cleanup` function is triggered when a custom resource object is deleted.
//!     async fn handle_cleanup(&self, object: Arc<MyCrd>) -> KubeResult<Action> {
//!         // do whatever you want with your custom resource object
//!         println!("My property is: {}", object.spec.my_property);
//!         Ok(Action::await_change())
//!     }
//! }
//!
//! // The final step is to implement the `Reconcile` trait on a struct that holds the context.
//! // The Reconciler is responsible for starting the controller runtime and managing the
//! // reconciliation loop.
//!
//! // The `destruct` function is used to retrieve the Api, Config, and context.
//! // And that’s basically it!
//! struct MyReconciler {
//!     context: Arc<MyContext>,
//!     crd_api: Api<MyCrd>,
//! }
//!
//! #[async_trait]
//! impl Reconcile<MyCrd, MyContext, MyK8sRepo, StaticApiProvider<MyCrd>> for MyReconciler {
//!     fn destruct(self) -> (Api<MyCrd>, Config, Arc<MyContext>) {
//!         (self.crd_api, Config::default(), self.context)
//!     }
//! }
//!
//! // Now we can wire everything together in the main function and start the reconciler.
//! // It will continuously watch for custom resource objects and invoke the `handle_apply` and
//! // `handle_cleanup` functions as part of the reconciliation loop.
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//!     let client = Client::try_default().await?;
//!
//!     // Using the generic K8sRepository:
//!     let api_provider = StaticApiProvider::new(
//!         client.clone(),
//!         vec!["default"],
//!         CachingStrategy::Strict
//!     );
//!     let k8s_repo = K8sRepository::new(api_provider);
//!
//!     // Or if using custom repository:
//!     // let k8s_repo = MyK8sRepo {
//!     //     api_provider: StaticApiProvider::new(
//!     //         client.clone(),
//!     //         vec!["default"],
//!     //         CachingStrategy::Strict
//!     //     ),
//!     // };
//!
//!     let context = MyContext {
//!         repo: Arc::new(k8s_repo),
//!     };
//!
//!     let reconciler = MyReconciler {
//!         context: Arc::new(context),
//!         crd_api: Api::namespaced(client, "default"),
//!     };
//!
//!     // Start the reconciler, which will handle the reconciliation loop synchronously.
//!     reconciler.start(None).await;
//!
//!     // If you want to run the reconciler asynchronously, you can use the `start_concurrent` method.
//!     // reconciler.start_concurrent(Some(10), None).await;
//!
//!     Ok(())
//! }
//! ```
//!
//! The second parameter of the `start` and `start_concurrent` methods is an optional graceful shutdown
//! signal. You can pass a future that resolves when you want to shut down the reconciler, like an OS
//! signal, e.g. `SIGTERM`.
//!
//! ```rust,ignore
//! use tokio::signal;
//! use futures::select;
//!
//! let shutdown_signal = async {
//!     let mut interrupt = signal::ctrl_c();
//!     let mut terminate = signal::unix::signal(signal::unix::SignalKind::terminate())
//!         .expect("Failed to install SIGTERM handler");
//!
//!     select! {
//!         _ = interrupt => tracing::info!("Received SIGINT, shutting down"),
//!         _ = terminate.recv() => tracing::info!("Received SIGTERM, shutting down"),
//!     }
//! };
//!
//! reconciler.start(Some(shutdown_signal)).await;
//! ```
//!
//! ## Event Emission
//!
//! Kuberator provides generic Kubernetes event emission via the `events.k8s.io/v1` API through
//! the [`events`] module. Events appear in `kubectl describe` and `kubectl events` output and
//! provide visibility into operator operations.
//!
//! Identical events (same object UID, type, reason, and action) within a configurable window
//! (default: 6 minutes) are automatically deduplicated: the first occurrence creates a new
//! Event, subsequent ones PATCH the existing Event's `series.count`.
//!
//! ### Defining Event Reasons
//!
//! First, define domain-specific event reasons using the [`events::Reason`] trait:
//!
//! ```rust,ignore
//! use kuberator::events::Reason;
//! use strum::{Display, AsRefStr};
//!
//! #[derive(Debug, Clone, Copy, Display, AsRefStr)]
//! pub enum MyEventReason {
//!     ResourceCreating,
//!     ResourceCreated,
//!     ReconciliationFailed,
//! }
//!
//! impl Reason for MyEventReason {}
//! ```
//!
//! ### Using EventRecorder
//!
//! ```rust,ignore
//! use kuberator::events::{EventRecorder, EventData, EmitEvent};
//! use kuberator::cache::StaticApiProvider;
//! use k8s_openapi::api::events::v1::Event;
//!
//! // Setup event API provider (once at startup)
//! let event_api_provider = Arc::new(StaticApiProvider::new(
//!     client.clone(),
//!     vec!["default"],
//!     CachingStrategy::Adhoc,
//! ));
//!
//! let event_recorder = Arc::new(EventRecorder::new(
//!     event_api_provider,
//!     "my-operator"  // Component name shown in events
//! ));
//!
//! // Add to your Context
//! struct MyContext {
//!     repo: Arc<MyK8sRepo>,
//!     event_recorder: Arc<EventRecorder<StaticApiProvider<Event>>>,
//! }
//!
//! // Emit events in reconciliation
//! impl Context<MyCrd, MyK8sRepo, StaticApiProvider<MyCrd>> for MyContext {
//!     async fn handle_apply(&self, object: Arc<MyCrd>) -> KubeResult<Action> {
//!         self.event_recorder.emit(
//!             &*object,
//!             EventData::normal(MyEventReason::ResourceCreating, "Starting resource creation")
//!         ).await;
//!
//!         // ... do work ...
//!
//!         self.event_recorder.emit(
//!             &*object,
//!             EventData::normal(MyEventReason::ResourceCreated, "Resource created successfully")
//!         ).await;
//!
//!         Ok(Action::await_change())
//!     }
//! }
//! ```
//!
//! **Important:** Events never fail reconciliation. The `emit()` method logs errors as warnings
//! but does not propagate them. Use `try_emit()` if you need explicit error handling.
//!
//! **RBAC:** Your operator's ClusterRole needs `apiGroups: ["events.k8s.io"]`, resources
//! `["events"]`, verbs `["create", "patch"]`.
//!
//! **Viewing events:** Use `kubectl events -n <namespace>` (not `kubectl get events`) to see
//! `events.k8s.io/v1` events with dedup counts.
//!
//! ### Customizing the Deduplication Window
//!
//! ```rust,ignore
//! use std::time::Duration;
//!
//! let event_recorder = EventRecorder::new(event_api_provider, "my-operator")
//!     .with_cache_ttl(Duration::from_secs(10 * 60)); // 10 minutes instead of default 6
//! ```
//!
//! ### Testing with MockEventRecorder
//!
//! ```rust,ignore
//! # use kuberator::events::{EventData, EmitEvent};
//! # use kuberator::events::tests::MockEventRecorder;
//! # use strum::{Display, AsRefStr};
//! # #[derive(Debug, Clone, Copy, Display, AsRefStr, PartialEq)]
//! # enum TestReason { Created }
//! # impl kuberator::events::Reason for TestReason {}
//! # use k8s_openapi::api::core::v1::ConfigMap;
//! # use k8s_openapi::apimachinery::pkg::apis::meta::v1::ObjectMeta;
//! # tokio_test::block_on(async {
//! let recorder = MockEventRecorder::<TestReason>::new();
//! # let resource = ConfigMap {
//! #     metadata: ObjectMeta {
//! #         name: Some("test".into()),
//! #         namespace: Some("default".into()),
//! #         ..Default::default()
//! #     },
//! #     ..Default::default()
//! # };
//!
//! recorder.emit(&resource, EventData::normal(TestReason::Created, "test")).await;
//!
//! let events = recorder.events();
//! assert_eq!(events[0].reason, TestReason::Created);
//! # });
//! ```
//!
//! See the [`events`] module documentation for more details and advanced usage.
//!
//! ## Error Handling
//!
//! Kuberator provides a dedicated error type. When implementing `Reconcile::handle_apply`
//! and `Reconcile::handle_cleanup`, you must return this error in your Result, or use
//! `kuberator::error::Result` directly.
//!
//! To convert your custom error into a Kuberator error, implement `From` for your error
//! type and wrap it using `Error::Anyhow`.
//!
//! Your `error.rs` file could look something like this:
//!
//! ```
//! use std::fmt::Debug;
//!
//! use kuberator::error::Error as KubeError;
//! use thiserror::Error as ThisError;
//!
//! pub type Result<T> = std::result::Result<T, Error>;
//!
//! #[derive(ThisError, Debug)]
//! pub enum Error {
//!     #[error("Kube error: {0}")]
//!     Kube(#[from] kube::Error),
//! }
//!
//! impl From<Error> for KubeError {
//!     fn from(error: Error) -> KubeError {
//!         KubeError::Anyhow(anyhow::anyhow!(error))
//!     }
//! }
//! ```
//!
//! With this approach, you can conveniently handle your custom errors using the `?` operator
//! and return them as Kuberator errors.
//!
//! ## Status Object Handling
//!
//! Kuberator provides helper methods to facilitate the **Observed Generation Pattern.** To use
//! this pattern, you need to implement the ObserveGeneration trait for your status object.
//!
//! Let's say this is your `status.rs` file:
//!
//! ```
//! use kuberator::ObserveGeneration;
//!
//! pub struct MyStatus {
//!     pub status: State,
//!     pub observed_generation: Option<i64>,
//! }
//!
//! pub enum State {
//!     Created,
//!     Updated,
//!     Deleted,
//! }
//!
//! impl ObserveGeneration for MyStatus {
//!     fn add(&mut self, observed_generation: i64) {
//!         self.observed_generation = Some(observed_generation);
//!     }
//! }
//! ```
//!
//! With this implementation, you can utilize the `update_status()` method provided by the
//! `Finalize` trait.
//!
//! This allows you to:
//! (a) Keep your resource status up to date.
//! (b) Compare it against the current generation of the resource (`object.meta().generation`)
//! to determine whether you have already processed this version or if it is a new show in
//! the reconciliation cycle.
//!
//! This pattern is particularly useful for ensuring idempotency in your reconciliation logic.
//!
//! ## Status Object Error handling
//!
//! If you want to handle errors in your status object, you can implement the `WithStatusError` trait.
//! This trait allows you to define how errors should be handled and reported in the status object.
//!
//! ```rust
//! use kuberator::WithStatusError;
//! use kuberator::AsStatusError;
//! use serde::Deserialize;
//! use serde::Serialize;
//! use schemars::JsonSchema;
//!
//! // You have a custom error type
//! enum MyError {
//!     NotFound,
//!     InvalidInput,
//! }
//!
//! // Additionally, you have you status object with a specific status error
//! #[derive(Serialize, Deserialize, Debug, PartialEq, Clone, JsonSchema)]
//! struct MyStatus {
//!     pub status: String,
//!     pub observed_generation: Option<i64>,
//!     pub error: Option<MyStatusError>,
//! }
//!
//! #[derive(Serialize, Deserialize, Debug, PartialEq, Clone, JsonSchema)]
//! pub struct MyStatusError {
//!     pub message: String,
//! }
//!
//! // Implement the `AsStatusError` trait for your custom error type
//! impl AsStatusError<MyStatusError> for MyError {
//!     fn as_status_error(&self) -> MyStatusError {
//!         match self {
//!             MyError::NotFound => MyStatusError {
//!                 message: "Resource not found".to_string(),
//!             },
//!             MyError::InvalidInput => MyStatusError {
//!                 message: "Invalid input provided".to_string(),
//!             },
//!         }
//!     }
//! }
//!
//! // And implement the `WithStatusError` trait that links your error and status error
//! impl WithStatusError<MyError, MyStatusError> for MyStatus {
//!     fn add(&mut self, error: MyStatusError) {
//!         self.error = Some(error);
//!     }
//! }
//! ```
//!
//! With this implementation, you can utilize the `update_status_with_error()` method provided by the
//! [Finalize] trait. This method takes care of adding the (optional) error to your status object.
//!
//! This way, you can handle errors in your status object and report them accordingly. You control how
//! errors are represented in the status object from the source up, by implementing `AsStatusError` for
//! your error type.
//!

pub mod cache;
pub mod error;
pub mod events;
pub mod k8s;

use std::error::Error as StdError;
use std::fmt::Debug;
use std::future::Future;
use std::hash::Hash;
use std::result::Result as StdResult;
use std::sync::Arc;
use std::time::Duration;

use async_trait::async_trait;
use futures::stream::StreamExt;
use futures::TryFuture;
use k8s_openapi::NamespaceResourceScope;
use kube::api::ObjectMeta;
use kube::api::Patch;
use kube::api::PatchParams;
use kube::runtime::controller::Action;
use kube::runtime::controller::Error as KubeControllerError;
use kube::runtime::finalizer;
use kube::runtime::finalizer::Event;
use kube::runtime::reflector::ObjectRef;
use kube::runtime::watcher::Config;
use kube::runtime::Controller;
use kube::Api;
use kube::Resource;
use kube::ResourceExt;
use schemars::JsonSchema;
use serde::de::DeserializeOwned;
use serde::Deserialize;
use serde::Serialize;

use crate::cache::ProvideApi;
use crate::error::Error;
use crate::error::Result;

const REQUEUE_AFTER_ERROR_SECONDS: u64 = 60;

type ReconciliationResult<R, RE, QE> = StdResult<(ObjectRef<R>, Action), KubeControllerError<RE, QE>>;

/// The Reconcile trait takes care of the starting of the controller and the reconciliation loop.
///
/// The user needs to implement the [Reconcile::destruct] method as well as a component F that
/// implements [Finalize] and a component C that implements [Context] and uses component F.
#[async_trait]
pub trait Reconcile<R, C, F, P>: Sized
where
    R: Resource<Scope = NamespaceResourceScope> + Serialize + DeserializeOwned + Debug + Clone + Send + Sync + 'static,
    R::DynamicType: Default + Eq + Hash + Clone + Debug + Unpin,
    C: Context<R, F, P> + 'static,
    F: Finalize<R, P>,
    P: ProvideApi<R> + 'static,
{
    /// Starts the controller and runs the reconciliation loop, where as reconciliations run
    /// synchronously. If you want asynchronous reconciliations, use [Reconcile::start_concurrent].
    async fn start<G>(self, graceful_trigger: Option<G>)
    where
        G: Future<Output = ()> + Send + Sync + 'static,
    {
        let (crd_api, config, context) = self.destruct();

        controller(crd_api, config, graceful_trigger)
            .run(Self::reconcile, Self::error_policy, context)
            .for_each(Self::handle_reconciliation_result)
            .await;
    }

    /// Starts the controller and runs the reconciliation loop, where as reconciliations run
    /// concurrently.
    ///
    /// `limit` is the maximum number of concurrent reconciliations that can be processed.
    /// If it is set to `None` there is no hard limit on the number of concurrent reconciliations.
    /// `Some(0)` has the same effect as `None`.
    async fn start_concurrent<G>(self, limit: Option<usize>, graceful_trigger: Option<G>)
    where
        G: Future<Output = ()> + Send + Sync + 'static,
    {
        let (crd_api, config, context) = self.destruct();

        controller(crd_api, config, graceful_trigger)
            .run(Self::reconcile, Self::error_policy, context)
            .for_each_concurrent(limit, Self::handle_reconciliation_result)
            .await;
    }

    /// Callback method for the controller that is called when a resource is reconciled and that
    /// is hooked into [Reconcile::start].
    #[tracing::instrument(
        name = "kuberator.reconcile",
        skip(resource, context),
        fields(
            resource_name = %resource.try_name().unwrap_or_default(),
            resource_namespace = %resource.try_namespace().unwrap_or_default(),
            resource_generation = %resource.meta().generation.unwrap_or(0),
        )
    )]
    async fn reconcile(resource: Arc<R>, context: Arc<C>) -> Result<Action> {
        tracing::info!("Reconciliation started");
        Ok(context.handle_reconciliation(resource).await?)
    }

    /// Callback method for the controller that is called when an error occurs during
    /// reconciliation. The method is hooked into [Reconcile::start].
    #[tracing::instrument(
        name = "kuberator.error_policy",
        skip(resource, error, context),
        fields(
            resource_name = %resource.try_name().unwrap_or_default(),
            resource_namespace = %resource.try_namespace().unwrap_or_default(),
        )
    )]
    fn error_policy(resource: Arc<R>, error: &Error, context: Arc<C>) -> Action {
        context.handle_error(resource, error, Self::requeue_after_error_seconds())
    }

    /// Handles the result of a reconciliation and is called by the controller in the
    /// [Reconcile::start] method for each reconiliation.
    async fn handle_reconciliation_result<RE, QE>(reconciliation_result: ReconciliationResult<R, RE, QE>)
    where
        RE: Debug + Send,
        QE: Debug + Send,
    {
        match reconciliation_result {
            Ok(resource) => {
                tracing::info!("Reconciliation successful. Resource: {resource:?}");
            }
            Err(error) => {
                tracing::error!("Reconciliation error: {error:?}");
            }
        }
    }

    /// Returns the duration after which a resource is requeued after an error occurred.
    ///
    /// The method is used as a default implementation for the [Reconcile::error_policy] method.
    /// Feel free to override it in your struct implementing the [Reconcile] trait to suit your
    /// specific needs.
    fn requeue_after_error_seconds() -> Option<Duration> {
        Some(Duration::from_secs(REQUEUE_AFTER_ERROR_SECONDS))
    }

    /// Destructs components from the implementing struct that are injected into the controller.
    ///
    /// This method consumes `self` and extracts the three components needed to start the controller:
    /// - [`Api<R>`] - The Kubernetes API client for the resource type
    /// - [`Config`] - The watcher configuration (usually [`Config::default()`])
    /// - [`Arc<C>`] - The shared context containing reconciliation logic
    ///
    /// # Purpose
    ///
    /// The controller needs to take ownership of these components to manage the reconciliation loop.
    /// By consuming the reconciler struct, we ensure clean separation between setup and runtime phases.
    ///
    /// # Config Customization
    ///
    /// While [`Config::default()`] works for most cases, you can customize it to:
    /// - Filter resources by labels: `Config::default().labels("app=myapp")`
    /// - Filter by fields: `Config::default().fields("metadata.name=myresource")`
    /// - Adjust debounce: `Config::default().debounce(Duration::from_secs(5))`
    ///
    /// # Example
    ///
    /// ```
    /// # use std::sync::Arc;
    /// # use kube::{Api, Client};
    /// # use kube::runtime::watcher::Config;
    /// # use k8s_openapi::api::core::v1::ConfigMap;
    /// # use async_trait::async_trait;
    /// # use kuberator::{Reconcile, Context};
    /// # use kuberator::cache::StaticApiProvider;
    /// # use kuberator::k8s::K8sRepository;
    /// # type MyK8sRepo = K8sRepository<ConfigMap, StaticApiProvider<ConfigMap>>;
    /// # struct MyContext { repo: Arc<MyK8sRepo> }
    /// # #[async_trait]
    /// # impl Context<ConfigMap, MyK8sRepo, StaticApiProvider<ConfigMap>> for MyContext {
    /// #     fn k8s_repository(&self) -> Arc<MyK8sRepo> { Arc::clone(&self.repo) }
    /// #     fn finalizer(&self) -> &'static str { "example/finalizer" }
    /// #     async fn handle_apply(&self, _: Arc<ConfigMap>) -> kuberator::error::Result<kube::runtime::controller::Action> {
    /// #         Ok(kube::runtime::controller::Action::await_change())
    /// #     }
    /// #     async fn handle_cleanup(&self, _: Arc<ConfigMap>) -> kuberator::error::Result<kube::runtime::controller::Action> {
    /// #         Ok(kube::runtime::controller::Action::await_change())
    /// #     }
    /// # }
    /// struct MyReconciler {
    ///     context: Arc<MyContext>,
    ///     crd_api: Api<ConfigMap>,
    /// }
    ///
    /// #[async_trait]
    /// impl Reconcile<ConfigMap, MyContext, MyK8sRepo, StaticApiProvider<ConfigMap>> for MyReconciler {
    ///     fn destruct(self) -> (Api<ConfigMap>, Config, Arc<MyContext>) {
    ///         // Default configuration - watches all resources
    ///         (self.crd_api, Config::default(), self.context)
    ///
    ///         // Or with custom configuration:
    ///         // let config = Config::default().labels("app=myapp");
    ///         // (self.crd_api, config, self.context)
    ///     }
    /// }
    /// ```
    fn destruct(self) -> (Api<R>, Config, Arc<C>);
}

fn controller<R, G>(crd_api: Api<R>, config: Config, graceful_trigger: Option<G>) -> Controller<R>
where
    R: Resource<Scope = NamespaceResourceScope> + Serialize + DeserializeOwned + Debug + Clone + Send + Sync + 'static,
    R::DynamicType: Default + Eq + Hash + Clone + Debug + Unpin,
    G: Future<Output = ()> + Send + Sync + 'static,
{
    let controller = Controller::new(crd_api, config);

    if let Some(trigger) = graceful_trigger {
        return controller.graceful_shutdown_on(trigger);
    };

    controller
}

/// The Context trait takes care of the apply and cleanup logic of a resource.
#[async_trait]
pub trait Context<R, F, P>: Send + Sync
where
    R: Resource<Scope = NamespaceResourceScope> + Serialize + DeserializeOwned + Debug + Clone + Send + Sync + 'static,
    R::DynamicType: Default,
    F: Finalize<R, P>,
    P: ProvideApi<R>,
{
    /// Handles a successful reconciliation of a resource.
    ///
    /// The method is called by the controller in [Reconcile::start] when a resource is reconciled.
    /// The method takes care of the finalizers of the resource as well as the [Context::handle_apply]
    /// and [Context::handle_cleanup] logic.
    #[tracing::instrument(
        name = "kuberator.handle_reconciliation",
        skip(self, object),
        fields(
            resource_name = %object.try_name().unwrap_or_default(),
            resource_namespace = %object.try_namespace().unwrap_or_default(),
            finalizer = %self.finalizer(),
            has_deletion_timestamp = %object.meta().deletion_timestamp.is_some(),
        )
    )]
    async fn handle_reconciliation(&self, object: Arc<R>) -> Result<Action> {
        let action = self
            .k8s_repository()
            .finalize(self.finalizer(), object, |event| async {
                match event {
                    Event::Apply(object) => self.handle_apply(object).await,
                    Event::Cleanup(object) => self.handle_cleanup(object).await,
                }
            })
            .await?;

        Ok(action)
    }

    /// Handles an error that occurs during reconciliation.
    ///
    /// The method is called by the controller in [Reconcile::start] when an error occurs during
    /// reconciliation.
    ///
    /// This method is used as a default implementation for the [Reconcile::error_policy] method
    /// that logs the error and requeues the resource or not depending on the requeue parameter.
    ///
    /// Feel free to override it in your struct implementing the [Context] trait to suit your
    /// specific needs.
    fn handle_error(&self, object: Arc<R>, error: &Error, requeue: Option<Duration>) -> Action {
        tracing::error!(
            resource_name = %object.try_name().unwrap_or_default(),
            resource_namespace = %object.try_namespace().unwrap_or_default(),
            error = ?error,
            "Reconciliation error"
        );
        requeue.map_or_else(Action::await_change, Action::requeue)
    }

    /// Returns the k8s repository provided by the struct implementing the [Context] trait.
    fn k8s_repository(&self) -> Arc<F>;

    /// Returns the resources specific finalizer name provided by the struct implementing the
    /// [Context] trait.
    fn finalizer(&self) -> &'static str;

    /// Handles the apply logic of a resource.
    ///
    /// This method needs to be implemented by the struct implementing the [Context] trait. It
    /// handles all the logic that is needed to apply a resource: creation & updates.
    ///
    /// This method needs to be idempotent and tolerate being executed several times (even if
    /// previously cancelled).
    async fn handle_apply(&self, object: Arc<R>) -> Result<Action>;

    /// Handles the cleanup logic of a resource.
    ///
    /// This method needs to be implemented by the struct implementing the [Context] trait. It
    /// handles all the logic that is needed to clean up a resource: the deletion.
    ///
    /// This method needs to be idempotent and tolerate being executed several times (even if
    /// previously cancelled).
    async fn handle_cleanup(&self, object: Arc<R>) -> Result<Action>;
}

/// The Finalize trait takes care of the finalizers of a resource as well the reconciliation
/// changes to the k8s resource itself.
///
/// This component needs to be implemented by a struct that is used by the [Context] component,
/// something like a k8s repository, as it interacts with the k8s api directly.
#[async_trait]
pub trait Finalize<R, P>: Send + Sync
where
    R: Resource<Scope = NamespaceResourceScope> + Serialize + DeserializeOwned + Debug + Clone + Send + Sync + 'static,
    R::DynamicType: Default,
    P: ProvideApi<R>,
{
    /// Returns the provider for k8s Api.
    fn api_provider(&self) -> &P;

    /// Delegates the finalization logic to the [kube::runtime::finalizer::finalizer] function
    /// of the kube runtime by utilizing the reconcile function injected by the [Context].
    ///
    /// As this method is dealing with meta.finalizers of a component it might trigger
    /// a new reconiliation of the resource. This happens in case of the creation and the
    /// deletion of the resource.
    #[tracing::instrument(
        name = "kuberator.finalize",
        skip(self, object, reconcile),
        fields(
            resource_name = %object.try_name().unwrap_or_default(),
            resource_namespace = %object.try_namespace().unwrap_or_default(),
            finalizer = %finalizer_name,
        )
    )]
    async fn finalize<ReconcileFut>(
        &self,
        finalizer_name: &str,
        object: Arc<R>,
        reconcile: impl FnOnce(Event<R>) -> ReconcileFut + Send,
    ) -> Result<Action>
    where
        ReconcileFut: TryFuture<Ok = Action> + Send,
        ReconcileFut::Error: StdError + Send + 'static,
    {
        let api = self.api_provider().get(&object.try_namespace()?)?;
        finalizer(&api, finalizer_name, object, reconcile)
            .await
            .map_err(Error::from)
    }

    /// Updates the status object of a resource.
    ///
    /// Updating the status does not trigger a new reconiliation loop.
    #[tracing::instrument(
        name = "kuberator.update_status",
        skip(self, object, status),
        fields(
            resource_name = %object.try_name().unwrap_or_default(),
            resource_namespace = %object.try_namespace().unwrap_or_default(),
            resource_generation = %object.meta().generation.unwrap_or(0),
        )
    )]
    async fn update_status<S>(&self, object: &R, mut status: S) -> Result<()>
    where
        S: Serialize + ObserveGeneration + Debug + Send + Sync,
    {
        let api = self.api_provider().get(&object.try_namespace()?)?;

        status.with_observed_gen(object.meta());
        let new_status = Status { status };
        api.patch_status(object.try_name()?, &PatchParams::default(), &Patch::Merge(&new_status))
            .await?;

        tracing::debug!("Status updated successfully");
        Ok(())
    }

    /// Updates the status object of a resource with an optional error.
    ///
    /// Updating the status does not trigger a new reconiliation loop.
    #[tracing::instrument(
        name = "kuberator.update_status_with_error",
        skip(self, object, status, error),
        fields(
            resource_name = %object.try_name().unwrap_or_default(),
            resource_namespace = %object.try_namespace().unwrap_or_default(),
            resource_generation = %object.meta().generation.unwrap_or(0),
            has_error = %error.is_some(),
        )
    )]
    async fn update_status_with_error<S, A, E>(&self, object: &R, mut status: S, error: Option<&A>) -> Result<()>
    where
        S: Serialize + ObserveGeneration + WithStatusError<A, E> + Debug + Send + Sync,
        A: AsStatusError<E> + Send + Sync,
        E: Serialize + Debug + PartialEq + Clone + JsonSchema,
        E: for<'de> Deserialize<'de>,
    {
        if let Some(error) = error {
            status.with_status_error(error);
        }
        self.update_status(object, status).await
    }
}

/// The Status struct is a serializable wrapper around the status object S of a resource.
///
/// The status object S needs to implement the [ObserveGeneration] trait.
#[derive(Debug, Serialize)]
struct Status<S>
where
    S: Serialize + ObserveGeneration + Debug,
{
    status: S,
}

/// The ObserveGeneration trait is used to update the observed generation of a resource.
///
/// The user needs to implement the [ObserveGeneration::add] method to update the observed generation.
pub trait ObserveGeneration {
    /// Updates the observed generation of a resource, e.g. updating a property of the status
    /// object that implements [ObserveGeneration].
    fn add(&mut self, observed_generation: i64);

    /// Updates the observed generation of a resource with the generation of the resource's
    /// metadata.
    fn with_observed_gen(&mut self, meta: &ObjectMeta) {
        let observed_generation = meta.generation;
        if let Some(observed_generation) = observed_generation {
            self.add(observed_generation)
        }
    }
}

/// The AsStatusError trait is used to convert a resource into a status error.
///
/// This way a user can convert control how the errors that are shown in the status objects
/// are shown to the user.
pub trait AsStatusError<E>
where
    E: Serialize + Debug + PartialEq + Clone + JsonSchema,
    E: for<'de> Deserialize<'de>,
{
    /// Converts the self into a status error.
    fn as_status_error(&self) -> E;
}

/// The WithStatusError trait is used to add a status error to a resource.
///
/// The user needs to implement the [WithStatusError::add] method to handle the logic to how
/// the status error is added to the resource to then be able to use the convenience method
/// [WithStatusError::with_status_error].
pub trait WithStatusError<A, E>
where
    A: AsStatusError<E>,
    E: Serialize + Debug + PartialEq + Clone + JsonSchema,
    E: for<'de> Deserialize<'de>,
{
    /// Adds a status error to the status object of a resource.
    fn add(&mut self, error: E);

    /// Takes an error that implements the [AsStatusError] trait and adds it to the status as
    /// a status error.
    fn with_status_error(&mut self, error: &A) {
        self.add(error.as_status_error());
    }
}

/// The TryResource trait is used to try to extract the name and the namespace of a resources
/// metadata and encapsulates the error handling.
pub trait TryResource {
    fn try_name(&self) -> Result<&str>;
    fn try_namespace(&self) -> Result<String>;
}

impl<R> TryResource for R
where
    R: Resource,
{
    fn try_name(&self) -> Result<&str> {
        self.meta().name.as_deref().ok_or(Error::UnnamedObject)
    }

    fn try_namespace(&self) -> Result<String> {
        self.namespace().ok_or(Error::UserInput({
            "Expected resource to be namespaced. Can't deploy to an unknown namespace.".to_owned()
        }))
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use k8s_openapi::api::core::v1::ConfigMap;
    use k8s_openapi::apimachinery::pkg::apis::meta::v1::ObjectMeta;
    use schemars::JsonSchema;
    use serde::{Deserialize, Serialize};

    // Test structs for ObserveGeneration
    #[derive(Debug, Clone)]
    struct TestStatus {
        #[allow(dead_code)]
        state: String,
        observed_generation: Option<i64>,
    }

    impl ObserveGeneration for TestStatus {
        fn add(&mut self, observed_generation: i64) {
            self.observed_generation = Some(observed_generation);
        }
    }

    // Test structs for AsStatusError and WithStatusError
    #[derive(Debug, PartialEq, Clone)]
    enum TestError {
        NotFound,
        InvalidInput(String),
    }

    #[derive(Serialize, Deserialize, Debug, PartialEq, Clone, JsonSchema)]
    struct TestStatusError {
        message: String,
        code: i32,
    }

    impl AsStatusError<TestStatusError> for TestError {
        fn as_status_error(&self) -> TestStatusError {
            match self {
                TestError::NotFound => TestStatusError {
                    message: "Resource not found".to_string(),
                    code: 404,
                },
                TestError::InvalidInput(msg) => TestStatusError {
                    message: format!("Invalid input: {}", msg),
                    code: 400,
                },
            }
        }
    }

    #[derive(Debug, Clone)]
    struct TestStatusWithError {
        #[allow(dead_code)]
        state: String,
        error: Option<TestStatusError>,
    }

    impl WithStatusError<TestError, TestStatusError> for TestStatusWithError {
        fn add(&mut self, error: TestStatusError) {
            self.error = Some(error);
        }
    }

    #[tokio::test]
    async fn test_observe_generation_add() {
        // Given: A test status object with no observed generation
        let mut status = TestStatus {
            state: "Running".to_string(),
            observed_generation: None,
        };

        // When: Adding an observed generation
        status.add(42);

        // Then: The observed generation should be set
        assert_eq!(status.observed_generation, Some(42));
    }

    #[tokio::test]
    async fn test_observe_generation_with_observed_gen() {
        // Given: A test status object and metadata with a generation
        let mut status = TestStatus {
            state: "Running".to_string(),
            observed_generation: None,
        };
        let meta = ObjectMeta {
            generation: Some(123),
            ..Default::default()
        };

        // When: Calling with_observed_gen
        status.with_observed_gen(&meta);

        // Then: The observed generation should be extracted from metadata
        assert_eq!(status.observed_generation, Some(123));
    }

    #[tokio::test]
    async fn test_observe_generation_with_observed_gen_no_generation() {
        // Given: A test status object and metadata without a generation
        let mut status = TestStatus {
            state: "Running".to_string(),
            observed_generation: None,
        };
        let meta = ObjectMeta {
            generation: None,
            ..Default::default()
        };

        // When: Calling with_observed_gen
        status.with_observed_gen(&meta);

        // Then: The observed generation should remain None
        assert_eq!(status.observed_generation, None);
    }

    #[tokio::test]
    async fn test_as_status_error_not_found() {
        // Given: A TestError::NotFound error
        let error = TestError::NotFound;

        // When: Converting to status error
        let status_error = error.as_status_error();

        // Then: Should produce correct status error
        assert_eq!(status_error.message, "Resource not found");
        assert_eq!(status_error.code, 404);
    }

    #[tokio::test]
    async fn test_as_status_error_invalid_input() {
        // Given: A TestError::InvalidInput error with a message
        let error = TestError::InvalidInput("Bad format".to_string());

        // When: Converting to status error
        let status_error = error.as_status_error();

        // Then: Should produce correct status error with formatted message
        assert_eq!(status_error.message, "Invalid input: Bad format");
        assert_eq!(status_error.code, 400);
    }

    #[tokio::test]
    async fn test_with_status_error_add() {
        // Given: A test status object without error
        let mut status = TestStatusWithError {
            state: "Running".to_string(),
            error: None,
        };
        let error = TestStatusError {
            message: "Something went wrong".to_string(),
            code: 500,
        };

        // When: Adding a status error
        status.add(error.clone());

        // Then: The error should be added to status
        assert_eq!(status.error, Some(error));
    }

    #[tokio::test]
    async fn test_with_status_error_with_status_error() {
        // Given: A test status object without error and a TestError
        let mut status = TestStatusWithError {
            state: "Running".to_string(),
            error: None,
        };
        let error = TestError::InvalidInput("Missing field".to_string());

        // When: Converting and adding the error using with_status_error
        status.with_status_error(&error);

        // Then: The error should be converted and added to status
        assert!(status.error.is_some());
        let status_error = status.error.unwrap();
        assert_eq!(status_error.message, "Invalid input: Missing field");
        assert_eq!(status_error.code, 400);
    }

    #[tokio::test]
    async fn test_try_resource_try_name_success() {
        // Given: A ConfigMap with a name
        let config_map = ConfigMap {
            metadata: ObjectMeta {
                name: Some("my-config".to_string()),
                namespace: Some("default".to_string()),
                ..Default::default()
            },
            ..Default::default()
        };

        // When: Calling try_name
        let result = config_map.try_name();

        // Then: Should return the name
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "my-config");
    }

    #[tokio::test]
    async fn test_try_resource_try_name_unnamed() {
        // Given: A ConfigMap without a name
        let config_map = ConfigMap {
            metadata: ObjectMeta {
                name: None,
                namespace: Some("default".to_string()),
                ..Default::default()
            },
            ..Default::default()
        };

        // When: Calling try_name
        let result = config_map.try_name();

        // Then: Should return UnnamedObject error
        assert!(result.is_err());
        assert!(matches!(result.unwrap_err(), Error::UnnamedObject));
    }

    #[tokio::test]
    async fn test_try_resource_try_namespace_success() {
        // Given: A ConfigMap with a namespace
        let config_map = ConfigMap {
            metadata: ObjectMeta {
                name: Some("my-config".to_string()),
                namespace: Some("production".to_string()),
                ..Default::default()
            },
            ..Default::default()
        };

        // When: Calling try_namespace
        let result = config_map.try_namespace();

        // Then: Should return the namespace
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "production");
    }

    #[tokio::test]
    async fn test_try_resource_try_namespace_missing() {
        // Given: A ConfigMap without a namespace
        let config_map = ConfigMap {
            metadata: ObjectMeta {
                name: Some("my-config".to_string()),
                namespace: None,
                ..Default::default()
            },
            ..Default::default()
        };

        // When: Calling try_namespace
        let result = config_map.try_namespace();

        // Then: Should return UserInputError
        assert!(result.is_err());
        if let Err(Error::UserInput(msg)) = result {
            assert!(msg.contains("Expected resource to be namespaced"));
        } else {
            panic!("Expected UserInputError");
        }
    }

    // ==================== Tests for Finalize, Context, Reconcile ====================

    use crate::cache::{CachingStrategy, StaticApiProvider};
    use kube::client::Body;
    use kube::runtime::controller::Action;
    use kube::CustomResource;
    use kube::{Api, Client};
    use std::time::Duration;
    use tower_test::mock;

    #[derive(CustomResource, Serialize, Deserialize, Debug, Clone, PartialEq, JsonSchema)]
    #[kube(
        group = "test.kuberator.io",
        version = "v1",
        kind = "TestResource",
        plural = "testresources",
        namespaced
    )]
    struct TestResourceSpec {
        value: String,
    }

    #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, JsonSchema)]
    #[allow(dead_code)]
    struct TestResourceStatus {
        state: String,
        observed_generation: Option<i64>,
    }

    impl ObserveGeneration for TestResourceStatus {
        fn add(&mut self, observed_generation: i64) {
            self.observed_generation = Some(observed_generation);
        }
    }

    struct MockFinalize {
        api_provider: StaticApiProvider<TestResource>,
    }

    #[async_trait]
    impl Finalize<TestResource, StaticApiProvider<TestResource>> for MockFinalize {
        fn api_provider(&self) -> &StaticApiProvider<TestResource> {
            &self.api_provider
        }
    }

    struct MockContext {
        finalize: Arc<MockFinalize>,
        apply_called: Arc<std::sync::Mutex<bool>>,
        cleanup_called: Arc<std::sync::Mutex<bool>>,
    }

    #[async_trait]
    impl Context<TestResource, MockFinalize, StaticApiProvider<TestResource>> for MockContext {
        fn k8s_repository(&self) -> Arc<MockFinalize> {
            Arc::clone(&self.finalize)
        }

        fn finalizer(&self) -> &'static str {
            "test.kuberator.io/finalizer"
        }

        async fn handle_apply(&self, _object: Arc<TestResource>) -> Result<Action> {
            *self.apply_called.lock().unwrap() = true;
            Ok(Action::await_change())
        }

        async fn handle_cleanup(&self, _object: Arc<TestResource>) -> Result<Action> {
            *self.cleanup_called.lock().unwrap() = true;
            Ok(Action::await_change())
        }
    }

    fn test_client_for_traits() -> Client {
        let (mock_service, _handle) = mock::pair::<http::Request<Body>, http::Response<hyper::body::Incoming>>();
        Client::new(mock_service, "default")
    }

    #[tokio::test]
    async fn test_finalize_api_provider() {
        // Given: A MockFinalize with a StaticApiProvider
        let client = test_client_for_traits();
        let api_provider = StaticApiProvider::new(client, vec!["default"], CachingStrategy::Strict);
        let finalize = MockFinalize { api_provider };

        // When: Calling api_provider()
        let provider = finalize.api_provider();

        // Then: Should return a reference to the provider
        let result = provider.get("default");
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_context_k8s_repository() {
        // Given: A MockContext with a MockFinalize
        let client = test_client_for_traits();
        let api_provider = StaticApiProvider::new(client, vec!["default"], CachingStrategy::Strict);
        let finalize = Arc::new(MockFinalize { api_provider });
        let context = MockContext {
            finalize: Arc::clone(&finalize),
            apply_called: Arc::new(std::sync::Mutex::new(false)),
            cleanup_called: Arc::new(std::sync::Mutex::new(false)),
        };

        // When: Calling k8s_repository()
        let repo = context.k8s_repository();

        // Then: Should return the repository
        assert!(repo.api_provider().get("default").is_ok());
    }

    #[tokio::test]
    async fn test_context_finalizer() {
        // Given: A MockContext
        let client = test_client_for_traits();
        let api_provider = StaticApiProvider::new(client, vec!["default"], CachingStrategy::Strict);
        let finalize = Arc::new(MockFinalize { api_provider });
        let context = MockContext {
            finalize,
            apply_called: Arc::new(std::sync::Mutex::new(false)),
            cleanup_called: Arc::new(std::sync::Mutex::new(false)),
        };

        // When: Calling finalizer()
        let finalizer_name = context.finalizer();

        // Then: Should return the correct finalizer name
        assert_eq!(finalizer_name, "test.kuberator.io/finalizer");
    }

    #[tokio::test]
    async fn test_context_handle_apply() {
        // Given: A MockContext and a test resource
        let client = test_client_for_traits();
        let api_provider = StaticApiProvider::new(client, vec!["default"], CachingStrategy::Strict);
        let finalize = Arc::new(MockFinalize { api_provider });
        let apply_called = Arc::new(std::sync::Mutex::new(false));
        let context = MockContext {
            finalize,
            apply_called: Arc::clone(&apply_called),
            cleanup_called: Arc::new(std::sync::Mutex::new(false)),
        };

        let test_resource = TestResource::new(
            "test-resource",
            TestResourceSpec {
                value: "test-value".to_string(),
            },
        );

        // When: Calling handle_apply
        let result = context.handle_apply(Arc::new(test_resource)).await;

        // Then: Should succeed and mark apply as called
        assert!(result.is_ok());
        assert!(*apply_called.lock().unwrap());
    }

    #[tokio::test]
    async fn test_context_handle_cleanup() {
        // Given: A MockContext and a test resource
        let client = test_client_for_traits();
        let api_provider = StaticApiProvider::new(client, vec!["default"], CachingStrategy::Strict);
        let finalize = Arc::new(MockFinalize { api_provider });
        let cleanup_called = Arc::new(std::sync::Mutex::new(false));
        let context = MockContext {
            finalize,
            apply_called: Arc::new(std::sync::Mutex::new(false)),
            cleanup_called: Arc::clone(&cleanup_called),
        };

        let test_resource = TestResource::new(
            "test-resource",
            TestResourceSpec {
                value: "test-value".to_string(),
            },
        );

        // When: Calling handle_cleanup
        let result = context.handle_cleanup(Arc::new(test_resource)).await;

        // Then: Should succeed and mark cleanup as called
        assert!(result.is_ok());
        assert!(*cleanup_called.lock().unwrap());
    }

    #[tokio::test]
    async fn test_context_handle_error() {
        // Given: A MockContext, an error, and a test resource
        let client = test_client_for_traits();
        let api_provider = StaticApiProvider::new(client, vec!["default"], CachingStrategy::Strict);
        let finalize = Arc::new(MockFinalize { api_provider });
        let context = MockContext {
            finalize,
            apply_called: Arc::new(std::sync::Mutex::new(false)),
            cleanup_called: Arc::new(std::sync::Mutex::new(false)),
        };

        let test_resource = TestResource::new(
            "test-resource",
            TestResourceSpec {
                value: "test-value".to_string(),
            },
        );
        let error = Error::UserInput("Test error".to_string());

        // When: Calling handle_error with requeue duration
        let action = context.handle_error(Arc::new(test_resource.clone()), &error, Some(Duration::from_secs(30)));

        // Then: Should return requeue action with the specified duration
        let expected_requeue = Action::requeue(Duration::from_secs(30));
        assert_eq!(action, expected_requeue);

        // When: Calling handle_error without requeue
        let action_no_requeue = context.handle_error(Arc::new(test_resource), &error, None);

        // Then: Should return await_change action
        let expected_await_change = Action::await_change();
        assert_eq!(action_no_requeue, expected_await_change);
    }

    #[tokio::test]
    async fn test_reconcile_requeue_after_error_seconds() {
        // Mock Reconcile implementation
        struct MockReconcile;

        impl Reconcile<TestResource, MockContext, MockFinalize, StaticApiProvider<TestResource>> for MockReconcile {
            fn destruct(self) -> (Api<TestResource>, kube::runtime::watcher::Config, Arc<MockContext>) {
                unimplemented!("Not needed for this test")
            }
        }

        // When: Calling requeue_after_error_seconds with default implementation
        let duration = MockReconcile::requeue_after_error_seconds();

        // Then: Should return the default 60 seconds
        assert_eq!(duration, Some(Duration::from_secs(60)));
    }
}