depyler-core 3.19.2

Core transpilation engine for the Depyler Python-to-Rust transpiler
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
//! TDD Tests for Class Instance Methods (DEPYLER-0111 Phase 2)
//!
//! Phase 2: Instance methods on classes
//! Python: def method(self, ...) → Rust: fn method(&self, ...) or fn method(&mut self, ...)
//!
//! Test Coverage:
//! 1. Simple instance method returning value
//! 2. Instance method accessing self fields
//! 3. Instance method modifying self (needs &mut self)
//! 4. Instance method with parameters
//! 5. Instance method calling another instance method
//! 6. Multiple instance methods
//! 7. Instance method with return type annotation
//! 8. Instance method with no return (-> ())
//! 9. Chained method calls (fluent interface)
//! 10. Instance method with default parameters
//! 11. Static-like method (no self usage)
//! 12. Instance method returning self reference

use depyler_core::DepylerPipeline;

#[test]
fn test_simple_instance_method() {
    let python = r#"
class Counter:
    def __init__(self, value: int):
        self.value = value

    def get_value(self) -> int:
        return self.value
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    // Should have impl block with method
    assert!(
        rust_code.contains("impl Counter"),
        "Should have impl Counter block.\nGot:\n{}",
        rust_code
    );

    // Should have get_value method
    assert!(
        rust_code.contains("fn get_value"),
        "Should have get_value method.\nGot:\n{}",
        rust_code
    );

    // Should take &self parameter
    let has_self_ref = rust_code.contains("&self") || rust_code.contains("& self");
    assert!(has_self_ref, "Method should take &self parameter.\nGot:\n{}", rust_code);
}

#[test]
fn test_instance_method_accessing_fields() {
    let python = r#"
class Rectangle:
    def __init__(self, width: int, height: int):
        self.width = width
        self.height = height

    def area(self) -> int:
        return self.width * self.height
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("fn area"),
        "Should have area method.\nGot:\n{}",
        rust_code
    );

    // Should access self.width and self.height
    let has_width = rust_code.contains("self.width") || rust_code.contains("self .width");
    let has_height = rust_code.contains("self.height") || rust_code.contains("self .height");
    assert!(has_width && has_height, "Should access self.width and self.height.\nGot:\n{}", rust_code);
}

#[test]
fn test_instance_method_modifying_self() {
    let python = r#"
class Counter:
    def __init__(self, value: int):
        self.value = value

    def increment(self) -> None:
        self.value = self.value + 1
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("fn increment"),
        "Should have increment method.\nGot:\n{}",
        rust_code
    );

    // Should take &mut self since it modifies fields
    let has_mut_self = rust_code.contains("&mut self") || rust_code.contains("& mut self");
    assert!(has_mut_self, "Mutating method should take &mut self.\nGot:\n{}", rust_code);
}

#[test]
fn test_instance_method_with_parameters() {
    let python = r#"
class Calculator:
    def __init__(self, initial: int):
        self.value = initial

    def add(self, amount: int) -> int:
        return self.value + amount
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("fn add"),
        "Should have add method.\nGot:\n{}",
        rust_code
    );

    // Should have amount parameter
    assert!(
        rust_code.contains("amount"),
        "Should have amount parameter.\nGot:\n{}",
        rust_code
    );
}

#[test]
fn test_instance_method_calling_another_method() {
    let python = r#"
class Circle:
    def __init__(self, radius: float):
        self.radius = radius

    def diameter(self) -> float:
        return self.radius * 2.0

    def circumference(self) -> float:
        return self.diameter() * 3.14159
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("fn diameter"),
        "Should have diameter method.\nGot:\n{}",
        rust_code
    );

    assert!(
        rust_code.contains("fn circumference"),
        "Should have circumference method.\nGot:\n{}",
        rust_code
    );

    // Should call self.diameter()
    let calls_diameter = rust_code.contains("self.diameter()") || rust_code.contains("self .diameter");
    assert!(calls_diameter, "Should call self.diameter().\nGot:\n{}", rust_code);
}

#[test]
fn test_multiple_instance_methods() {
    let python = r#"
class BankAccount:
    def __init__(self, balance: int):
        self.balance = balance

    def deposit(self, amount: int) -> None:
        self.balance = self.balance + amount

    def withdraw(self, amount: int) -> None:
        self.balance = self.balance - amount

    def get_balance(self) -> int:
        return self.balance
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("fn deposit"),
        "Should have deposit method.\nGot:\n{}",
        rust_code
    );

    assert!(
        rust_code.contains("fn withdraw"),
        "Should have withdraw method.\nGot:\n{}",
        rust_code
    );

    assert!(
        rust_code.contains("fn get_balance"),
        "Should have get_balance method.\nGot:\n{}",
        rust_code
    );
}

#[test]
fn test_instance_method_with_return_annotation() {
    let python = r#"
class StringHolder:
    def __init__(self, text: str):
        self.text = text

    def get_length(self) -> int:
        return len(self.text)
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("fn get_length"),
        "Should have get_length method.\nGot:\n{}",
        rust_code
    );

    // Should have return type (i32, i64, usize, or similar)
    let has_return_type = rust_code.contains("-> i32") ||
                          rust_code.contains("-> i64") ||
                          rust_code.contains("-> usize");
    assert!(has_return_type, "Should have return type annotation.\nGot:\n{}", rust_code);
}

#[test]
fn test_instance_method_no_return() {
    let python = r#"
class Logger:
    def __init__(self, prefix: str):
        self.prefix = prefix

    def log(self, message: str) -> None:
        print(self.prefix + message)
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("fn log"),
        "Should have log method.\nGot:\n{}",
        rust_code
    );

    // Methods with None return might have -> () or no return type
    // Both are acceptable
}

#[test]
fn test_method_call_on_instance() {
    let python = r#"
class Point:
    def __init__(self, x: int, y: int):
        self.x = x
        self.y = y

    def distance_from_origin(self) -> float:
        return (self.x * self.x + self.y * self.y) ** 0.5

def test_distance() -> float:
    p = Point(3, 4)
    return p.distance_from_origin()
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    // Should call method on instance (flexible about whitespace)
    let calls_method = rust_code.contains("p.distance_from_origin") &&
                       rust_code.contains("()");
    assert!(calls_method, "Should call p.distance_from_origin().\nGot:\n{}", rust_code);
}

#[test]
fn test_chained_method_calls() {
    let python = r#"
class Builder:
    def __init__(self, value: int):
        self.value = value

    def add(self, x: int) -> int:
        return self.value + x

    def multiply(self, x: int) -> int:
        return self.value * x

def compute() -> int:
    b = Builder(5)
    result = b.add(3)
    result = result + b.multiply(2)
    return result
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("fn add"),
        "Should have add method.\nGot:\n{}",
        rust_code
    );

    assert!(
        rust_code.contains("fn multiply"),
        "Should have multiply method.\nGot:\n{}",
        rust_code
    );
}

#[test]
fn test_instance_method_with_default_parameter() {
    let python = r#"
class Formatter:
    def __init__(self, prefix: str):
        self.prefix = prefix

    def format(self, text: str, suffix: str = "!") -> str:
        return self.prefix + text + suffix
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("fn format"),
        "Should have format method.\nGot:\n{}",
        rust_code
    );

    // Should have text and suffix parameters
    assert!(
        rust_code.contains("text") && rust_code.contains("suffix"),
        "Should have text and suffix parameters.\nGot:\n{}",
        rust_code
    );
}

#[test]
fn test_method_integration_with_functions() {
    let python = r#"
class Temperature:
    def __init__(self, celsius: float):
        self.celsius = celsius

    def to_fahrenheit(self) -> float:
        return self.celsius * 9.0 / 5.0 + 32.0

def convert_temperature(c: float) -> float:
    temp = Temperature(c)
    return temp.to_fahrenheit()
"#;

    let pipeline = DepylerPipeline::new();
    let result = pipeline.transpile(python);
    assert!(result.is_ok(), "Transpilation failed: {:?}", result.as_ref().err());

    let rust_code = result.unwrap();

    assert!(
        rust_code.contains("struct Temperature"),
        "Should have Temperature struct.\nGot:\n{}",
        rust_code
    );

    assert!(
        rust_code.contains("fn to_fahrenheit"),
        "Should have to_fahrenheit method.\nGot:\n{}",
        rust_code
    );

    assert!(
        rust_code.contains("fn convert_temperature"),
        "Should have convert_temperature function.\nGot:\n{}",
        rust_code
    );
}