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
//! Property-based testing generators for debtmap types.
//!
//! This module provides proptest strategies for generating random test data,
//! enabling property-based testing of pure functions.
//!
//! # Why Property-Based Testing?
//!
//! Traditional example-based tests check specific inputs. Property-based tests
//! verify that invariants hold across many randomly generated inputs:
//!
//! - Finds edge cases you wouldn't think to test
//! - Provides automatic shrinking to minimal failing cases
//! - Documents invariants as executable specifications
//!
//! # Available Strategies
//!
//! | Strategy | Generates | Use Case |
//! |----------|-----------|----------|
//! | [`any_config`] | `DebtmapConfig` | Testing config-dependent code |
//! | [`any_thresholds`] | `ThresholdsConfig` | Testing threshold logic |
//! | [`any_coverage`] | `FileCoverage` | Testing coverage calculations |
//! | [`any_complexity`] | `u32` | Testing complexity logic |
//! | [`any_ast`] | `syn::File` | Testing AST analysis |
//!
//! # Example: Testing Pure Functions
//!
//! ```rust,ignore
//! use proptest::prelude::*;
//! use debtmap::testkit::proptest_generators::{any_config, any_complexity};
//!
//! proptest! {
//! #[test]
//! fn complexity_is_positive(complexity in any_complexity()) {
//! // Property: complexity is always positive
//! prop_assert!(complexity > 0);
//! }
//!
//! #[test]
//! fn score_is_bounded(
//! complexity in any_complexity(),
//! config in any_config(),
//! ) {
//! let score = calculate_score(complexity, &config);
//!
//! // Property: score is always in valid range
//! prop_assert!(score >= 0.0);
//! prop_assert!(score <= 100.0);
//! }
//! }
//! ```
//!
//! # Shrinking
//!
//! When a test fails, proptest automatically shrinks the failing input
//! to the minimal case that still fails, making debugging easier.
//!
//! # Deterministic Reproduction
//!
//! Failed tests print a seed that can be used to reproduce the failure:
//!
//! ```text
//! proptest: seed = 0x1234567890abcdef
//! ```
//!
//! Use `PROPTEST_SEED=0x1234567890abcdef cargo test` to reproduce.
use *;
use crate;
use crateFileCoverage;
/// Generate random complexity values (1-100).
///
/// Complexity of 0 is invalid (minimum is 1 for any function).
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn test_complexity(complexity in any_complexity()) {
/// assert!(complexity >= 1);
/// }
/// }
/// ```
/// Generate random threshold configurations.
///
/// All thresholds are in reasonable ranges:
/// - Complexity: 1-100
/// - Max file length: 100-2000
/// - Max function length: 10-500
/// - Minimum debt score: 0.0-10.0
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn thresholds_are_valid(thresholds in any_thresholds()) {
/// // All thresholds should be in valid ranges
/// }
/// }
/// ```
/// Generate random configurations.
///
/// Creates a `DebtmapConfig` with random thresholds.
/// Other fields are left as defaults.
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn config_is_usable(config in any_config()) {
/// // Config should be valid for analysis
/// }
/// }
/// ```
/// Generate random file coverage data.
///
/// Generates coverage with:
/// - 1-100 total lines
/// - 0-total_lines hit lines
///
/// Always maintains the invariant that hit_lines <= total_lines.
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn coverage_is_valid(coverage in any_coverage()) {
/// // hit_lines should never exceed total_lines
/// assert!(coverage.hit_lines <= coverage.total_lines);
/// }
/// }
/// ```
/// Generate random coverage percentages (0.0-100.0).
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn percentage_is_bounded(pct in any_coverage_percentage()) {
/// assert!(pct >= 0.0 && pct <= 100.0);
/// }
/// }
/// ```
/// Generate random ASTs with varying complexity.
///
/// Creates ASTs with 0-20 if-statements, resulting in
/// cyclomatic complexity of 1-21.
///
/// Note: This generates simple synthetic ASTs. For more realistic
/// ASTs, consider using corpus-based fuzzing.
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn ast_is_parseable(ast in any_ast()) {
/// // AST should always be valid
/// assert!(!ast.items.is_empty());
/// }
/// }
/// ```
/// Generate random nesting depths (1-10).
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn nesting_is_reasonable(depth in any_nesting_depth()) {
/// assert!(depth >= 1 && depth <= 10);
/// }
/// }
/// ```
/// Generate random line counts (1-1000).
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn loc_is_positive(lines in any_lines_of_code()) {
/// assert!(lines >= 1);
/// }
/// }
/// ```
/// Generate random file paths.
///
/// Creates paths like "src/module_123.rs" for testing file-based operations.
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn path_is_valid(path in any_file_path()) {
/// assert!(path.extension().map(|e| e == "rs").unwrap_or(false));
/// }
/// }
/// ```
/// Generate random function names.
///
/// Creates valid Rust function names like "func_42".
///
/// # Example
///
/// ```rust,ignore
/// proptest! {
/// #[test]
/// fn name_is_valid(name in any_function_name()) {
/// assert!(!name.is_empty());
/// }
/// }
/// ```