Exemple #1
0
    def testRead(self):
        """Test the read functionality."""
        file_object = cpio_file_io.CPIOFile(self._resolver_context,
                                            self._cpio_path_spec)
        file_object.Open()

        self._TestReadFileObject(file_object)
Exemple #2
0
    def testOpenClosePathSpec(self):
        """Test the open and close functionality using a path specification."""
        file_object = cpio_file_io.CPIOFile(self._resolver_context,
                                            self._cpio_path_spec)
        file_object.Open()

        self._TestGetSizeFileObject(file_object)
Exemple #3
0
    def testSeek(self):
        """Test the seek functionality."""
        file_object = cpio_file_io.CPIOFile(self._resolver_context)
        file_object.open(path_spec=self._cpio_path_spec)

        self._TestSeekFileObject(file_object)

        file_object.close()
    def NewFileObject(self, resolver_context):
        """Creates a new file-like object.

    Args:
      resolver_context (Context): resolver context.

    Returns:
      FileIO: file-like object.
    """
        return cpio_file_io.CPIOFile(resolver_context)
Exemple #5
0
  def NewFileObject(self, resolver_context, path_spec):
    """Creates a new file input/output (IO) object.

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

    Returns:
      FileIO: file input/output (IO) object.
    """
    return cpio_file_io.CPIOFile(resolver_context, path_spec)