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

        file_system.Open()
Ejemplo n.º 2
0
    def NewFileSystem(self, resolver_context):
        """Creates a new file system object.

    Args:
      resolver_context (Context): resolver context.

    Returns:
      FileSystem: file system.
    """
        return cpio_file_system.CPIOFileSystem(resolver_context)
Ejemplo n.º 3
0
  def setUp(self):
    """Sets up the needed objects used throughout the test."""
    self._resolver_context = context.Context()
    test_file = self._GetTestFilePath(['syslog.bin.cpio'])
    self._os_path_spec = os_path_spec.OSPathSpec(location=test_file)
    self._cpio_path_spec = cpio_path_spec.CPIOPathSpec(
        location='/syslog', parent=self._os_path_spec)

    self._file_system = cpio_file_system.CPIOFileSystem(self._resolver_context)
    self._file_system.Open(self._cpio_path_spec)
Ejemplo n.º 4
0
  def NewFileSystem(self, resolver_context, path_spec):
    """Creates a new file system object.

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

    Returns:
      FileSystem: file system.
    """
    return cpio_file_system.CPIOFileSystem(resolver_context, path_spec)
Ejemplo n.º 5
0
    def testGetRootFileEntry(self):
        """Test the get root file entry functionality."""
        file_system = cpio_file_system.CPIOFileSystem(self._resolver_context,
                                                      self._cpio_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.º 6
0
    def testFileEntryExistsByPathSpec(self):
        """Test the file entry exists by path specification functionality."""
        file_system = cpio_file_system.CPIOFileSystem(self._resolver_context)
        self.assertIsNotNone(file_system)

        file_system.Open(self._cpio_path_spec)

        path_spec = cpio_path_spec.CPIOPathSpec(location='/syslog',
                                                parent=self._os_path_spec)
        self.assertTrue(file_system.FileEntryExistsByPathSpec(path_spec))

        path_spec = cpio_path_spec.CPIOPathSpec(location='/bogus',
                                                parent=self._os_path_spec)
        self.assertFalse(file_system.FileEntryExistsByPathSpec(path_spec))

        file_system.Close()
Ejemplo n.º 7
0
    def setUp(self):
        """Sets up the needed objects used throughout the test."""
        self._resolver_context = context.Context()
        test_path = self._GetTestFilePath(['syslog.bin.cpio'])
        self._SkipIfPathNotExists(test_path)

        self._os_path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_OS, location=test_path)
        self._cpio_path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_CPIO,
            location='/syslog',
            parent=self._os_path_spec)

        self._file_system = cpio_file_system.CPIOFileSystem(
            self._resolver_context, self._cpio_path_spec)
        self._file_system.Open()
Ejemplo n.º 8
0
    def testFileEntryExistsByPathSpec(self):
        """Test the file entry exists by path specification functionality."""
        file_system = cpio_file_system.CPIOFileSystem(self._resolver_context,
                                                      self._cpio_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()

        path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_CPIO,
            location='/syslog',
            parent=self._os_path_spec)
        self.assertTrue(file_system.FileEntryExistsByPathSpec(path_spec))

        path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_CPIO,
            location='/bogus',
            parent=self._os_path_spec)
        self.assertFalse(file_system.FileEntryExistsByPathSpec(path_spec))
Ejemplo n.º 9
0
    def testGetFileEntryByPathSpec(self):
        """Tests the GetFileEntryByPathSpec function."""
        file_system = cpio_file_system.CPIOFileSystem(self._resolver_context)
        self.assertIsNotNone(file_system)

        file_system.Open(self._cpio_path_spec)

        path_spec = cpio_path_spec.CPIOPathSpec(location='/syslog',
                                                parent=self._os_path_spec)
        file_entry = file_system.GetFileEntryByPathSpec(path_spec)

        self.assertIsNotNone(file_entry)
        self.assertEqual(file_entry.name, 'syslog')

        path_spec = cpio_path_spec.CPIOPathSpec(location='/bogus',
                                                parent=self._os_path_spec)
        file_entry = file_system.GetFileEntryByPathSpec(path_spec)

        self.assertIsNone(file_entry)

        file_system.Close()
Ejemplo n.º 10
0
    def testGetFileEntryByPathSpec(self):
        """Tests the GetFileEntryByPathSpec function."""
        file_system = cpio_file_system.CPIOFileSystem(self._resolver_context,
                                                      self._cpio_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()

        path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_CPIO,
            location='/syslog',
            parent=self._os_path_spec)
        file_entry = file_system.GetFileEntryByPathSpec(path_spec)

        self.assertIsNotNone(file_entry)
        self.assertEqual(file_entry.name, 'syslog')

        path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_CPIO,
            location='/bogus',
            parent=self._os_path_spec)
        file_entry = file_system.GetFileEntryByPathSpec(path_spec)

        self.assertIsNone(file_entry)