Source code for spack.test.cmd.license

# Copyright 2013-2022 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.path
import re
import sys

import pytest

from llnl.util.filesystem import mkdirp, touch

import spack.cmd.license
import spack.paths
from spack.main import SpackCommand

license = SpackCommand('license')

pytestmark = pytest.mark.skipif(sys.platform == "win32",
                                reason="does not run on windows")


[docs]def test_list_files(): files = license('list-files').strip().split('\n') assert all(f.startswith(spack.paths.prefix) for f in files) assert os.path.join(spack.paths.bin_path, 'spack') in files assert os.path.abspath(__file__) in files
[docs]def test_verify(tmpdir): source_dir = tmpdir.join('lib', 'spack', 'spack') mkdirp(str(source_dir)) no_header = source_dir.join('no_header.py') touch(str(no_header)) lgpl_header = source_dir.join('lgpl_header.py') with lgpl_header.open('w') as f: f.write("""\ # Copyright 2013-2022 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: LGPL-2.1-only """) old_lgpl_header = source_dir.join('old_lgpl_header.py') with old_lgpl_header.open('w') as f: f.write("""\ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License (as # published by the Free Software Foundation) version 2.1, February 1999. """) correct_header = source_dir.join('correct_header.py') with correct_header.open('w') as f: f.write("""\ # Copyright 2013-2022 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) """) out = license('--root', str(tmpdir), 'verify', fail_on_error=False) assert str(no_header) in out assert str(lgpl_header) in out assert str(old_lgpl_header) in out assert str(correct_header) not in out assert '3 improperly licensed files' in out assert re.search(r'files not containing expected license:\s*1', out) assert re.search(r'files with wrong SPDX-License-Identifier:\s*1', out) assert re.search(r'files with old license header:\s*1', out) assert license.returncode == 1