Skip to content
Snippets Groups Projects
tests.py 15.7 KiB
Newer Older
  • Learn to ignore specific revisions
  • Hans Fangohr's avatar
    Hans Fangohr committed
    """Tests for mpsd-software-environment.py."""
    
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
    import shutil
    
    import subprocess
    
    from pathlib import Path
    
    import logging
    
    import datetime
    
    
    mod = importlib.import_module("mpsd-software-environment")
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
    
    
    # set loglevel to debug - useful for understanding problems.
    # (if the tests pass, pytest doesn't show any output)
    
    mod.set_up_logging(loglevel="debug", filename="tests.log")
    logging.debug(f"We have set up logging from {__file__}")
    
    Hans Fangohr's avatar
    Hans Fangohr committed
    
    
    def create_mock_git_repository(target_directory, create_directory=True):
        """
        Create a git repository in the directory `target_directory`.
    
        Arguments
        ---------
        target_directory : pathlib.Path
          - path at which the root of the repository should be located (i.e. `.git` folder)
    
        create_directory : bool
          - create `target_directory` and parent directories if True
    
        """
        # create directory first
        if create_directory:
            target_directory.mkdir(parents=True)
    
        # then create git repository:
        with mod.os_chdir(str(target_directory)):
            subprocess.run("git init .", shell=True, check=True)
            subprocess.run("echo 'fake content' > readme.txt", shell=True, check=True)
            subprocess.run("git add readme.txt", shell=True, check=True)
            subprocess.run("pwd", shell=True)
    
    
            # if email and username are not available (such as on naked test container),
            # git may complain. We set a temporary user for this one commit to work around
            # that.
            user_details = "-c user.name='Tes Ta' -c user.email='tester@some-ci.org'"
    
    Hans Fangohr's avatar
    Hans Fangohr committed
                f'git {user_details} commit -m "first commit" readme.txt',
                shell=True,
                check=True,
    
    def test_os_chdir(tmp_path):
    
        """Test the os_chdir context manager."""
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        # create a temporary directory for testing
    
        temp_dir = tmp_path / "test_os_chdir"
        temp_dir.mkdir()
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        # initial current working directory
        initial_cwd = os.getcwd()
    
        # change to the temporary directory using os_chdir
    
        with mod.os_chdir(str(temp_dir)):
            assert os.getcwd() == str(temp_dir)
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
    
        # current working directory should be back to initial directory
        assert os.getcwd() == initial_cwd
    
    
    def test_run_method(tmp_path):
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        """Run tests for run method."""
    
        run = mod.run
    
        # test a command with options:
        assert run(["date", "+%Y-%m-%d"]).returncode == 0
        assert run("date +%Y-%m-%d", shell=True).returncode == 0
    
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        # tests interacting with the file system
    
        with mod.os_chdir(str(tmp_path)):
            # ensure single string command works
    
    Hans Fangohr's avatar
    Hans Fangohr committed
            assert run(("ls -l"), shell=True).returncode == 0
    
            # test spaces are handled correctly:
    
    Hans Fangohr's avatar
    Hans Fangohr committed
            assert run(["touch", "file1", "file2"]).returncode == 0
    
            assert os.path.exists("file1")
            assert os.path.exists("file2")
            # test output is captured:
            assert (
                b"Hello, world!\n"
                in run(["echo", "Hello, world!"], capture_output=True).stdout
            )
    
        # check exceptions
        with pytest.raises(FileNotFoundError):
            run(["doesnotexistcommand"])
    
        # check error code is checked
        # 1. expect this to parse: return code is non-zero, but we don't check
        run(["ls", "/doesnotexist"]),
        # 2. expect this to fail:
        with pytest.raises(subprocess.CalledProcessError):
            run(["ls", "/doesnotexist"], check=True)
    
    def test_prepare_environment(tmp_path):
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        """Simulate running preparation of environment.
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        Simulate running ./install-software-environment.py --release dev-23a \
          --target-directory /tmp/test_prepare_env
        prepare_env is run when cmd is not specified, we can test cmd='prepare'
        and cmd=None to check both cases
        """
    
        script_dir = tmp_path / "mpsd_opt" / "linux_debian_11"
    
        spack_environments = "spack-environments"
        mpsd_release_to_test = "dev-23a"
        release_base_dir = script_dir / mpsd_release_to_test
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        # check that the test directory does not exist
    
        assert not script_dir.exists()
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
    
    
        # prepare_environment expects to be executed in git repository
        # (mpsd-software-environments). It queries the commit on which we are to
        # log that information. For this to work, we need to execute the command
        # within a directory tree that has a git repository at the same or high
        # level. Let's create one:
    
        create_mock_git_repository(script_dir)
    
    
        # now call the function we want to test
    
        result = mod.prepare_environment(
    
            mpsd_release=mpsd_release_to_test, script_dir=script_dir
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        # check if the directory now is created
    
        assert release_base_dir.exists()
    
        # check for spack-environments directory
    
        assert spack_environments in os.listdir(release_base_dir)
    
    Hans Fangohr's avatar
    Hans Fangohr committed
    
        # check if the git branch is correctly checked out. We expect output such as
        # git_branch_stdout = '* dev-23a\n  develop\n'
        # The entry with the '* ' prefix is the active branch.
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        git_branch_output_raw = subprocess.run(
            f"cd {str(release_base_dir/spack_environments)} && git branch",
            shell=True,
            capture_output=True,
        )
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        git_branch_stdout = git_branch_output_raw.stdout.decode("utf-8")
        assert f"* {mpsd_release_to_test}" in git_branch_stdout
    
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        # check that result is a list and contains atleast ['global','foss2021a-mpi']
    
        assert isinstance(result, list)
        assert "global" in result
        assert "foss2021a-mpi" in result
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
    
    
        # Expect an Exception when wrong mpsd_release is provided
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        with pytest.raises(Exception):
    
            result = mod.prepare_environment(
                mpsd_release="wrong-mpsd-release", script_dir=(script_dir)
            )
    
    
    def test_setup_log_cmd(tmp_path):
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        """Check that log is updated.
    
        Check that logs/install-software-environment.log is updated when the module is run
        """
    
        log_file = "install.log"
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
    
    
        script_dir = tmp_path / "test_prepare_env"
        mpsd_release_to_test = "dev-23a"
        release_base_dir = script_dir / mpsd_release_to_test
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        if os.path.exists(release_base_dir / log_file):
    
            initial_bytes = os.path.getsize(log_file)
        else:
            initial_bytes = 0
    
        # run the prepare_env functionality
    
        create_mock_git_repository(target_directory=script_dir, create_directory=True)
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        mod.prepare_environment(mpsd_release=mpsd_release_to_test, script_dir=(script_dir))
    
    
        # check that logs/install-software-environment.log is updated
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        assert os.path.exists(release_base_dir / log_file)
        assert os.path.getsize(release_base_dir / log_file) > initial_bytes
    
    
        # Check that the log file has "Spack environments branch: dev-23a " in the last line
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        with open(release_base_dir / log_file, "r") as f:
    
            last_line = f.readlines()[-1]
            assert "Spack environments branch: dev-23a " in last_line
    
    def test_install_environment_wrong_toolchain(tmp_path):
        """Test exception is raised for non-existing toolchain."""
        # Expect an Exception when wrong toolchains are provided
    
        with pytest.raises(Exception):
            mod.install_environment(
                mpsd_release="dev-23a",
                toolchains=["wrong-toolchain"],
                script_dir=(tmp_path),
    
    Hans Fangohr's avatar
    Hans Fangohr committed
    
    
    def test_install_environment_wrong_mpsd_release(tmp_path):
        """Test exception is raised for non-existing mpsd release."""
    
        # Expect an Exception when wrong mpsd_release is provided (part of
        # prepare_environment)
    
        with pytest.raises(Exception):
            mod.install_environment(
                mpsd_release="wrong-mpsd-release",
                toolchains=["foss2021a-mpi"],
                script_dir=(tmp_path),
            )
    
    Hans Fangohr's avatar
    Hans Fangohr committed
    
    
    def test_install_environment_zlib():
    
        """Test installation of toolchain."""
    
        # Prepare a test installation of global generic
    
        # with only zlib to test the installation
        # This is a long test,
        # its handy to test this with print statements printed to
        # stdout, use:
        #   pytest -s
        # for this installation avoid tmp_path as
        # the length of the path becomes too long and spack complains
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        script_dir = Path("/tmp/test_global_generic")
    
        if script_dir.exists():
            shutil.rmtree(script_dir)
    
        script_dir.mkdir(exist_ok=True, parents=True)
        mpsd_release_to_test = "dev-23a"
    
        toolchain_to_test = "global_generic"
    
        mpsd_microarch = mod.get_native_microarchitecture()
    
        release_base_dir = script_dir / mpsd_release_to_test
    
        create_mock_git_repository(target_directory=script_dir, create_directory=False)
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        mod.prepare_environment(mpsd_release=mpsd_release_to_test, script_dir=(script_dir))
    
        # Patch the spack environments to create a fake global_generic
        # create a test toolchain
        toolchain_src_dir = release_base_dir / "spack-environments" / "toolchains"
        # with mod.os_chdir(toolchain_src_dir):
        #     subprocess.run(
        #         "cp -r foss2021a-mpi fuss1999a", shell=True, capture_output=True
        #     )
        # add zlib as a spec to global_generic
        with open(toolchain_src_dir / "global_generic" / "global_packages.list", "w") as f:
            f.write("zlib@1.2.13 \n")
    
    
        # add zlib to whitelist of module creation file by replacing anaconda3%gcc@10.2.1
        # with zlib@1.2.13
    
        # in release_base_dir / "spack-environments/spack_overlay/etc/spack/modules.yaml"
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        module_file = (
            release_base_dir / "spack-environments/spack_overlay/etc/spack/modules.yaml"
        )
        with open(module_file, "r") as f:
            lines = f.read().replace("anaconda3%gcc@10.2.1", "zlib@1.2.13")
        with open(module_file, "w") as f:
    
        # Replace gcc@10.2.1 with gcc#13.1.1 or available system gcc for testing on laptop
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        gcc_ver = (
            subprocess.run(["gcc -dumpfullversion"], shell=True, capture_output=True)
            .stdout.decode("utf-8")
            .strip()
        )
    
        assert len(gcc_ver) > 3, f"Couldn't find gcc {gcc_ver=}"
    
    
        setup_file = release_base_dir / "spack-environments/spack_setup.sh"
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        with open(setup_file, "r") as f:
            lines = f.read().replace(
                'system_compiler="gcc@10.2.1"', f'system_compiler="gcc@{gcc_ver}"'
            )
        with open(setup_file, "w") as f:
    
        # install global_generic toolchain
    
        mod.set_up_logging(
            "WARNING",
            mod.get_installer_log_file(mpsd_release_to_test, "install", script_dir),
        )
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        mod.install_environment(
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
            mpsd_release=mpsd_release_to_test,
            toolchains=[toolchain_to_test],
            script_dir=script_dir,
            enable_build_cache=False,
        )
    
        # test that the build log is created correctly
    
        # check that a file with glob build_globale_generic_dev-23a*.log exists at
        # release_base_dir/mpsd_microarch
    
        # print("Debug here ")
        # time.sleep(10)
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        build_log = list(
    
            (release_base_dir / "logs").glob(
                f"{mpsd_release_to_test}_{mpsd_microarch}_*_install.log"
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
            )
        )
    
        assert len(build_log) > 0
        # take the most recent build log
        build_log = sorted(build_log)[0]
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        # check that the build log contains statement ##### Installation finished
        with open(build_log, "r") as f:
    
            lines = f.read()
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
            assert "##### Installation finished" in lines
    
        os.path.basename(build_log)
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        # assert that install log files exists
        assert os.path.exists(release_base_dir / "install.log")
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        # assert that the build log is written to the install log file
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        os.path.basename(build_log)
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        with open(release_base_dir / "install.log", "r") as f:
            lines = f.read()
            assert (
    
                f"installing {toolchain_to_test} and logging at {str(build_log)}" in lines
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
            )
        # assert that the module files are created correctly
        assert os.path.exists(release_base_dir / mpsd_microarch)
        assert os.path.exists(release_base_dir / mpsd_microarch / "lmod")
        # assert that lmod/module-index.yaml contains zlib
        with open(
            release_base_dir / mpsd_microarch / "lmod" / "module-index.yaml", "r"
        ) as f:
            lines = f.read()
            assert "zlib" in lines
    
        # install again to ensure that
        # commands that skip creation of folders when
    
        # they are already present works as expected
    
        # reload the module to ensure that date changes
        importlib.reload(mod)
    
        mod.install_environment(
            mpsd_release=mpsd_release_to_test,
            toolchains=[toolchain_to_test],
            script_dir=script_dir,
            enable_build_cache=False,
        )
        build_log = list(
            (release_base_dir / "logs").glob(
                f"{mpsd_release_to_test}_{mpsd_microarch}_*_install.log"
            )
        )
    
        assert len(build_log) > 2
    
    def test_metadata_logging(tmp_path):
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        """Test that metadata is logged and read correctly."""
        # Test that the metadata is logged correctly
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        filename = tmp_path / "test-metadata.log"
        print(f"Writing to {filename}")
        mod.set_up_logging(loglevel="debug", filename=filename)
    
        # our test data
    
        keys = ["important_key", "important_key2"]
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        values = ["important_value", "important_value2"]
    
        expected_log_entries = []
        for key, value in zip(keys, values):
            mod.log_metadata(key, value)
            open_tag = mod.config_vars["metadata_tag_open"]
            close_tag = mod.config_vars["metadata_tag_close"]
            expected_log = f"{open_tag}{key}:{value}{close_tag}"
            expected_log_entries.append(expected_log)
            logging.info(f"Add some other info (after adding {key=})")
            logging.debug("Add some other info")
            logging.warning("Add some other info")
    
        # Check that relevant lines show up in the log file somewhere
    
        with open(filename, "r") as f:
    
    Hans Fangohr's avatar
    Hans Fangohr committed
            logfile_content = f.read()
            for expected_log in expected_log_entries:
                assert expected_log in logfile_content
    
        # Test that the metadata is read correctly using our parser
    
        read_dict = mod.read_metadata_from_logfile(tmp_path / "test-metadata.log")
    
    Hans Fangohr's avatar
    Hans Fangohr committed
    
        # check all entries are in the file
        for key, value in zip(keys, values):
            read_dict[key] == value
    
        # check no additional entries are there
        assert len(read_dict) == len(keys)
    
    def test_create_log_file_names():
        """Test that the log file names are created correctly."""
        create_log_file_names = mod.create_log_file_names
        mpsd_release = "dev-23a"
        mpsd_microarch = "sandybridge"
        date = datetime.datetime.now().replace(microsecond=0).isoformat()
        action = "install"
        toolchain = "foss2021a"
        # test for correct action and toolchain
        installer_log_file, build_log_file = create_log_file_names(
            mpsd_microarch=mpsd_microarch,
            mpsd_release=mpsd_release,
            date=date,
            action=action,
            toolchain=toolchain,
        )
        assert installer_log_file == f"{mpsd_release}_{mpsd_microarch}_{date}_{action}.log"
        assert (
            build_log_file
            == f"{mpsd_release}_{mpsd_microarch}_{date}_{toolchain}_{action}.log"
        )
        # test no build log file for incorrect action
        installer_log_file, build_log_file = create_log_file_names(
            mpsd_microarch=mpsd_microarch,
            mpsd_release=mpsd_release,
            date=date,
            action="status",
            toolchain=toolchain,
        )
        assert installer_log_file == f"{mpsd_release}_{mpsd_microarch}_{date}_status.log"
    
        assert build_log_file is None
    
        # test no build log file for incorrect toolchain
        installer_log_file, build_log_file = create_log_file_names(
            mpsd_microarch=mpsd_microarch,
            mpsd_release=mpsd_release,
            date=date,
            action="reinstall",
            toolchain=None,
        )
        assert installer_log_file == f"{mpsd_release}_{mpsd_microarch}_{date}_reinstall.log"
    
        assert build_log_file is None
    
    def test_interface(tmp_path):
    
    Hans Fangohr's avatar
    Hans Fangohr committed
        """Test other things (not implemented yet)."""
    
        pass
        # ensure that installing without toolchains only passes the available toolchains
        # check that the script branch and hash are correct when running the script
        # check that the help message is printed when no arguments are provided
        # check that the help message is printed when -h is provided
    
    Ashwin Kumar Karnad's avatar
    Ashwin Kumar Karnad committed
        # check that the error messages are also logged to the log file
    
    
    
    # other tests to add (ideally)
    # - get_native_microarchitecture()