test scripts and fix show-features

This commit is contained in:
Moritz Raabe
2021-06-28 13:18:30 +02:00
parent 02658d6962
commit 5c8a4aafd7
5 changed files with 67 additions and 5 deletions

57
tests/test_scripts.py Normal file
View File

@@ -0,0 +1,57 @@
# Copyright (C) 2020 FireEye, Inc. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at: [package root]/LICENSE.txt
# Unless required by applicable law or agreed to in writing, software distributed under the License
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and limitations under the License.
import os
import sys
import subprocess
import pytest
from fixtures import CD, get_extractor, get_data_path_by_name
def get_script_path(s):
return os.path.join(CD, "..", "scripts", s)
def get_file_path():
return get_extractor(get_data_path_by_name("9324d...")).path
def get_rules_path():
return os.path.join(CD, "..", "rules")
def get_rule_path():
return os.path.join(get_rules_path(), "lib", "allocate-memory.yml")
@pytest.mark.parametrize(
"script,args",
[
pytest.param(
"show-features.py",
[get_file_path()],
),
pytest.param("bulk-process.py", [get_file_path()]),
pytest.param("capa2yara.py", [get_rules_path()]),
pytest.param("capafmt.py", [get_rule_path()]),
# not testing lint.py as it runs regularly anyway
pytest.param("match-function-id.py", [get_file_path()]),
pytest.param("show-capabilities-by-function.py", [get_file_path()]),
pytest.param("show-features.py", [get_file_path()]),
pytest.param("show-features.py", ["-F", "0x407970", get_file_path()]),
],
)
def test_scripts(script, args):
script_path = get_script_path(script)
p = run_program(script_path, args)
assert p.returncode == 0
def run_program(script_path, args):
return subprocess.run([sys.executable] + [script_path] + args)