mirror of
https://github.com/mvt-project/mvt.git
synced 2026-07-06 13:07:55 +02:00
Continuing enforcement of line length and simplifying date conversions
This commit is contained in:
@@ -15,15 +15,16 @@ from ..utils import get_ios_backup_folder
|
||||
class TestDatausageModule:
|
||||
|
||||
def test_datausage(self):
|
||||
m = Datausage(target_path=get_ios_backup_folder(), log=logging, results=[])
|
||||
m = Datausage(target_path=get_ios_backup_folder())
|
||||
run_module(m)
|
||||
assert m.results[0]["isodate"][0:19] == "2019-08-27 15:08:09"
|
||||
assert len(m.results) == 42
|
||||
assert len(m.timeline) == 60
|
||||
assert len(m.detected) == 0
|
||||
|
||||
def test_detection(self, indicator_file):
|
||||
m = Datausage(target_path=get_ios_backup_folder(), log=logging, results=[])
|
||||
ind = Indicators(log=logging)
|
||||
m = Datausage(target_path=get_ios_backup_folder())
|
||||
ind = Indicators(log=logging.getLogger())
|
||||
ind.parse_stix2(indicator_file)
|
||||
# Adds a file that exists in the manifest.
|
||||
ind.ioc_collections[0]["processes"].append("CumulativeUsageTracker")
|
||||
|
||||
Reference in New Issue
Block a user