mvt/tests/ios/test_tcc.py

32 lines
1.0 KiB
Python
Raw Normal View History

2022-01-18 15:00:03 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021 The MVT Project Authors.
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
2021-12-16 11:50:12 +00:00
import logging
2021-12-16 11:50:12 +00:00
from mvt.common.module import run_module
2022-01-18 15:00:03 +00:00
from mvt.ios.modules.mixed.tcc import TCC
2021-12-16 11:50:12 +00:00
2022-01-07 16:51:21 +00:00
from ..utils import get_backup_folder
2021-12-16 11:50:12 +00:00
2022-01-18 15:00:03 +00:00
2021-12-16 11:50:12 +00:00
class TestManifestModule:
def test_manifest(self):
m = TCC(base_folder=get_backup_folder(), log=logging, results=[])
run_module(m)
assert len(m.results) == 11
assert len(m.timeline) == 11
assert len(m.detected) == 0
assert m.results[0]["service"] == "kTCCServiceUbiquity"
assert m.results[0]["auth_value"] == "allowed"
def test_manifest_2(self):
m = TCC(base_folder=get_backup_folder(), log=logging, results=[])
2021-12-16 11:50:12 +00:00
run_module(m)
assert len(m.results) == 11
assert len(m.timeline) == 11
2021-12-16 11:50:12 +00:00
assert len(m.detected) == 0
assert m.results[0]["service"] == "kTCCServiceUbiquity"
assert m.results[0]["auth_value"] == "allowed"