toonconv 0.1.0

A Rust CLI tool for converting JSON to TOON (Token-Oriented Object Notation) format
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
//! Performance benchmarks for complex JSON structures
//!
//! Tests conversion performance for deeply nested objects,
//! large arrays, and mixed-type structures.

use serde_json::json;
use std::time::Instant;
use toonconv::conversion::{convert_json_to_toon, ConversionConfig};
use toonconv::parser::JsonSource;

#[test]
fn test_deeply_nested_object_performance() {
    let config = ConversionConfig::default();

    // Create a deeply nested structure (50 levels)
    let mut json = json!({"value": "deepest", "data": [1, 2, 3]});
    for i in (1..=50).rev() {
        json = json!({
            format!("level{}", i): json,
            "metadata": {"index": i, "active": true}
        });
    }

    let source = JsonSource::Value(json);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    let result = convert_json_to_toon(&parsed, &config);
    let duration = start.elapsed();

    assert!(result.is_ok());
    println!("Deeply nested (50 levels) conversion time: {:?}", duration);

    // Should complete in reasonable time (< 100ms for 50 levels)
    assert!(
        duration.as_millis() < 100,
        "Conversion took too long: {:?}",
        duration
    );
}

#[test]
fn test_large_array_performance() {
    let config = ConversionConfig::default();

    // Create an array with 10,000 elements
    let items: Vec<_> = (0..10000)
        .map(|i| {
            json!({
                "id": i,
                "value": i * 2,
                "label": format!("item_{}", i)
            })
        })
        .collect();

    let json = json!(items);
    let source = JsonSource::Value(json);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    let result = convert_json_to_toon(&parsed, &config);
    let duration = start.elapsed();

    assert!(result.is_ok());
    println!(
        "Large array (10,000 objects) conversion time: {:?}",
        duration
    );

    // Should complete in reasonable time (< 500ms for 10k items)
    assert!(
        duration.as_millis() < 500,
        "Conversion took too long: {:?}",
        duration
    );
}

#[test]
fn test_wide_object_performance() {
    let config = ConversionConfig::default();

    // Create an object with 1,000 fields
    let mut obj = serde_json::Map::new();
    for i in 0..1000 {
        obj.insert(format!("field_{}", i), json!(format!("value_{}", i)));
    }

    let json = json!(obj);
    let source = JsonSource::Value(json);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    let result = convert_json_to_toon(&parsed, &config);
    let duration = start.elapsed();

    assert!(result.is_ok());
    println!("Wide object (1,000 fields) conversion time: {:?}", duration);

    // Should complete quickly (< 50ms for 1k fields)
    assert!(
        duration.as_millis() < 50,
        "Conversion took too long: {:?}",
        duration
    );
}

#[test]
fn test_mixed_complex_structure_performance() {
    let config = ConversionConfig::default();

    // Create a complex real-world-like structure
    let mut users = Vec::new();
    for i in 0..1000 {
        users.push(json!({
            "id": i,
            "name": format!("User {}", i),
            "email": format!("user{}@example.com", i),
            "profile": {
                "age": 20 + (i % 50),
                "city": format!("City {}", i % 100),
                "interests": vec![
                    format!("hobby_{}", i % 10),
                    format!("hobby_{}", (i + 1) % 10),
                    format!("hobby_{}", (i + 2) % 10)
                ],
                "settings": {
                    "notifications": true,
                    "privacy": "public",
                    "theme": if i % 2 == 0 { "dark" } else { "light" }
                }
            },
            "posts": (0..5).map(|j| json!({
                "id": i * 100 + j,
                "title": format!("Post {} by User {}", j, i),
                "likes": (i + j) % 100
            })).collect::<Vec<_>>()
        }));
    }

    let json = json!({
        "users": users,
        "meta": {
            "total": 1000,
            "page": 1,
            "timestamp": "2025-11-19T00:00:00Z"
        }
    });

    let source = JsonSource::Value(json);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    let result = convert_json_to_toon(&parsed, &config);
    let duration = start.elapsed();

    assert!(result.is_ok());
    println!(
        "Complex mixed structure (1,000 users with nested data) conversion time: {:?}",
        duration
    );

    // Should complete in reasonable time (< 1 second for complex structure)
    assert!(
        duration.as_secs() < 1,
        "Conversion took too long: {:?}",
        duration
    );
}

#[test]
fn test_nested_arrays_performance() {
    let config = ConversionConfig::default();

    // Create a structure with nested arrays (matrix-like)
    let mut matrix = Vec::new();
    for i in 0..100 {
        let mut row = Vec::new();
        for j in 0..100 {
            row.push(json!(i * 100 + j));
        }
        matrix.push(json!(row));
    }

    let json = json!(matrix);
    let source = JsonSource::Value(json);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    let result = convert_json_to_toon(&parsed, &config);
    let duration = start.elapsed();

    assert!(result.is_ok());
    println!(
        "Nested arrays (100x100 matrix) conversion time: {:?}",
        duration
    );

    // Should complete quickly (< 100ms)
    assert!(
        duration.as_millis() < 100,
        "Conversion took too long: {:?}",
        duration
    );
}

#[test]
fn test_string_heavy_structure_performance() {
    let config = ConversionConfig::default();

    // Create a structure with many long strings
    let mut items = Vec::new();
    for i in 0..1000 {
        items.push(json!({
            "id": i,
            "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. ".repeat(10),
            "content": "This is a long content field with lots of text data. ".repeat(20),
            "tags": vec!["tag1", "tag2", "tag3", "tag4", "tag5"]
        }));
    }

    let json = json!(items);
    let source = JsonSource::Value(json);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    let result = convert_json_to_toon(&parsed, &config);
    let duration = start.elapsed();

    assert!(result.is_ok());
    println!(
        "String-heavy structure (1,000 items with long strings) conversion time: {:?}",
        duration
    );

    // Should complete in reasonable time (< 500ms)
    assert!(
        duration.as_millis() < 500,
        "Conversion took too long: {:?}",
        duration
    );
}

#[test]
fn test_uniform_array_tabular_performance() {
    let config = ConversionConfig::default();

    // Create a large uniform array (should use tabular format)
    let mut users = Vec::new();
    for i in 0..5000 {
        users.push(json!({
            "id": i,
            "name": format!("User{}", i),
            "age": 20 + (i % 60),
            "score": (i * 17) % 100
        }));
    }

    let json = json!(users);
    let source = JsonSource::Value(json);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    let result = convert_json_to_toon(&parsed, &config);
    let duration = start.elapsed();

    assert!(result.is_ok());
    let output = result.unwrap();

    println!(
        "Uniform array tabular (5,000 rows) conversion time: {:?}",
        duration
    );

    // Tabular format should be efficient (< 300ms)
    assert!(
        duration.as_millis() < 300,
        "Conversion took too long: {:?}",
        duration
    );

    // Verify tabular format was used (should have schema declaration)
    assert!(output.content.contains("[5000"));
}

#[test]
fn test_memory_efficiency_large_structure() {
    let config = ConversionConfig::default();

    // Create a moderately large structure
    let items: Vec<_> = (0..5000)
        .map(|i| {
            json!({
                "id": i,
                "data": {
                    "values": vec![i, i+1, i+2, i+3, i+4],
                    "metadata": {"index": i, "active": true}
                }
            })
        })
        .collect();

    let json = json!(items);
    let source = JsonSource::Value(json);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    let result = convert_json_to_toon(&parsed, &config);
    let duration = start.elapsed();

    assert!(result.is_ok());
    let output = result.unwrap();

    println!(
        "Large structure (5,000 nested objects) conversion time: {:?}",
        duration
    );
    println!("Output size: {} bytes", output.content.len());

    // Should complete efficiently (< 400ms)
    assert!(
        duration.as_millis() < 400,
        "Conversion took too long: {:?}",
        duration
    );

    // Verify statistics were tracked
    if let Some(stats) = output.statistics {
        assert!(stats.elements_processed > 0);
        println!("Elements processed: {}", stats.elements_processed);
    }
}

#[test]
fn test_pathological_nesting_performance() {
    let config = ConversionConfig::default();

    // Create a structure that alternates between objects and arrays
    let mut json = json!([1, 2, 3]);
    for i in 0..30 {
        if i % 2 == 0 {
            json = json!({"data": json, "level": i});
        } else {
            json = json!([json, {"index": i}]);
        }
    }

    let source = JsonSource::Value(json);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    let result = convert_json_to_toon(&parsed, &config);
    let duration = start.elapsed();

    assert!(result.is_ok());
    println!(
        "Pathological nesting (30 levels, alternating types) conversion time: {:?}",
        duration
    );

    // Should handle complex nesting (< 50ms)
    assert!(
        duration.as_millis() < 50,
        "Conversion took too long: {:?}",
        duration
    );
}

#[test]
fn test_comparison_simple_vs_complex() {
    let config = ConversionConfig::default();

    // Simple structure
    let simple = json!({"name": "Alice", "age": 30});
    let source = JsonSource::Value(simple);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    convert_json_to_toon(&parsed, &config).unwrap();
    let simple_time = start.elapsed();

    // Complex structure
    let complex = json!({
        "users": (0..100).map(|i| json!({
            "id": i,
            "profile": {
                "data": vec![1, 2, 3, 4, 5],
                "nested": {"level": i}
            }
        })).collect::<Vec<_>>()
    });

    let source = JsonSource::Value(complex);
    let parsed = source.parse().unwrap();

    let start = Instant::now();
    convert_json_to_toon(&parsed, &config).unwrap();
    let complex_time = start.elapsed();

    println!("Simple structure time: {:?}", simple_time);
    println!("Complex structure time: {:?}", complex_time);
    println!(
        "Complexity ratio: {:.2}x",
        complex_time.as_nanos() as f64 / simple_time.as_nanos() as f64
    );

    // Complex should be slower but not exponentially (< 100x)
    let ratio = complex_time.as_nanos() as f64 / simple_time.as_nanos() as f64;
    assert!(
        ratio < 100.0,
        "Performance degradation too severe: {:.2}x",
        ratio
    );
}