Allow uninstalling missing packages (#11874)

Remove package access from directory_layout; add regression test to ensure
that specs can be uninstalled without a package being known
This commit is contained in:
Peter Scheibel 2019-06-29 16:04:15 -07:00 committed by Todd Gamblin
parent 7f2e364fa1
commit 9c16b4a7f6
2 changed files with 19 additions and 6 deletions

View file

@ -78,10 +78,13 @@ def path_for_spec(self, spec):
if spec.external:
return spec.external_path
if self.check_upstream and spec.package.installed_upstream:
raise SpackError(
"Internal error: attempted to call path_for_spec on"
" upstream-installed package.")
if self.check_upstream:
upstream, record = spack.store.db.query_by_spec_hash(
spec.dag_hash())
if upstream:
raise SpackError(
"Internal error: attempted to call path_for_spec on"
" upstream-installed package.")
path = self.relative_path_for_spec(spec)
assert(not path.startswith(self.root))

View file

@ -12,17 +12,27 @@
from spack.spec import Spec
def test_install_and_uninstall(install_mockery, mock_fetch):
def test_install_and_uninstall(install_mockery, mock_fetch, monkeypatch):
# Get a basic concrete spec for the trivial install package.
spec = Spec('trivial-install-test-package')
spec.concretize()
assert spec.concrete
# Get the package
pkg = spack.repo.get(spec)
pkg = spec.package
def find_nothing(*args):
raise spack.repo.UnknownPackageError(
'Repo package access is disabled for test')
try:
pkg.do_install()
spec._package = None
monkeypatch.setattr(spack.repo, 'get', find_nothing)
with pytest.raises(spack.repo.UnknownPackageError):
spec.package
pkg.do_uninstall()
except Exception:
pkg.remove_prefix()