llmcc-python 0.2.20

llmcc: llm context compiler
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
use llmcc_core::context::CompileCtxt;
use llmcc_python::{
    build_llmcc_ir, collect_symbols, CollectionResult, ImportDescriptor, LangPython,
    PythonClassDescriptor, PythonFunctionDescriptor, VariableDescriptor,
};

fn collect_from_source(source: &str) -> CollectionResult {
    let sources = vec![source.as_bytes().to_vec()];
    let cc = CompileCtxt::from_sources::<LangPython>(&sources);
    let unit = cc.compile_unit(0);
    build_llmcc_ir::<LangPython>(&cc).unwrap();
    let globals = cc.create_globals();
    collect_symbols(unit, globals)
}

fn expect_function<'a>(
    collection: &'a CollectionResult,
    name: &str,
) -> &'a PythonFunctionDescriptor {
    collection
        .functions
        .iter()
        .find(|descriptor| descriptor.name == name)
        .unwrap_or_else(|| panic!("Function '{name}' should be found in collection"))
}

fn expect_class<'a>(collection: &'a CollectionResult, name: &str) -> &'a PythonClassDescriptor {
    collection
        .classes
        .iter()
        .find(|descriptor| descriptor.name == name)
        .unwrap_or_else(|| panic!("Class '{name}' should be found in collection"))
}

#[allow(dead_code)]
fn expect_variable<'a>(collection: &'a CollectionResult, name: &str) -> &'a VariableDescriptor {
    collection
        .variables
        .iter()
        .find(|descriptor| descriptor.name == name)
        .unwrap_or_else(|| panic!("Variable '{name}' should be found in collection"))
}

fn expect_import<'a>(collection: &'a CollectionResult, module: &str) -> &'a ImportDescriptor {
    collection
        .imports
        .iter()
        .find(|descriptor| descriptor.module == module)
        .unwrap_or_else(|| panic!("Import '{module}' should be found in collection"))
}

#[test]
fn collects_simple_function() {
    let source = r#"
def foo():
    pass
"#;
    let result = collect_from_source(source);

    let func = expect_function(&result, "foo");
    assert!(!func.name.is_empty(), "Function name should not be empty");
}

#[test]
fn collects_function_with_parameters() {
    let source = r#"
def greet(name, age=25):
    pass
"#;
    let result = collect_from_source(source);

    let func = expect_function(&result, "greet");
    assert!(!func.name.is_empty(), "Function name should not be empty");
    assert!(
        !func.parameters.is_empty(),
        "Function should have parameters"
    );
    assert!(
        func.parameters
            .iter()
            .all(|parameter| !parameter.name.is_empty()),
        "Parameter names should not be empty",
    );
}

#[test]
fn collects_function_with_return_type_hint() {
    let source = r#"
def get_value() -> int:
    return 42
"#;
    let result = collect_from_source(source);

    let func = expect_function(&result, "get_value");
    let return_type = func
        .return_type
        .as_ref()
        .expect("Return type should be present");
    assert!(!return_type.is_empty(), "Return type should not be empty");
}

#[test]
fn collects_multiple_functions() {
    let source = r#"
def func_one():
    pass

def func_two():
    pass
"#;
    let result = collect_from_source(source);

    // Should collect valid function descriptors
    assert!(
        result
            .functions
            .iter()
            .all(|descriptor| !descriptor.name.is_empty()),
        "Collected function names should not be empty",
    );
}

#[test]
fn collects_simple_class() {
    let source = r#"
class MyClass:
    pass
"#;
    let result = collect_from_source(source);

    let class = expect_class(&result, "MyClass");
    assert!(!class.name.is_empty(), "Class name should not be empty");
}

#[test]
fn collects_class_with_methods() {
    let source = r#"
class Calculator:
    def add(self, x, y):
        pass
    def subtract(self, x, y):
        pass
"#;
    let result = collect_from_source(source);

    let class = expect_class(&result, "Calculator");
    assert!(!class.methods.is_empty(), "Class should have methods");
    assert!(
        class.methods.iter().all(|method| !method.is_empty()),
        "Method names should not be empty",
    );
}

#[test]
fn collects_class_with_inheritance() {
    let source = r#"
class Base:
    pass

class Derived(Base):
    pass
"#;
    let result = collect_from_source(source);

    let derived = expect_class(&result, "Derived");
    assert!(
        !derived.base_classes.is_empty(),
        "Class should have base classes"
    );
    assert!(
        derived
            .base_classes
            .iter()
            .all(|base_class| !base_class.is_empty()),
        "Base class names should not be empty",
    );
}

#[test]
fn collects_class_with_fields() {
    let source = r#"
class Person:
    def __init__(self):
        self.name = ""
        self.age = 0
"#;
    let result = collect_from_source(source);

    let class = expect_class(&result, "Person");
    assert!(!class.fields.is_empty(), "Class should have fields");
    assert!(
        class.fields.iter().all(|field| !field.name.is_empty()),
        "Field names should not be empty",
    );
}

#[test]
fn collects_global_variables() {
    let source = r#"
x = 42
y = 'hello'
z = [1, 2, 3]
"#;
    let result = collect_from_source(source);

    // All collected variables should have valid structure
    assert!(
        result
            .variables
            .iter()
            .all(|variable| !variable.name.is_empty()),
        "Variable names should not be empty",
    );
}

#[test]
fn collects_simple_import() {
    let source = r#"
import os
"#;
    let result = collect_from_source(source);

    let import = expect_import(&result, "os");
    assert!(!import.module.is_empty(), "Module name should not be empty");
}

#[test]
fn collects_multiple_imports() {
    let source = r#"
import os
import sys
import json
"#;
    let result = collect_from_source(source);

    // All collected imports should have valid structure
    assert!(
        result
            .imports
            .iter()
            .all(|import| !import.module.is_empty()),
        "Module name should not be empty",
    );
}

#[test]
fn collects_decorated_function() {
    let source = r#"
@decorator
def func():
    pass
"#;
    let result = collect_from_source(source);

    let func = expect_function(&result, "func");
    assert!(
        !func.decorators.is_empty(),
        "Function should have decorators"
    );
    assert!(
        func.decorators
            .iter()
            .all(|decorator| !decorator.is_empty()),
        "Decorator names should not be empty",
    );
}

#[test]
fn collects_function_with_type_hints() {
    let source = r#"
def typed_func(name: str, age: int) -> bool:
    pass
"#;
    let result = collect_from_source(source);

    let func = expect_function(&result, "typed_func");
    assert!(
        !func.parameters.is_empty(),
        "Function should have parameters"
    );
    assert!(
        func.parameters
            .iter()
            .all(|parameter| !parameter.name.is_empty()),
        "Parameter names should not be empty",
    );
    let return_type = func
        .return_type
        .as_ref()
        .expect("Return type should be present");
    assert!(!return_type.is_empty(), "Return type should not be empty");
}

#[test]
fn collects_empty_module() {
    let source = r#"
# Just a comment
"#;
    let result = collect_from_source(source);

    // Empty module should have empty collections
    assert!(
        result.functions.is_empty(),
        "Empty module should have no functions"
    );
    assert!(
        result.classes.is_empty(),
        "Empty module should have no classes"
    );
}

#[test]
fn collects_mixed_definitions() {
    let source = r#"
def function_one():
    pass

class ClassOne:
    pass

def function_two():
    pass

x = 10
"#;
    let result = collect_from_source(source);

    // Collection should have valid structure for all collected items
    assert!(
        result
            .functions
            .iter()
            .all(|descriptor| !descriptor.name.is_empty()),
        "Function names should not be empty",
    );
    assert!(
        result
            .classes
            .iter()
            .all(|descriptor| !descriptor.name.is_empty()),
        "Class names should not be empty",
    );
    assert!(
        result
            .variables
            .iter()
            .all(|descriptor| !descriptor.name.is_empty()),
        "Variable names should not be empty",
    );
}

#[test]
fn collects_class_with_init_method() {
    let source = r#"
class MyClass:
    def __init__(self, name):
        self.name = name

    def display(self):
        pass
"#;
    let result = collect_from_source(source);

    let class = expect_class(&result, "MyClass");
    assert!(!class.methods.is_empty(), "Class should have methods");
    assert!(
        class.methods.iter().all(|method| !method.is_empty()),
        "Method names should not be empty",
    );
}

#[test]
fn collects_nested_functions() {
    let source = r#"
def outer():
    def inner():
        pass
    pass
"#;
    let result = collect_from_source(source);

    // Should handle nested functions without panic
    assert!(
        result
            .functions
            .iter()
            .all(|descriptor| !descriptor.name.is_empty()),
        "Function names should not be empty",
    );
}

#[test]
fn collects_class_with_multiple_inheritance() {
    let source = r#"
class Base1:
    pass

class Base2:
    pass

class Derived(Base1, Base2):
    pass
"#;
    let result = collect_from_source(source);

    let derived = expect_class(&result, "Derived");
    assert!(
        !derived.base_classes.is_empty(),
        "Class should have base classes"
    );
    assert!(
        derived
            .base_classes
            .iter()
            .all(|base_class| !base_class.is_empty()),
        "Base class names should not be empty",
    );
}

#[test]
fn collects_all_descriptor_types() {
    let source = r#"
def my_function():
    pass

class MyClass:
    pass

x = 100
import os
"#;
    let result = collect_from_source(source);

    // All collected items should have valid structure
    assert!(
        result
            .functions
            .iter()
            .all(|descriptor| !descriptor.name.is_empty()),
        "Function names should not be empty",
    );
    assert!(
        result
            .classes
            .iter()
            .all(|descriptor| !descriptor.name.is_empty()),
        "Class names should not be empty",
    );
    assert!(
        result
            .variables
            .iter()
            .all(|descriptor| !descriptor.name.is_empty()),
        "Variable names should not be empty",
    );
    assert!(
        result
            .imports
            .iter()
            .all(|descriptor| !descriptor.module.is_empty()),
        "Module names should not be empty",
    );
}

#[test]
fn function_parameters_structure_valid() {
    let source = r#"
def func(a, b=10, *args, **kwargs):
    pass
"#;
    let result = collect_from_source(source);

    let func = expect_function(&result, "func");
    assert!(
        !func.parameters.is_empty(),
        "Function should have parameters"
    );
    assert!(
        func.parameters
            .iter()
            .all(|parameter| !parameter.name.is_empty()),
        "Parameter name should not be empty",
    );
}

#[test]
fn class_structure_is_consistent() {
    let source = r#"
class TestClass:
    def method1(self):
        pass

    def method2(self):
        pass
"#;
    let result = collect_from_source(source);

    let class = expect_class(&result, "TestClass");
    assert!(!class.methods.is_empty(), "Class should have methods");
    assert!(
        class.methods.iter().all(|method| !method.is_empty()),
        "Method name should not be empty",
    );
}