Example #1
0
    def testOpenAndClose(self):
        """Test the open and close functionality."""
        file_system = compressed_stream_file_system.CompressedStreamFileSystem(
            self._resolver_context, self._compressed_stream_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()
    def NewFileSystem(self, resolver_context):
        """Creates a new file system object.

    Args:
      resolver_context (Context): resolver context.

    Returns:
      FileSystem: file system.
    """
        return compressed_stream_file_system.CompressedStreamFileSystem(
            resolver_context)
Example #3
0
    def testFileEntryExistsByPathSpec(self):
        """Test the file entry exists by path specification functionality."""
        file_system = compressed_stream_file_system.CompressedStreamFileSystem(
            self._resolver_context, self._compressed_stream_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()

        self.assertTrue(
            file_system.FileEntryExistsByPathSpec(
                self._compressed_stream_path_spec))
Example #4
0
    def testGetRootFileEntry(self):
        """Test the get root file entry functionality."""
        file_system = compressed_stream_file_system.CompressedStreamFileSystem(
            self._resolver_context, self._compressed_stream_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()

        file_entry = file_system.GetRootFileEntry()

        self.assertIsNotNone(file_entry)
        self.assertEqual(file_entry.name, '')
    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 compressed_stream_file_system.CompressedStreamFileSystem(
            resolver_context, path_spec)
Example #6
0
    def testGetFileEntryByPathSpec(self):
        """Tests the GetFileEntryByPathSpec function."""
        file_system = compressed_stream_file_system.CompressedStreamFileSystem(
            self._resolver_context, self._compressed_stream_path_spec)
        self.assertIsNotNone(file_system)

        file_system.Open()

        file_entry = file_system.GetFileEntryByPathSpec(
            self._compressed_stream_path_spec)

        self.assertIsNotNone(file_entry)
        self.assertEqual(file_entry.name, '')
Example #7
0
    def testGetRootFileEntry(self):
        """Test the get root file entry functionality."""
        file_system = compressed_stream_file_system.CompressedStreamFileSystem(
            self._resolver_context)
        self.assertNotEqual(file_system, None)

        file_system.Open(path_spec=self._compressed_stream_path_spec)

        file_entry = file_system.GetRootFileEntry()

        self.assertNotEqual(file_entry, None)
        self.assertEqual(file_entry.name, u'')

        file_system.Close()
    def setUp(self):
        """Sets up the needed objects used throughout the test."""
        self._resolver_context = context.Context()
        test_file = self._GetTestFilePath(['syslog.bz2'])
        path_spec = os_path_spec.OSPathSpec(location=test_file)
        self._compressed_stream_path_spec = (
            compressed_stream_path_spec.CompressedStreamPathSpec(
                compression_method=definitions.COMPRESSION_METHOD_BZIP2,
                parent=path_spec))

        self._file_system = (
            compressed_stream_file_system.CompressedStreamFileSystem(
                self._resolver_context))
        self._file_system.Open(self._compressed_stream_path_spec)
Example #9
0
    def testGetFileEntryByPathSpec(self):
        """Test the get entry by path specification functionality."""
        file_system = compressed_stream_file_system.CompressedStreamFileSystem(
            self._resolver_context)
        self.assertNotEqual(file_system, None)

        file_system.Open(path_spec=self._compressed_stream_path_spec)

        file_entry = file_system.GetFileEntryByPathSpec(
            self._compressed_stream_path_spec)

        self.assertNotEqual(file_entry, None)
        self.assertEqual(file_entry.name, u'')

        file_system.Close()
    def setUp(self):
        """Sets up the needed objects used throughout the test."""
        self._resolver_context = context.Context()
        test_path = self._GetTestFilePath(['syslog.bz2'])
        self._SkipIfPathNotExists(test_path)

        test_os_path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_OS, location=test_path)
        self._compressed_stream_path_spec = path_spec_factory.Factory.NewPathSpec(
            definitions.TYPE_INDICATOR_COMPRESSED_STREAM,
            compression_method=definitions.COMPRESSION_METHOD_BZIP2,
            parent=test_os_path_spec)

        self._file_system = (
            compressed_stream_file_system.CompressedStreamFileSystem(
                self._resolver_context, self._compressed_stream_path_spec))
        self._file_system.Open()