summaryrefslogtreecommitdiff
path: root/lib/spack/spack/test/container/singularity.py
blob: 63f06657dc889444bcf11c1e9566787c3f24b6d3 (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
# Copyright 2013-2024 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 pytest

import spack.container.writers as writers


@pytest.fixture
def singularity_configuration(minimal_configuration):
    minimal_configuration["spack"]["container"]["format"] = "singularity"
    return minimal_configuration


def test_ensure_render_works(default_config, singularity_configuration):
    container_config = singularity_configuration["spack"]["container"]
    assert container_config["format"] == "singularity"
    # Here we just want to ensure that nothing is raised
    writer = writers.create(singularity_configuration)
    writer()


@pytest.mark.parametrize(
    "properties,expected",
    [
        (
            {"runscript": "/opt/view/bin/h5ls"},
            {"runscript": "/opt/view/bin/h5ls", "startscript": "", "test": "", "help": ""},
        )
    ],
)
def test_singularity_specific_properties(properties, expected, singularity_configuration):
    # Set the property in the configuration
    container_config = singularity_configuration["spack"]["container"]
    for name, value in properties.items():
        container_config.setdefault("singularity", {})[name] = value

    # Assert the properties return the expected values
    writer = writers.create(singularity_configuration)
    for name, value in expected.items():
        assert getattr(writer, name) == value


@pytest.mark.regression("34629,18030")
def test_not_stripping_all_symbols(singularity_configuration):
    """Tests that we are not stripping all symbols, so that libraries can still be
    used for linking.
    """
    singularity_configuration["spack"]["container"]["strip"] = True
    content = writers.create(singularity_configuration)()
    assert "xargs strip" in content
    assert "xargs strip -s" not in content