-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathtest_cli.py
35 lines (25 loc) · 1.03 KB
/
test_cli.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Tests for the command line interface of the reacnetgenerator package."""
import importlib
import subprocess
import sys
from unittest import mock
import pytest
import reacnetgenerator
def test_module_script():
"""Test the module script functionality by verifying the correct output when executed as a module."""
expected_version = reacnetgenerator.__version__
output = subprocess.check_output(
[sys.executable, "-m", "reacnetgenerator", "--version"]
).decode("ascii")
assert output.splitlines()[0] == f"ReacNetGenerator v{expected_version}"
def test_cli():
"""Test reacnetgenerator command."""
subprocess.check_output(["reacnetgenerator", "-h"]).decode("ascii")
@pytest.mark.parametrize("mod_name", ["reacnetgenerator.commandline"])
def test_bench_module_import(benchmark, mod_name):
"""Benchmark the import time."""
@benchmark
def _():
with mock.patch("sys.modules", {}):
importlib.import_module(mod_name, "test_bench_imports")