1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Tests for the extraction CLI arguments helper."""
from __future__ import unicode_literals
import argparse
import unittest
from plaso.cli import tools
from plaso.cli.helpers import extraction
from plaso.lib import errors
from tests.cli import test_lib as cli_test_lib
class ExtractionArgumentsHelperTest(cli_test_lib.CLIToolTestCase):
"""Tests for the extraction CLI arguments helper."""
# pylint: disable=no-member,protected-access
_EXPECTED_OUTPUT = """\
usage: cli_helper.py [--preferred_year YEAR] [--process_archives]
[--skip_compressed_streams]
Test argument parser.
optional arguments:
--preferred_year YEAR, --preferred-year YEAR
When a format\'s timestamp does not include a year,
e.g. syslog, use this as the initial year instead of
attempting auto-detection.
--process_archives, --process-archives
Process file entries embedded within archive files,
such as archive.tar and archive.zip. This can make
processing significantly slower.
--skip_compressed_streams, --skip-compressed-streams
Skip processing file content within compressed
streams, such as syslog.gz and syslog.bz2.
"""
def testAddArguments(self):
"""Tests the AddArguments function."""
argument_parser = argparse.ArgumentParser(
prog='cli_helper.py', description='Test argument parser.',
add_help=False,
formatter_class=cli_test_lib.SortedArgumentsHelpFormatter)
extraction.ExtractionArgumentsHelper.AddArguments(argument_parser)
output = self._RunArgparseFormatHelp(argument_parser)
self.assertEqual(output, self._EXPECTED_OUTPUT)
def testParseOptions(self):
"""Tests the ParseOptions function."""
options = cli_test_lib.TestOptions()
test_tool = tools.CLITool()
extraction.ExtractionArgumentsHelper.ParseOptions(options, test_tool)
self.assertIsNone(test_tool._preferred_year)
self.assertFalse(test_tool._process_archives)
self.assertTrue(test_tool._process_compressed_streams)
with self.assertRaises(errors.BadConfigObject):
extraction.ExtractionArgumentsHelper.ParseOptions(options, None)
# TODO: improve test coverage.
if __name__ == '__main__':
unittest.main()
|