rasta/rasta_exp/tester/anadroid_tester.py
Jean-Marie Mineau cd1e91bb99
first commit
2023-11-16 14:30:24 +01:00

34 lines
957 B
Python

from .abstract_tester import abstract_tester
import utils
import error_collector as errors
import datetime
from typing import Type
from pathlib import Path
class anadroid_tester(abstract_tester):
EXPECTED_ERROR_TYPES: list = [
errors.JavaError,
errors.PythonError,
]
TOOL_NAME = "anadroid"
def __init__(self):
super().__init__()
@classmethod
def check_success(cls, path: Path, apk_filename: str):
stdout = path / "stdout"
# Apktool failled
if not (
path / utils.removesuffix(apk_filename, ".apk") / "apktool.yml"
).exists():
return False
with stdout.open("r", errors="replace") as f:
for line in f:
if (
"ee3d6c7015b83b3dc84b21a2e79506175f07c00ecf03e7b3b8edea4e445618bd: END OF ANALYSIS."
in line
):
return True
return False