package jadx.tests.integration.trycatch;
import jadx.core.dex.nodes.ClassNode;
import jadx.core.dex.visitors.DepthTraversal;
import jadx.core.dex.visitors.IDexTreeVisitor;
import jadx.tests.api.IntegrationTest;
import java.util.List;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static jadx.tests.api.utils.JadxMatchers.containsOne;
import static org.junit.Assert.assertThat;
public class TestTryCatchFinally3 extends IntegrationTest {
public static class TestCls {
private static final Logger LOG = LoggerFactory.getLogger(TestCls.class);
public static void process(ClassNode cls, List<IDexTreeVisitor> passes) {
try {
cls.load();
for (IDexTreeVisitor visitor : passes) {
DepthTraversal.visit(visitor, cls);
}
} catch (Exception e) {
LOG.error("Class process exception: {}", cls, e);
} finally {
cls.unload();
}
}
}
@Test
public void test() {
ClassNode cls = getClassNode(TestCls.class);
String code = cls.getCode().toString();
assertThat(code, containsOne("for (IDexTreeVisitor visitor : passes) {"));
assertThat(code, containsOne("} catch (Exception e) {"));
assertThat(code, containsOne("LOG.error(\"Class process exception: {}\", cls, e);"));
assertThat(code, containsOne("} finally {"));
assertThat(code, containsOne("cls.unload();"));
}
}