more bugs 2

This commit is contained in:
2026-06-27 15:35:20 +02:00
parent 7008f162b5
commit 22a0d3f5aa
3 changed files with 97 additions and 7 deletions

View File

@@ -0,0 +1,75 @@
package click.kamil.springstatemachineexporter.analysis.service;
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import static org.assertj.core.api.Assertions.assertThat;
public class SuperMethodBugTest {
@Test
void shouldResolveSuperMethodCorrectly() throws IOException {
String source = """
package com.example;
public class ChildController extends ParentController {
private StateMachine machine;
@Override
public TransitionEnum getEvent() {
return TransitionEnum.STATE_X; // Child returns X
}
public void process() {
// Calls super.getEvent() which returns Y, NOT X!
machine.fire(super.getEvent());
}
}
class ParentController {
public TransitionEnum getEvent() {
return TransitionEnum.STATE_Y; // Parent returns Y
}
}
class StateMachine {
public void fire(TransitionEnum event) {}
}
enum TransitionEnum { STATE_X, STATE_Y }
""";
Path tempDir = Files.createTempDirectory("callgraph_test_super");
Files.writeString(tempDir.resolve("Config.java"), source);
CodebaseContext context = new CodebaseContext();
context.scan(tempDir);
HeuristicCallGraphEngine engine = new HeuristicCallGraphEngine(context);
EntryPoint entryPoint = EntryPoint.builder()
.className("com.example.ChildController")
.methodName("process")
.build();
TriggerPoint trigger = TriggerPoint.builder()
.className("com.example.StateMachine")
.methodName("fire")
.event("event")
.build();
List<CallChain> chains = engine.findChains(List.of(entryPoint), List.of(trigger));
assertThat(chains).hasSize(1);
System.out.println("Poly events from super: " + chains.get(0).getTriggerPoint().getPolymorphicEvents());
// It SHOULD resolve to STATE_Y because we called super.getEvent()
assertThat(chains.get(0).getTriggerPoint().getPolymorphicEvents()).containsExactly("TransitionEnum.STATE_Y");
}
}