summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/trivial-smoke-test/package.py
blob: 694d682cff4d7dcdd8c3ad26d68948643620d1b1 (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
# 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)

from spack.package import *


class TrivialSmokeTest(Package):
    """This package is a stub with trivial smoke test features."""

    homepage = "http://www.example.com/trivial_test"
    url = "http://www.unit-test-should-replace-this-url/trivial_test-1.0.tar.gz"

    version("1.0", md5="0123456789abcdef0123456789abcdef")

    test_source_filename = "cached_file.in"

    def install(self, spec, prefix):
        pass

    @run_before("install")
    def create_extra_test_source(self):
        mkdirp(self.install_test_root)
        touch(join_path(self.install_test_root, self.test_source_filename))

    @run_after("install")
    def copy_test_sources(self):
        self.cache_extra_test_sources([self.test_source_filename])