Ejemplo n.º 1
0
    def testOpenAndClose(self):
        """Test the open and close functionality."""
        file_system = bde_file_system.BDEFileSystem(self._resolver_context,
                                                    self._bde_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()
Ejemplo n.º 2
0
    def testFileEntryExistsByPathSpec(self):
        """Test the file entry exists by path specification functionality."""
        file_system = bde_file_system.BDEFileSystem(self._resolver_context,
                                                    self._bde_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()

        result = file_system.FileEntryExistsByPathSpec(self._bde_path_spec)
        self.assertTrue(result)
Ejemplo n.º 3
0
  def NewFileSystem(self, resolver_context):
    """Creates a new file system.

    Args:
      resolver_context (Context): resolver context.

    Returns:
      BDEFileSystem: file system.
    """
    return bde_file_system.BDEFileSystem(resolver_context)
Ejemplo n.º 4
0
    def testGetRootFileEntry(self):
        """Test the get root file entry functionality."""
        file_system = bde_file_system.BDEFileSystem(self._resolver_context,
                                                    self._bde_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()

        file_entry = file_system.GetRootFileEntry()
        self.assertIsNotNone(file_entry)
        self.assertEqual(file_entry.name, '')
Ejemplo n.º 5
0
    def testGetFileEntryByPathSpec(self):
        """Tests the GetFileEntryByPathSpec function."""
        file_system = bde_file_system.BDEFileSystem(self._resolver_context,
                                                    self._bde_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()

        file_entry = file_system.GetFileEntryByPathSpec(self._bde_path_spec)
        self.assertIsNotNone(file_entry)
        self.assertEqual(file_entry.name, '')
Ejemplo n.º 6
0
    def NewFileSystem(self, resolver_context, path_spec):
        """Creates a new file system.

    Args:
      resolver_context (Context): resolver context.
      path_spec (PathSpec): a path specification.

    Returns:
      BDEFileSystem: file system.
    """
        return bde_file_system.BDEFileSystem(resolver_context, path_spec)
Ejemplo n.º 7
0
  def setUp(self):
    """Sets up the needed objects used throughout the test."""
    self._resolver_context = context.Context()
    test_file = self._GetTestFilePath(['bdetogo.raw'])
    path_spec = os_path_spec.OSPathSpec(location=test_file)
    self._bde_path_spec = bde_path_spec.BDEPathSpec(parent=path_spec)
    resolver.Resolver.key_chain.SetCredential(
        self._bde_path_spec, 'password', self._BDE_PASSWORD)

    self._file_system = bde_file_system.BDEFileSystem(self._resolver_context)
    self._file_system.Open(self._bde_path_spec)
Ejemplo n.º 8
0
    def setUp(self):
        """Sets up the needed objects used throughout the test."""
        self._resolver_context = context.Context()
        test_path = self._GetTestFilePath(['bdetogo.raw'])
        self._SkipIfPathNotExists(test_path)

        test_os_path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_OS, location=test_path)
        self._bde_path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_BDE, parent=test_os_path_spec)
        resolver.Resolver.key_chain.SetCredential(self._bde_path_spec,
                                                  'password',
                                                  self._BDE_PASSWORD)

        self._file_system = bde_file_system.BDEFileSystem(
            self._resolver_context, self._bde_path_spec)
        self._file_system.Open()