Source code for spack.test.s3_fetch

# 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

import pytest

import spack.config as spack_config
import spack.fetch_strategy as spack_fs
import spack.stage as spack_stage


[docs]@pytest.mark.parametrize('_fetch_method', ['curl', 'urllib']) def test_s3fetchstrategy_sans_url(_fetch_method): """Ensure constructor with no URL fails.""" with spack_config.override('config:url_fetch_method', _fetch_method): with pytest.raises(ValueError): spack_fs.S3FetchStrategy(None)
[docs]@pytest.mark.parametrize('_fetch_method', ['curl', 'urllib']) def test_s3fetchstrategy_bad_url(tmpdir, _fetch_method): """Ensure fetch with bad URL fails as expected.""" testpath = str(tmpdir) with spack_config.override('config:url_fetch_method', _fetch_method): fetcher = spack_fs.S3FetchStrategy(url='file:///does-not-exist') assert fetcher is not None with spack_stage.Stage(fetcher, path=testpath) as stage: assert stage is not None assert fetcher.archive_file is None with pytest.raises(spack_fs.FetchError): fetcher.fetch()
[docs]@pytest.mark.parametrize('_fetch_method', ['curl', 'urllib']) def test_s3fetchstrategy_downloaded(tmpdir, _fetch_method): """Ensure fetch with archive file already downloaded is a noop.""" testpath = str(tmpdir) archive = os.path.join(testpath, 's3.tar.gz') with spack_config.override('config:url_fetch_method', _fetch_method): class Archived_S3FS(spack_fs.S3FetchStrategy): @property def archive_file(self): return archive url = 's3:///{0}'.format(archive) fetcher = Archived_S3FS(url=url) with spack_stage.Stage(fetcher, path=testpath): fetcher.fetch()