summaryrefslogtreecommitdiff
path: root/lib/spack/spack/test/cmd/info.py
blob: 9493e1d17fef8bb3f3346cbe1cd226f7ec7ea16f (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

import argparse

import pytest

import spack.cmd.info
from spack.main import SpackCommand

info = SpackCommand("info")


@pytest.fixture(scope="module")
def parser():
    """Returns the parser for the module command"""
    prs = argparse.ArgumentParser()
    spack.cmd.info.setup_parser(prs)
    return prs


@pytest.fixture()
def print_buffer(monkeypatch):
    buffer = []

    def _print(*args, **kwargs):
        buffer.extend(args)

    monkeypatch.setattr(spack.cmd.info.color, "cprint", _print, raising=False)
    return buffer


@pytest.mark.parametrize(
    "pkg", ["openmpi", "trilinos", "boost", "python", "dealii", "xsdk", "gasnet", "warpx"]
)
@pytest.mark.parametrize("extra_args", [[], ["--variants-by-name"]])
def test_it_just_runs(pkg, extra_args):
    info(pkg, *extra_args)


def test_info_noversion(mock_packages, print_buffer):
    """Check that a mock package with no versions outputs None."""
    info("noversion")

    line_iter = iter(print_buffer)
    for line in line_iter:
        if "version" in line:
            has = [desc in line for desc in ["Preferred", "Safe", "Deprecated"]]
            if not any(has):
                continue
        else:
            continue

        assert "None" in next(line_iter).strip()


@pytest.mark.parametrize(
    "pkg_query,expected", [("zlib", "False"), ("gcc", "True (version, variants)")]
)
def test_is_externally_detectable(pkg_query, expected, parser, print_buffer):
    args = parser.parse_args(["--detectable", pkg_query])
    spack.cmd.info.info(parser, args)

    line_iter = iter(print_buffer)
    for line in line_iter:
        if "Externally Detectable" in line:
            is_externally_detectable = next(line_iter).strip()
            assert is_externally_detectable == expected


@pytest.mark.parametrize(
    "pkg_query",
    [
        "hdf5",
        "cloverleaf3d",
        "trilinos",
        "gcc",  # This should ensure --test's c_names processing loop covered
    ],
)
@pytest.mark.parametrize("extra_args", [[], ["--variants-by-name"]])
def test_info_fields(pkg_query, extra_args, parser, print_buffer):
    expected_fields = (
        "Description:",
        "Homepage:",
        "Externally Detectable:",
        "Safe versions:",
        "Variants:",
        "Installation Phases:",
        "Virtual Packages:",
        "Tags:",
        "Licenses:",
    )

    args = parser.parse_args(["--all", pkg_query] + extra_args)
    spack.cmd.info.info(parser, args)

    for text in expected_fields:
        assert any(x for x in print_buffer if text in x)