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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
#############################################################################
# Copyright (c) 2015-2016 Balabit
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 as published
# by the Free Software Foundation, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# As an additional exemption you are allowed to compile & link against the
# OpenSSL libraries as published by the OpenSSL project. See the file
# COPYING for details.
#
#############################################################################
from __future__ import absolute_import, print_function
from .test_lexer import TestLexer
from ..getoptlexer import GetoptLexer
from ..commandlinelexer import CommandLineLexer
class TestGetoptLexer(TestLexer):
def setUp(self):
self._known_commands = ['print', 'foo-bar']
self._aliases = {
'p': 'print',
'fb': 'foo-bar'
}
self._lexer = self._construct_lexer()
# pylint: disable=arguments-differ
def _construct_lexer(self, known_commands=None, known_options=None, aliases=None):
return GetoptLexer(CommandLineLexer(),
known_commands=known_commands or self._known_commands,
known_options=known_options,
aliases=aliases or self._aliases)
def test_lexer_returns_command_token_for_an_unknown_command_as_the_first_token(self):
self._lexer.input("unknown-cmd")
token = self._next_token()
self.assertEqual(token.type, "COMMAND")
def test_lexer_returns_specific_token_for_known_commands(self):
for command in self._known_commands:
self._lexer.input(command)
self._assert_next_token_type_equals(f"COMMAND_{command.upper().replace('-', '_')}")
def test_lexer_translates_aliases(self):
for (alias, command) in self._aliases.items():
self._lexer.input(alias)
self._assert_next_token_type_equals(f"COMMAND_{command.upper().replace('-', '_')}")
def test_known_commands_are_not_returned_as_tokens_for_non_first_arguments(self):
self._lexer.input("print print")
self.assertEqual(self._next_token().type, "COMMAND_PRINT")
self.assertEqual(self._next_token().type, "ARG")
def test_double_quoted_arguments_are_returned_as_a_single_token(self):
self._lexer.input('print "foo bar"')
self.assertEqual(self._next_token().type, "COMMAND_PRINT")
token = self._next_token()
self.assertEqual(token.type, "ARG")
self.assertEqual(token.value, "foo bar")
def test_lexer_returns_token_in_a_sequence(self):
self._lexer.input('''print foo bar''')
self._assert_next_token_type_equals("COMMAND_PRINT")
self._assert_next_arg_equals('foo')
self._assert_next_arg_equals('bar')
self._assert_last_token_reached()
def test_lexer_handles_quoted_args_by_unqouting_them(self):
self._lexer.input('''print "foo bar" 'bar foo' ''')
self._assert_next_token_type_equals("COMMAND_PRINT")
self._assert_next_arg_equals('foo bar')
self._assert_next_arg_equals('bar foo')
self._assert_last_token_reached()
def test_lexer_handles_parenthesized_expression_as_a_single_token(self):
self._lexer.input('''print (''')
self._assert_next_token_type_equals("COMMAND_PRINT")
self._assert_next_arg_equals("(")
self._lexer.input('''print ( )''')
self._assert_next_token_type_equals("COMMAND_PRINT")
self._assert_next_arg_equals("( )")
self._lexer.input('''print (1 + 1)''')
self._assert_next_token_type_equals("COMMAND_PRINT")
self._assert_next_arg_equals("(1 + 1)")
self._lexer.input('''print ) )''')
self._assert_next_token_type_equals("COMMAND_PRINT")
self._assert_next_arg_equals(")")
self._assert_next_arg_equals(")")
self._lexer.input('''print ($MSG == foobar)''')
self._assert_next_token_type_equals("COMMAND_PRINT")
self._assert_next_arg_equals("($MSG == foobar)")
def test_lexer_translates_args_to_option_tokens_if_they_are_known(self):
self._lexer = self._construct_lexer(known_options=("--foo", "--bar", "-a", "-b", "abc"))
self._lexer.input('''print --foo --bar -a -b abc''')
self._assert_next_token_type_equals("COMMAND_PRINT")
self._assert_next_token_type_equals("OPT__FOO")
self._assert_next_token_type_equals("OPT__BAR")
self._assert_next_token_type_equals("OPT_A")
self._assert_next_token_type_equals("OPT_B")
self._assert_next_token_type_equals("OPTABC")
def test_lexer_doesnt_translate_command_token_as_an_option(self):
self._lexer = self._construct_lexer(known_options=("--foo", "--bar", "-a", "-b"))
self._lexer.input('''--foo --bar -a -b''')
self._assert_next_token_equals("COMMAND", value="--foo")
def _assert_last_token_reached(self):
token = self._next_token()
self.assertIsNone(token)
def _assert_next_arg_equals(self, token_value):
token = self._next_token()
self.assertEqual(token.type, "ARG")
self.assertEqual(token.value, token_value)
|