rcman 0.1.9

Framework-agnostic settings management with schema, backup/restore, secrets and derive macro support
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
//! Performance and Stress Tests
//!
//! Tests that verify performance characteristics and stress scenarios:
//! - Large numbers of settings
//! - Rapid sequential operations
//! - Memory usage patterns
//! - File I/O efficiency
//!
//! Note: These tests are marked with #[ignore] by default.
//! Run with: cargo test --test `performance_test` -- --ignored

mod common;

use common::TestFixture;
use serde_json::json;
use std::sync::Arc;
use std::thread;
use std::time::Instant;

// =============================================================================
// High-Frequency Operations
// =============================================================================

#[test]
#[ignore = "Performance test"]
fn test_rapid_sequential_saves() {
    let fixture = TestFixture::new();
    let _ = fixture.manager.get_all().unwrap();

    let start = Instant::now();

    // Save 1000 times rapidly
    for i in 0..1000 {
        let theme = if i % 2 == 0 { "light" } else { "dark" };
        fixture
            .manager
            .save_setting("ui", "theme", &json!(theme))
            .unwrap();
    }

    let duration = start.elapsed();
    println!("1000 sequential saves took: {duration:?}");

    // Should complete in reasonable time (< 5 seconds for 1000 operations)
    assert!(duration.as_secs() < 5);
}

#[test]
#[ignore = "Performance test"]
fn test_rapid_sequential_loads() {
    let fixture = TestFixture::new();
    let _ = fixture.manager.get_all().unwrap();

    // Save once
    fixture
        .manager
        .save_setting("ui", "theme", &json!("light"))
        .unwrap();

    let start = Instant::now();

    // Load 1000 times (should be fast due to caching)
    for _ in 0..1000 {
        let _ = fixture.manager.metadata().unwrap();
    }

    let duration = start.elapsed();
    println!("1000 sequential loads took: {duration:?}");

    // Cached loads should be very fast (< 1 second for 1000 operations)
    assert!(duration.as_secs() < 1);
}

#[test]
#[ignore = "Performance test"]
fn test_mixed_read_write_workload() {
    let fixture = TestFixture::new();
    let _ = fixture.manager.get_all().unwrap();

    let start = Instant::now();

    for i in 0..500 {
        // Save
        let theme = if i % 2 == 0 { "light" } else { "dark" };
        fixture
            .manager
            .save_setting("ui", "theme", &json!(theme))
            .unwrap();

        // Load
        let _ = fixture.manager.metadata().unwrap();
    }

    let duration = start.elapsed();
    println!("500 save+load cycles took: {duration:?}");

    assert!(duration.as_secs() < 10);
}

// =============================================================================
// Large Number of Sub-Settings
// =============================================================================

#[test]
#[ignore = "Performance test"]
fn test_many_sub_settings_entities() {
    let fixture = TestFixture::with_sub_settings();

    let start = Instant::now();

    let remotes = fixture.manager.sub_settings("remotes").unwrap();

    // Create 1000 entities
    for i in 0..1000 {
        remotes
            .set(
                &format!("remote{i}"),
                &json!({
                    "type": "s3",
                    "bucket": format!("bucket-{}", i),
                    "region": "us-west-2",
                    "endpoint": format!("https://s3-{}.example.com", i)
                }),
            )
            .unwrap();
    }

    let create_duration = start.elapsed();
    println!("Creating 1000 entities took: {create_duration:?}");

    // List all entities
    let start = Instant::now();
    let all_keys = remotes.list().unwrap();
    let list_duration = start.elapsed();

    println!("Listing 1000 entities took: {list_duration:?}");
    assert_eq!(all_keys.len(), 1000);

    // Read them back
    let start = Instant::now();
    for i in 0..1000 {
        let _: serde_json::Value = remotes.get(&format!("remote{i}")).unwrap();
    }
    let read_duration = start.elapsed();

    println!("Reading 1000 entities took: {read_duration:?}");

    // Operations should complete in reasonable time
    assert!(create_duration.as_secs() < 30);
    assert!(list_duration.as_secs() < 5);
    assert!(read_duration.as_secs() < 10);
}

#[test]
#[ignore = "Performance test"]
fn test_sub_settings_bulk_operations() {
    let fixture = TestFixture::with_sub_settings();
    let remotes = fixture.manager.sub_settings("remotes").unwrap();

    // Create some entities
    for i in 0..100 {
        remotes
            .set(&format!("remote{i}"), &json!({"id": i}))
            .unwrap();
    }

    // Measure bulk delete time
    let start = Instant::now();
    for i in 0..100 {
        remotes.delete(&format!("remote{i}")).unwrap();
    }
    let duration = start.elapsed();

    println!("Deleting 100 entities took: {duration:?}");
    assert!(duration.as_secs() < 5);

    // Verify all deleted
    let keys = remotes.list().unwrap();
    assert_eq!(keys.len(), 0);
}

// =============================================================================
// Concurrent Stress Tests
// =============================================================================

#[test]
#[ignore = "Performance test"]
fn test_high_concurrency_reads() {
    let fixture = Arc::new(TestFixture::new());
    let _ = fixture.manager.get_all().unwrap();

    fixture
        .manager
        .save_setting("ui", "theme", &json!("light"))
        .unwrap();

    let mut handles = vec![];

    let start = Instant::now();

    // 50 threads, each reading 100 times
    for _ in 0..50 {
        let fixture_clone = Arc::clone(&fixture);
        let handle = thread::spawn(move || {
            for _ in 0..100 {
                let _ = fixture_clone.manager.metadata().unwrap();
            }
        });
        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }

    let duration = start.elapsed();
    println!("5000 concurrent reads (50 threads) took: {duration:?}");

    // Should handle high concurrency efficiently
    assert!(duration.as_secs() < 10);
}

#[test]
#[ignore = "Performance test"]
fn test_high_concurrency_writes() {
    let fixture = Arc::new(TestFixture::new());
    let _ = fixture.manager.get_all().unwrap();

    let mut handles = vec![];

    let start = Instant::now();

    // 20 threads, each writing 50 times
    for thread_id in 0..20 {
        let fixture_clone = Arc::clone(&fixture);
        let handle = thread::spawn(move || {
            for i in 0..50 {
                let theme = if (thread_id + i) % 2 == 0 {
                    "light"
                } else {
                    "dark"
                };
                fixture_clone
                    .manager
                    .save_setting("ui", "theme", &json!(theme))
                    .unwrap();
            }
        });
        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }

    let duration = start.elapsed();
    println!("1000 concurrent writes (20 threads) took: {duration:?}");

    // Verify data integrity
    let metadata = fixture.manager.metadata().unwrap();
    let theme = metadata.get("ui.theme").unwrap();
    let value = theme.value.as_ref().unwrap().as_str().unwrap();
    assert!(value == "light" || value == "dark");

    assert!(duration.as_secs() < 30);
}

#[test]
#[ignore = "Performance test"]
fn test_mixed_concurrent_operations() {
    let fixture = Arc::new(TestFixture::new());
    let _ = fixture.manager.get_all().unwrap();

    let mut handles = vec![];

    let start = Instant::now();

    // 10 reader threads
    for _ in 0..10 {
        let fixture_clone = Arc::clone(&fixture);
        let handle = thread::spawn(move || {
            for _ in 0..100 {
                let _ = fixture_clone.manager.metadata().unwrap();
            }
        });
        handles.push(handle);
    }

    // 5 writer threads
    for thread_id in 0..5 {
        let fixture_clone = Arc::clone(&fixture);
        let handle = thread::spawn(move || {
            for i in 0..50 {
                let theme = if (thread_id + i) % 2 == 0 {
                    "light"
                } else {
                    "dark"
                };
                fixture_clone
                    .manager
                    .save_setting("ui", "theme", &json!(theme))
                    .unwrap();
            }
        });
        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }

    let duration = start.elapsed();
    println!("Mixed workload (1000 reads + 250 writes) took: {duration:?}",);

    assert!(duration.as_secs() < 15);
}

// =============================================================================
// Memory Usage Tests
// =============================================================================

#[test]
#[ignore = "Performance test"]
fn test_memory_efficient_large_settings() {
    let fixture = TestFixture::with_sub_settings();
    let remotes = fixture.manager.sub_settings("remotes").unwrap();

    // Create settings with large JSON values
    for i in 0..100 {
        let large_config = json!({
            "type": "s3",
            "id": i,
            "metadata": {
                "description": "x".repeat(1000), // 1KB of text
                "tags": (0..100).map(|j| format!("tag-{j}")).collect::<Vec<_>>(),
                "data": (0..50).map(|_| json!({"nested": "value"})).collect::<Vec<_>>(),
            }
        });
        remotes.set(&format!("remote{i}"), &large_config).unwrap();
    }

    // Operations should complete without excessive memory usage
    // This is more of a manual inspection test - in production you'd use
    // memory profiling tools to verify actual usage

    println!("Created 100 entities with large JSON values");

    // Cleanup should work
    for i in 0..100 {
        remotes.delete(&format!("remote{i}")).unwrap();
    }

    println!("Successfully cleaned up all entities");
}

// =============================================================================
// Backup/Restore Performance
// =============================================================================

#[cfg(feature = "backup")]
#[test]
#[ignore = "Performance test"]
fn test_backup_large_settings() {
    use rcman::BackupOptions;
    use tempfile::TempDir;

    let fixture = TestFixture::with_sub_settings();
    let _ = fixture.manager.get_all().unwrap();

    // Create lots of data
    let remotes = fixture.manager.sub_settings("remotes").unwrap();
    for i in 0..500 {
        remotes
            .set(
                &format!("remote{i}"),
                &json!({"id": i, "data": "x".repeat(100)}),
            )
            .unwrap();
    }

    let backup_dir = TempDir::new().unwrap();

    let start = Instant::now();

    let backup_path = fixture
        .manager
        .backup()
        .create(&BackupOptions::new().output_dir(backup_dir.path()))
        .unwrap();

    let duration = start.elapsed();
    println!("Backing up 500 entities took: {duration:?}");

    let file_size = std::fs::metadata(&backup_path).unwrap().len();
    println!("Backup file size: {file_size} bytes");

    assert!(duration.as_secs() < 10);
}

#[cfg(feature = "backup")]
#[test]
#[ignore = "Performance test"]
fn test_restore_large_backup() {
    use rcman::{BackupOptions, RestoreOptions};
    use tempfile::TempDir;

    let fixture = TestFixture::with_sub_settings();
    let _ = fixture.manager.get_all().unwrap();

    // Create backup with data
    let remotes = fixture.manager.sub_settings("remotes").unwrap();
    for i in 0..500 {
        remotes
            .set(&format!("remote{i}"), &json!({"id": i}))
            .unwrap();
    }

    let backup_dir = TempDir::new().unwrap();
    let backup_path = fixture
        .manager
        .backup()
        .create(
            &BackupOptions::new()
                .output_dir(backup_dir.path())
                .include_sub_settings("remotes"),
        )
        .unwrap();

    // Clear data
    for i in 0..500 {
        remotes.delete(&format!("remote{i}")).unwrap();
    }

    let start = Instant::now();

    // Restore
    fixture
        .manager
        .backup()
        .restore(&RestoreOptions::from_path(&backup_path))
        .unwrap();

    let duration = start.elapsed();
    println!("Restoring 500 entities took: {duration:?}");

    // Verify data restored
    let keys = remotes.list().unwrap();
    assert_eq!(keys.len(), 500);

    assert!(duration.as_secs() < 10);
}