summaryrefslogtreecommitdiff
path: root/lib/spack/spack/test/build_distribution.py
blob: 2f68ba9caeba982bd21daad4c53991a00a74f6d8 (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
# 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 os.path

import pytest

import spack.binary_distribution as bd
import spack.main
import spack.spec
import spack.util.url

install = spack.main.SpackCommand("install")

pytestmark = pytest.mark.not_on_windows("does not run on windows")


def test_build_tarball_overwrite(install_mockery, mock_fetch, monkeypatch, tmpdir):
    with tmpdir.as_cwd():
        spec = spack.spec.Spec("trivial-install-test-package").concretized()
        install(str(spec))

        # Runs fine the first time, throws the second time
        out_url = spack.util.url.path_to_file_url(str(tmpdir))
        bd.push_or_raise(spec, out_url, bd.PushOptions(unsigned=True))
        with pytest.raises(bd.NoOverwriteException):
            bd.push_or_raise(spec, out_url, bd.PushOptions(unsigned=True))

        # Should work fine with force=True
        bd.push_or_raise(spec, out_url, bd.PushOptions(force=True, unsigned=True))

        # Remove the tarball and try again.
        # This must *also* throw, because of the existing .spec.json file
        os.remove(
            os.path.join(
                bd.build_cache_prefix("."),
                bd.tarball_directory_name(spec),
                bd.tarball_name(spec, ".spack"),
            )
        )

        with pytest.raises(bd.NoOverwriteException):
            bd.push_or_raise(spec, out_url, bd.PushOptions(unsigned=True))