mvt/tests/android_androidqf/test_settings.py

20 lines
655 B
Python
Raw Normal View History

2022-10-11 11:07:24 +00:00
# Mobile Verification Toolkit (MVT) - Private
2023-02-08 19:18:16 +00:00
# Copyright (c) 2021-2023 Claudio Guarnieri.
2022-10-11 11:07:24 +00:00
# This file is part of MVT Private and its content is confidential.
# Please refer to the project maintainers before sharing with others.
from mvt.android.modules.androidqf.settings import Settings
2023-02-14 16:51:55 +00:00
from mvt.common.module import run_module
2022-10-11 11:07:24 +00:00
from ..utils import get_android_androidqf
class TestSettingsModule:
def test_parsing(self):
data_path = get_android_androidqf()
m = Settings(target_path=data_path)
run_module(m)
assert len(m.results) == 1
assert "random" in m.results.keys()
assert len(m.detected) == 0