Tests: Mirror Mixin Classes
This commit is contained in:
parent
7e5257e44a
commit
e1e804168a
@ -219,3 +219,72 @@ def test_define_from_variant(self):
|
||||
|
||||
with pytest.raises(KeyError, match="not a variant"):
|
||||
pkg.define_from_variant('NONEXISTENT')
|
||||
|
||||
|
||||
@pytest.mark.usefixtures('config', 'mock_packages')
|
||||
class TestGNUMirrorPackage(object):
|
||||
|
||||
def test_define(self):
|
||||
s = Spec('mirror-gnu')
|
||||
s.concretize()
|
||||
pkg = spack.repo.get(s)
|
||||
|
||||
s = Spec('mirror-gnu-broken')
|
||||
s.concretize()
|
||||
pkg_broken = spack.repo.get(s)
|
||||
|
||||
cls_name = type(pkg_broken).__name__
|
||||
with pytest.raises(AttributeError,
|
||||
match=r'{0} must define a `gnu_mirror_path` '
|
||||
r'attribute \[none defined\]'
|
||||
.format(cls_name)):
|
||||
pkg_broken.urls
|
||||
|
||||
assert pkg.urls[0] == 'https://ftpmirror.gnu.org/' \
|
||||
'make/make-4.2.1.tar.gz'
|
||||
|
||||
|
||||
@pytest.mark.usefixtures('config', 'mock_packages')
|
||||
class TestSourcewarePackage(object):
|
||||
|
||||
def test_define(self):
|
||||
s = Spec('mirror-sourceware')
|
||||
s.concretize()
|
||||
pkg = spack.repo.get(s)
|
||||
|
||||
s = Spec('mirror-sourceware-broken')
|
||||
s.concretize()
|
||||
pkg_broken = spack.repo.get(s)
|
||||
|
||||
cls_name = type(pkg_broken).__name__
|
||||
with pytest.raises(AttributeError,
|
||||
match=r'{0} must define a `sourceware_mirror_path` '
|
||||
r'attribute \[none defined\]'
|
||||
.format(cls_name)):
|
||||
pkg_broken.urls
|
||||
|
||||
assert pkg.urls[0] == 'https://sourceware.org/pub/' \
|
||||
'bzip2/bzip2-1.0.8.tar.gz'
|
||||
|
||||
|
||||
@pytest.mark.usefixtures('config', 'mock_packages')
|
||||
class TestXorgPackage(object):
|
||||
|
||||
def test_define(self):
|
||||
s = Spec('mirror-xorg')
|
||||
s.concretize()
|
||||
pkg = spack.repo.get(s)
|
||||
|
||||
s = Spec('mirror-xorg-broken')
|
||||
s.concretize()
|
||||
pkg_broken = spack.repo.get(s)
|
||||
|
||||
cls_name = type(pkg_broken).__name__
|
||||
with pytest.raises(AttributeError,
|
||||
match=r'{0} must define a `xorg_mirror_path` '
|
||||
r'attribute \[none defined\]'
|
||||
.format(cls_name)):
|
||||
pkg_broken.urls
|
||||
|
||||
assert pkg.urls[0] == 'https://www.x.org/archive/individual/' \
|
||||
'util/util-macros-1.19.1.tar.bz2'
|
||||
|
@ -0,0 +1,15 @@
|
||||
# Copyright 2013-2020 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 import *
|
||||
|
||||
|
||||
class MirrorGnuBroken(AutotoolsPackage, GNUMirrorPackage):
|
||||
"""Simple GNU package"""
|
||||
|
||||
homepage = "https://www.gnu.org/software/make/"
|
||||
url = "https://ftpmirror.gnu.org/make/make-4.2.1.tar.gz"
|
||||
|
||||
version('4.2.1', sha256='e40b8f018c1da64edd1cc9a6fce5fa63b2e707e404e20cad91fbae337c98a5b7')
|
15
var/spack/repos/builtin.mock/packages/mirror-gnu/package.py
Normal file
15
var/spack/repos/builtin.mock/packages/mirror-gnu/package.py
Normal file
@ -0,0 +1,15 @@
|
||||
# Copyright 2013-2020 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 import *
|
||||
|
||||
|
||||
class MirrorGnu(AutotoolsPackage, GNUMirrorPackage):
|
||||
"""Simple GNU package"""
|
||||
|
||||
homepage = "https://www.gnu.org/software/make/"
|
||||
gnu_mirror_path = "make/make-4.2.1.tar.gz"
|
||||
|
||||
version('4.2.1', sha256='e40b8f018c1da64edd1cc9a6fce5fa63b2e707e404e20cad91fbae337c98a5b7')
|
@ -0,0 +1,15 @@
|
||||
# Copyright 2013-2020 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 import *
|
||||
|
||||
|
||||
class MirrorGnuBroken(AutotoolsPackage, GNUMirrorPackage):
|
||||
"""Simple GNU package"""
|
||||
|
||||
homepage = "https://www.gnu.org/software/make/"
|
||||
url = "https://ftpmirror.gnu.org/make/make-4.2.1.tar.gz"
|
||||
|
||||
version('4.2.1', sha256='e40b8f018c1da64edd1cc9a6fce5fa63b2e707e404e20cad91fbae337c98a5b7')
|
@ -0,0 +1,15 @@
|
||||
# Copyright 2013-2020 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 import *
|
||||
|
||||
|
||||
class MirrorSourcewareBroken(AutotoolsPackage, SourcewarePackage):
|
||||
"""Simple sourceware.org package"""
|
||||
|
||||
homepage = "https://sourceware.org/bzip2/"
|
||||
url = "https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz"
|
||||
|
||||
version('1.0.8', sha256='ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269')
|
@ -0,0 +1,15 @@
|
||||
# Copyright 2013-2020 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 import *
|
||||
|
||||
|
||||
class MirrorSourceware(AutotoolsPackage, SourcewarePackage):
|
||||
"""Simple sourceware.org package"""
|
||||
|
||||
homepage = "https://sourceware.org/bzip2/"
|
||||
sourceware_mirror_path = "bzip2/bzip2-1.0.8.tar.gz"
|
||||
|
||||
version('1.0.8', sha256='ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269')
|
@ -0,0 +1,15 @@
|
||||
# Copyright 2013-2020 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 import *
|
||||
|
||||
|
||||
class MirrorXorgBroken(AutotoolsPackage, XorgPackage):
|
||||
"""Simple x.org package"""
|
||||
|
||||
homepage = "http://cgit.freedesktop.org/xorg/util/macros/"
|
||||
url = "https://www.x.org/archive/individual/util/util-macros-1.19.1.tar.bz2"
|
||||
|
||||
version('1.19.1', sha256='18d459400558f4ea99527bc9786c033965a3db45bf4c6a32eefdc07aa9e306a6')
|
15
var/spack/repos/builtin.mock/packages/mirror-xorg/package.py
Normal file
15
var/spack/repos/builtin.mock/packages/mirror-xorg/package.py
Normal file
@ -0,0 +1,15 @@
|
||||
# Copyright 2013-2020 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 import *
|
||||
|
||||
|
||||
class MirrorXorg(AutotoolsPackage, XorgPackage):
|
||||
"""Simple x.org package"""
|
||||
|
||||
homepage = "http://cgit.freedesktop.org/xorg/util/macros/"
|
||||
xorg_mirror_path = "util/util-macros-1.19.1.tar.bz2"
|
||||
|
||||
version('1.19.1', sha256='18d459400558f4ea99527bc9786c033965a3db45bf4c6a32eefdc07aa9e306a6')
|
Loading…
Reference in New Issue
Block a user