コード例 #1
0
    def setUp(self):
        super(MockDatabase, self).setUp()
        #
        # TODO: make the mockup below easier.
        #

        # Make a fake install directory
        self.install_path = tempfile.mkdtemp()
        self.spack_install_path = spack.install_path
        spack.install_path = self.install_path

        self.install_layout = YamlDirectoryLayout(self.install_path)
        self.spack_install_layout = spack.install_layout
        spack.install_layout = self.install_layout

        # Make fake database and fake install directory.
        self.installed_db = Database(self.install_path)
        self.spack_installed_db = spack.installed_db
        spack.installed_db = self.installed_db

        # make a mock database with some packages installed note that
        # the ref count for dyninst here will be 3, as it's recycled
        # across each install.
        #
        # Here is what the mock DB looks like:
        #
        # o  mpileaks     o  mpileaks'    o  mpileaks''
        # |\              |\              |\
        # | o  callpath   | o  callpath'  | o  callpath''
        # |/|             |/|             |/|
        # o |  mpich      o |  mpich2     o |  zmpi
        #   |               |             o |  fake
        #   |               |               |
        #   |               |______________/
        #   | .____________/
        #   |/
        #   o  dyninst
        #   |\
        #   | o  libdwarf
        #   |/
        #   o  libelf
        #

        # Transaction used to avoid repeated writes.
        with spack.installed_db.write_transaction():
            self._mock_install('mpileaks ^mpich')
            self._mock_install('mpileaks ^mpich2')
            self._mock_install('mpileaks ^zmpi')
コード例 #2
0
ファイル: database.py プロジェクト: jgalarowicz/spack
    def setUp(self):
        super(DatabaseTest, self).setUp()
        #
        # TODO: make the mockup below easier.
        #

        # Make a fake install directory
        self.install_path = tempfile.mkdtemp()
        self.spack_install_path = spack.install_path
        spack.install_path = self.install_path

        self.install_layout = YamlDirectoryLayout(self.install_path)
        self.spack_install_layout = spack.install_layout
        spack.install_layout = self.install_layout

        # Make fake database and fake install directory.
        self.installed_db = Database(self.install_path)
        self.spack_installed_db = spack.installed_db
        spack.installed_db = self.installed_db

        # make a mock database with some packages installed note that
        # the ref count for dyninst here will be 3, as it's recycled
        # across each install.
        #
        # Here is what the mock DB looks like:
        #
        # o  mpileaks     o  mpileaks'    o  mpileaks''
        # |\              |\              |\
        # | o  callpath   | o  callpath'  | o  callpath''
        # |/|             |/|             |/|
        # o |  mpich      o |  mpich2     o |  zmpi
        #   |               |             o |  fake
        #   |               |               |
        #   |               |______________/
        #   | .____________/
        #   |/
        #   o  dyninst
        #   |\
        #   | o  libdwarf
        #   |/
        #   o  libelf
        #

        # Transaction used to avoid repeated writes.
        with spack.installed_db.write_transaction():
            self._mock_install("mpileaks ^mpich")
            self._mock_install("mpileaks ^mpich2")
            self._mock_install("mpileaks ^zmpi")
コード例 #3
0
def install_mockery(tmpdir, config, builtin_mock):
    """Hooks a fake install directory and a fake db into Spack."""
    layout = spack.store.layout
    db = spack.store.db
    # Use a fake install directory to avoid conflicts bt/w
    # installed pkgs and mock packages.
    spack.store.layout = YamlDirectoryLayout(str(tmpdir))
    spack.store.db = Database(str(tmpdir))
    # We use a fake package, so skip the checksum.
    spack.do_checksum = False
    yield
    # Turn checksumming back on
    spack.do_checksum = True
    # Restore Spack's layout.
    spack.store.layout = layout
    spack.store.db = db
コード例 #4
0
    def setUp(self):
        super(InstallTest, self).setUp()

        # create a simple installable package directory and tarball
        self.repo = MockArchive()

        # We use a fake package, so skip the checksum.
        spack.do_checksum = False

        # Use a fake install directory to avoid conflicts bt/w
        # installed pkgs and mock packages.
        self.tmpdir = tempfile.mkdtemp()
        self.orig_layout = spack.store.layout
        self.orig_db = spack.store.db

        spack.store.layout = YamlDirectoryLayout(self.tmpdir)
        spack.store.db = Database(self.tmpdir)
コード例 #5
0
ファイル: store.py プロジェクト: zatviaj295162/spack
from spack.directory_layout import YamlExtensionsLayout

__author__ = "Benedikt Hegner (CERN)"
__all__ = ['db', 'extensions', 'layout', 'root']

#
# Read in the config
#
config = spack.config.get_config("config")

#
# Set up the install path
#
root = canonicalize_path(
    config.get('install_tree', os.path.join(spack.opt_path, 'spack')))

#
# Set up the installed packages database
#
db = Database(root)

#
# This controls how spack lays out install prefixes and
# stage directories.
#
layout = YamlDirectoryLayout(root,
                             hash_len=config.get('install_hash_length'),
                             path_scheme=config.get('install_path_scheme'))

extensions = YamlExtensionsLayout(root, layout)
コード例 #6
0
ファイル: database.py プロジェクト: jgalarowicz/spack
class DatabaseTest(MockPackagesTest):
    def _mock_install(self, spec):
        s = Spec(spec)
        pkg = spack.db.get(s.concretized())
        pkg.do_install(fake=True)

    def _mock_remove(self, spec):
        specs = spack.installed_db.query(spec)
        assert len(specs) == 1
        spec = specs[0]
        spec.package.do_uninstall(spec)

    def setUp(self):
        super(DatabaseTest, self).setUp()
        #
        # TODO: make the mockup below easier.
        #

        # Make a fake install directory
        self.install_path = tempfile.mkdtemp()
        self.spack_install_path = spack.install_path
        spack.install_path = self.install_path

        self.install_layout = YamlDirectoryLayout(self.install_path)
        self.spack_install_layout = spack.install_layout
        spack.install_layout = self.install_layout

        # Make fake database and fake install directory.
        self.installed_db = Database(self.install_path)
        self.spack_installed_db = spack.installed_db
        spack.installed_db = self.installed_db

        # make a mock database with some packages installed note that
        # the ref count for dyninst here will be 3, as it's recycled
        # across each install.
        #
        # Here is what the mock DB looks like:
        #
        # o  mpileaks     o  mpileaks'    o  mpileaks''
        # |\              |\              |\
        # | o  callpath   | o  callpath'  | o  callpath''
        # |/|             |/|             |/|
        # o |  mpich      o |  mpich2     o |  zmpi
        #   |               |             o |  fake
        #   |               |               |
        #   |               |______________/
        #   | .____________/
        #   |/
        #   o  dyninst
        #   |\
        #   | o  libdwarf
        #   |/
        #   o  libelf
        #

        # Transaction used to avoid repeated writes.
        with spack.installed_db.write_transaction():
            self._mock_install("mpileaks ^mpich")
            self._mock_install("mpileaks ^mpich2")
            self._mock_install("mpileaks ^zmpi")

    def tearDown(self):
        super(DatabaseTest, self).tearDown()
        shutil.rmtree(self.install_path)
        spack.install_path = self.spack_install_path
        spack.install_layout = self.spack_install_layout
        spack.installed_db = self.spack_installed_db

    def test_005_db_exists(self):
        """Make sure db cache file exists after creating."""
        index_file = join_path(self.install_path, ".spack-db", "index.yaml")
        lock_file = join_path(self.install_path, ".spack-db", "lock")

        self.assertTrue(os.path.exists(index_file))
        self.assertTrue(os.path.exists(lock_file))

    def test_010_all_install_sanity(self):
        """Ensure that the install layout reflects what we think it does."""
        all_specs = spack.install_layout.all_specs()
        self.assertEqual(len(all_specs), 13)

        # query specs with multiple configurations
        mpileaks_specs = [s for s in all_specs if s.satisfies("mpileaks")]
        callpath_specs = [s for s in all_specs if s.satisfies("callpath")]
        mpi_specs = [s for s in all_specs if s.satisfies("mpi")]

        self.assertEqual(len(mpileaks_specs), 3)
        self.assertEqual(len(callpath_specs), 3)
        self.assertEqual(len(mpi_specs), 3)

        # query specs with single configurations
        dyninst_specs = [s for s in all_specs if s.satisfies("dyninst")]
        libdwarf_specs = [s for s in all_specs if s.satisfies("libdwarf")]
        libelf_specs = [s for s in all_specs if s.satisfies("libelf")]

        self.assertEqual(len(dyninst_specs), 1)
        self.assertEqual(len(libdwarf_specs), 1)
        self.assertEqual(len(libelf_specs), 1)

        # Query by dependency
        self.assertEqual(len([s for s in all_specs if s.satisfies("mpileaks ^mpich")]), 1)
        self.assertEqual(len([s for s in all_specs if s.satisfies("mpileaks ^mpich2")]), 1)
        self.assertEqual(len([s for s in all_specs if s.satisfies("mpileaks ^zmpi")]), 1)

    def test_015_write_and_read(self):
        # write and read DB
        with spack.installed_db.write_transaction():
            specs = spack.installed_db.query()
            recs = [spack.installed_db.get_record(s) for s in specs]

        for spec, rec in zip(specs, recs):
            new_rec = spack.installed_db.get_record(spec)
            self.assertEqual(new_rec.ref_count, rec.ref_count)
            self.assertEqual(new_rec.spec, rec.spec)
            self.assertEqual(new_rec.path, rec.path)
            self.assertEqual(new_rec.installed, rec.installed)

    def _check_db_sanity(self):
        """Utiilty function to check db against install layout."""
        expected = sorted(spack.install_layout.all_specs())
        actual = sorted(self.installed_db.query())

        self.assertEqual(len(expected), len(actual))
        for e, a in zip(expected, actual):
            self.assertEqual(e, a)

    def test_020_db_sanity(self):
        """Make sure query() returns what's actually in the db."""
        self._check_db_sanity()

    def test_030_db_sanity_from_another_process(self):
        def read_and_modify():
            self._check_db_sanity()  # check that other process can read DB
            with self.installed_db.write_transaction():
                self._mock_remove("mpileaks ^zmpi")

        p = multiprocessing.Process(target=read_and_modify, args=())
        p.start()
        p.join()

        # ensure child process change is visible in parent process
        with self.installed_db.read_transaction():
            self.assertEqual(len(self.installed_db.query("mpileaks ^zmpi")), 0)

    def test_040_ref_counts(self):
        """Ensure that we got ref counts right when we read the DB."""
        self.installed_db._check_ref_counts()

    def test_050_basic_query(self):
        """Ensure that querying the database is consistent with what is installed."""
        # query everything
        self.assertEqual(len(spack.installed_db.query()), 13)

        # query specs with multiple configurations
        mpileaks_specs = self.installed_db.query("mpileaks")
        callpath_specs = self.installed_db.query("callpath")
        mpi_specs = self.installed_db.query("mpi")

        self.assertEqual(len(mpileaks_specs), 3)
        self.assertEqual(len(callpath_specs), 3)
        self.assertEqual(len(mpi_specs), 3)

        # query specs with single configurations
        dyninst_specs = self.installed_db.query("dyninst")
        libdwarf_specs = self.installed_db.query("libdwarf")
        libelf_specs = self.installed_db.query("libelf")

        self.assertEqual(len(dyninst_specs), 1)
        self.assertEqual(len(libdwarf_specs), 1)
        self.assertEqual(len(libelf_specs), 1)

        # Query by dependency
        self.assertEqual(len(self.installed_db.query("mpileaks ^mpich")), 1)
        self.assertEqual(len(self.installed_db.query("mpileaks ^mpich2")), 1)
        self.assertEqual(len(self.installed_db.query("mpileaks ^zmpi")), 1)

    def _check_remove_and_add_package(self, spec):
        """Remove a spec from the DB, then add it and make sure everything's
           still ok once it is added.  This checks that it was
           removed, that it's back when added again, and that ref
           counts are consistent.
        """
        original = self.installed_db.query()
        self.installed_db._check_ref_counts()

        # Remove spec
        concrete_spec = self.installed_db.remove(spec)
        self.installed_db._check_ref_counts()
        remaining = self.installed_db.query()

        # ensure spec we removed is gone
        self.assertEqual(len(original) - 1, len(remaining))
        self.assertTrue(all(s in original for s in remaining))
        self.assertTrue(concrete_spec not in remaining)

        # add it back and make sure everything is ok.
        self.installed_db.add(concrete_spec, "")
        installed = self.installed_db.query()
        self.assertEqual(len(installed), len(original))

        # sanity check against direcory layout and check ref counts.
        self._check_db_sanity()
        self.installed_db._check_ref_counts()

    def test_060_remove_and_add_root_package(self):
        self._check_remove_and_add_package("mpileaks ^mpich")

    def test_070_remove_and_add_dependency_package(self):
        self._check_remove_and_add_package("dyninst")

    def test_080_root_ref_counts(self):
        rec = self.installed_db.get_record("mpileaks ^mpich")

        # Remove a top-level spec from the DB
        self.installed_db.remove("mpileaks ^mpich")

        # record no longer in DB
        self.assertEqual(self.installed_db.query("mpileaks ^mpich", installed=any), [])

        # record's deps have updated ref_counts
        self.assertEqual(self.installed_db.get_record("callpath ^mpich").ref_count, 0)
        self.assertEqual(self.installed_db.get_record("mpich").ref_count, 1)

        # put the spec back
        self.installed_db.add(rec.spec, rec.path)

        # record is present again
        self.assertEqual(len(self.installed_db.query("mpileaks ^mpich", installed=any)), 1)

        # dependencies have ref counts updated
        self.assertEqual(self.installed_db.get_record("callpath ^mpich").ref_count, 1)
        self.assertEqual(self.installed_db.get_record("mpich").ref_count, 2)

    def test_090_non_root_ref_counts(self):
        mpileaks_mpich_rec = self.installed_db.get_record("mpileaks ^mpich")
        callpath_mpich_rec = self.installed_db.get_record("callpath ^mpich")

        # "force remove" a non-root spec from the DB
        self.installed_db.remove("callpath ^mpich")

        # record still in DB but marked uninstalled
        self.assertEqual(self.installed_db.query("callpath ^mpich", installed=True), [])
        self.assertEqual(len(self.installed_db.query("callpath ^mpich", installed=any)), 1)

        # record and its deps have same ref_counts
        self.assertEqual(self.installed_db.get_record("callpath ^mpich", installed=any).ref_count, 1)
        self.assertEqual(self.installed_db.get_record("mpich").ref_count, 2)

        # remove only dependent of uninstalled callpath record
        self.installed_db.remove("mpileaks ^mpich")

        # record and parent are completely gone.
        self.assertEqual(self.installed_db.query("mpileaks ^mpich", installed=any), [])
        self.assertEqual(self.installed_db.query("callpath ^mpich", installed=any), [])

        # mpich ref count updated properly.
        mpich_rec = self.installed_db.get_record("mpich")
        self.assertEqual(mpich_rec.ref_count, 0)
コード例 #7
0
ファイル: __init__.py プロジェクト: rorist/spack
#
# Set up the default packages database.
#
import spack.repository
try:
    repo = spack.repository.RepoPath()
    sys.meta_path.append(repo)
except spack.error.SpackError, e:
    tty.die('while initializing Spack RepoPath:', e.message)

#
# Set up the installed packages database
#
from spack.database import Database
installed_db = Database(install_path)

#
# Paths to built-in Spack repositories.
#
packages_path      = join_path(repos_path, "builtin")
mock_packages_path = join_path(repos_path, "builtin.mock")

#
# This controls how spack lays out install prefixes and
# stage directories.
#
from spack.directory_layout import YamlDirectoryLayout
install_layout = YamlDirectoryLayout(install_path)

#