Files
mvt/tests/ios_backup/test_webkit_resource_load_statistics.py
T
2023-02-14 11:51:55 -05:00

25 lines
749 B
Python

# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021-2023 Claudio Guarnieri.
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
import logging
from mvt.common.indicators import Indicators
from mvt.common.module import run_module
from mvt.ios.modules.mixed.webkit_resource_load_statistics import \
WebkitResourceLoadStatistics
from ..utils import get_ios_backup_folder
class TestWebkitResourceLoadStatisticsModule:
def test_webkit(self):
m = WebkitResourceLoadStatistics(target_path=get_ios_backup_folder())
m.is_backup = True
run_module(m)
assert len(m.results) == 2
assert len(m.timeline) == 2
assert len(m.detected) == 0