mvt/tests/ios_backup/test_backup_info.py

21 lines
600 B
Python
Raw Normal View History

2022-01-18 15:00:03 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021-2022 Claudio Guarnieri.
2022-01-18 15:00:03 +00:00
# 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.backup.backup_info import BackupInfo
2021-12-16 11:50:12 +00:00
from ..utils import get_ios_backup_folder
2021-12-16 11:50:12 +00:00
class TestBackupInfoModule:
2022-06-17 15:07:36 +00:00
2021-12-16 11:50:12 +00:00
def test_manifest(self):
2022-06-16 13:24:43 +00:00
m = BackupInfo(target_path=get_ios_backup_folder(), log=logging)
2021-12-16 11:50:12 +00:00
run_module(m)
assert m.results["Build Version"] == "18C66"
2022-01-18 15:33:13 +00:00
assert m.results["IMEI"] == "42"