summaryrefslogtreecommitdiff
path: root/lib/spack/spack/test/cmd/create.py
blob: 089dc8b0c524400e4738db710566e0e7469008b7 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# 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 os

import pytest

import spack.cmd.create
import spack.util.editor
from spack.main import SpackCommand
from spack.url import UndetectableNameError
from spack.util.executable import which

create = SpackCommand("create")


@pytest.mark.parametrize(
    "args,name,expected",
    [
        # Basic package cases
        (["/test-package"], "test-package", [r"TestPackage(Package)", r"def install(self"]),
        (
            ["-n", "test-named-package", "file://example.tar.gz"],
            "test-named-package",
            [r"TestNamedPackage(Package)", r"def install(self"],
        ),
        (["file://example.tar.gz"], "example", [r"Example(Package)", r"def install(self"]),
        (["-n", "test-license"], "test-license", [r'license("UNKNOWN")']),
        # Template-specific cases
        (
            ["-t", "autoreconf", "/test-autoreconf"],
            "test-autoreconf",
            [
                r"TestAutoreconf(AutotoolsPackage)",
                r'depends_on("autoconf',
                r"def autoreconf(self",
                r"def configure_args(self",
            ],
        ),
        (
            ["-t", "autotools", "/test-autotools"],
            "test-autotools",
            [r"TestAutotools(AutotoolsPackage)", r"def configure_args(self"],
        ),
        (
            ["-t", "bazel", "/test-bazel"],
            "test-bazel",
            [r"TestBazel(Package)", r'depends_on("bazel', r"bazel()"],
        ),
        (["-t", "bundle", "/test-bundle"], "test-bundle", [r"TestBundle(BundlePackage)"]),
        (
            ["-t", "cmake", "/test-cmake"],
            "test-cmake",
            [r"TestCmake(CMakePackage)", r"def cmake_args(self"],
        ),
        (
            ["-t", "intel", "/test-intel"],
            "test-intel",
            [r"TestIntel(IntelPackage)", r"setup_environment"],
        ),
        (
            ["-t", "makefile", "/test-makefile"],
            "test-makefile",
            [r"TestMakefile(MakefilePackage)", r"def edit(self", r"makefile"],
        ),
        (
            ["-t", "meson", "/test-meson"],
            "test-meson",
            [r"TestMeson(MesonPackage)", r"def meson_args(self"],
        ),
        (
            ["-t", "octave", "/test-octave"],
            "octave-test-octave",
            [r"OctaveTestOctave(OctavePackage)", r'extends("octave', r'depends_on("octave'],
        ),
        (
            ["-t", "perlbuild", "/test-perlbuild"],
            "perl-test-perlbuild",
            [
                r"PerlTestPerlbuild(PerlPackage)",
                r'depends_on("perl-module-build',
                r"def configure_args(self",
            ],
        ),
        (
            ["-t", "perlmake", "/test-perlmake"],
            "perl-test-perlmake",
            [r"PerlTestPerlmake(PerlPackage)", r'depends_on("perl-', r"def configure_args(self"],
        ),
        (
            ["-t", "python", "/test-python"],
            "py-test-python",
            [r"PyTestPython(PythonPackage)", r'depends_on("py-', r"def config_settings(self"],
        ),
        (
            ["-t", "qmake", "/test-qmake"],
            "test-qmake",
            [r"TestQmake(QMakePackage)", r"def qmake_args(self"],
        ),
        (
            ["-t", "r", "/test-r"],
            "r-test-r",
            [r"RTestR(RPackage)", r'depends_on("r-', r"def configure_args(self"],
        ),
        (
            ["-t", "scons", "/test-scons"],
            "test-scons",
            [r"TestScons(SConsPackage)", r"def build_args(self"],
        ),
        (
            ["-t", "sip", "/test-sip"],
            "py-test-sip",
            [r"PyTestSip(SIPPackage)", r"def configure_args(self"],
        ),
        (["-t", "waf", "/test-waf"], "test-waf", [r"TestWaf(WafPackage)", r"configure_args()"]),
    ],
)
def test_create_template(mock_test_repo, args, name, expected):
    """Test template creation."""
    repo, repodir = mock_test_repo

    create("--skip-editor", *args)

    filename = repo.filename_for_package_name(name)
    assert os.path.exists(filename)

    with open(filename, "r") as package_file:
        content = package_file.read()
        for entry in expected:
            assert entry in content

    black = which("black", required=False)
    if not black:
        pytest.skip("checking blackness of `spack create` output requires black")

    black("--check", "--diff", filename)


@pytest.mark.parametrize(
    "name,expected", [(" ", "name must be provided"), ("bad#name", "name can only contain")]
)
def test_create_template_bad_name(mock_test_repo, name, expected):
    """Test template creation with bad name options."""
    output = create("--skip-editor", "-n", name, fail_on_error=False)
    assert expected in output
    assert create.returncode != 0


def test_build_system_guesser_no_stage():
    """Test build system guesser when stage not provided."""
    guesser = spack.cmd.create.BuildSystemGuesser()

    # Ensure get the expected build system
    with pytest.raises(AttributeError, match="'NoneType' object has no attribute"):
        guesser(None, "/the/url/does/not/matter")


def test_build_system_guesser_octave():
    """
    Test build system guesser for the special case, where the same base URL
    identifies the build system rather than guessing the build system from
    files contained in the archive.
    """
    url, expected = "downloads.sourceforge.net/octave/", "octave"
    guesser = spack.cmd.create.BuildSystemGuesser()

    # Ensure get the expected build system
    guesser(None, url)
    assert guesser.build_system == expected

    # Also ensure get the correct template
    bs = spack.cmd.create.get_build_system(None, url, guesser)
    assert bs == expected


@pytest.mark.parametrize(
    "url,expected", [("testname", "testname"), ("file://example.com/archive.tar.gz", "archive")]
)
def test_get_name_urls(url, expected):
    """Test get_name with different URLs."""
    name = spack.cmd.create.get_name(None, url)
    assert name == expected


def test_get_name_error(monkeypatch, capsys):
    """Test get_name UndetectableNameError exception path."""

    def _parse_name_offset(path, v):
        raise UndetectableNameError(path)

    monkeypatch.setattr(spack.url, "parse_name_offset", _parse_name_offset)

    url = "downloads.sourceforge.net/noapp/"

    with pytest.raises(SystemExit):
        spack.cmd.create.get_name(None, url)
    captured = capsys.readouterr()
    assert "Couldn't guess a name" in str(captured)


def test_no_url():
    """Test creation of package without a URL."""
    create("--skip-editor", "-n", "create-new-package")