File: test_commandlinelexer.py

package info (click to toggle)
syslog-ng 4.8.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,456 kB
  • sloc: ansic: 177,631; python: 13,035; cpp: 11,611; makefile: 7,012; sh: 5,147; java: 3,651; xml: 3,344; yacc: 1,377; lex: 599; perl: 193; awk: 190; objc: 162
file content (155 lines) | stat: -rw-r--r-- 6,201 bytes parent folder | download | duplicates (6)
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#############################################################################
# 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 .. import commandlinelexer


class TestCommandLineLexer(TestLexer):

    def _construct_lexer(self):
        return commandlinelexer.CommandLineLexer()

    def test_lexer_returns_none_for_empty_string(self):
        self._lexer.input("")
        self._assert_next_token_is_none()

    def test_single_quote_character_is_returned_as_a_partial_token(self):
        for quote in ('"', "'"):
            self._lexer.input(quote)
            self._assert_next_token_is_partial()

    def test_pair_of_quotes_is_returned_as_an_empty_string(self):
        self._lexer.input("''")
        self._next_token()
        self._assert_current_token_is_not_partial()
        self._assert_current_token_value_equals('')

    def test_quoted_character_is_returned_as_the_character(self):
        self._lexer.input("'a'")
        self._next_token()
        self._assert_current_token_is_not_partial()
        self._assert_current_token_value_equals('a')

    def test_quoted_string_is_returned_as_the_string(self):
        self._lexer.input('"foo bar"')
        self._assert_next_token_value_equals('foo bar')

    def test_unquoted_string_is_returned_as_the_string(self):
        self._lexer.input('foo')
        self._assert_next_token_value_equals('foo')

    def test_unquoted_prefix_and_then_a_quoted_string_is_concatenated(self):
        self._lexer.input('foo"bar"')
        self._assert_next_token_value_equals('foobar')

    def test_double_quotes_allow_backslash_as_a_single_char_escape(self):
        self._lexer.input(r'"foo\""')
        self._assert_next_token_value_equals('foo"')

    def test_white_space_separates_tokens(self):
        self._lexer.input("""'foo'  "bar"  baz  """)
        self._assert_next_token_value_equals('foo')
        self._assert_next_token_value_equals('bar')
        self._assert_next_token_value_equals('baz')
        self._assert_next_token_is_none()

    def test_unclosed_string_is_returned_as_a_partial_token(self):
        self._lexer.input("""'foo' "bar" 'baz""")
        self._next_token()
        self._assert_current_token_value_equals('foo')
        self._assert_current_token_is_not_partial()

        self._next_token()
        self._assert_current_token_value_equals('bar')
        self._assert_current_token_is_not_partial()

        self._next_token()
        self._assert_current_token_value_equals('baz')
        self._assert_current_token_is_partial()

    def test_single_opened_paren_is_returned_as_a_partial_token(self):
        self._lexer.input("(")
        self._next_token()
        self._assert_current_token_value_equals('(')
        self._assert_current_token_is_partial()

    def test_pair_of_parens_is_returned_as_a_pair_of_parens(self):
        self._lexer.input("()")

        self._next_token()
        self._assert_current_token_value_equals('()')
        self._assert_current_token_is_not_partial()

    def test_token_enclosed_in_parens_is_returned_as_a_token_in_parens(self):
        self._lexer.input("(foo)")
        self._next_token()
        self._assert_current_token_value_equals('(foo)')
        self._assert_current_token_is_not_partial()

    def test_whitespace_in_parens_doesnt_terminate_the_token(self):
        self._lexer.input("(foo bar)")
        self._next_token()
        self._assert_current_token_value_equals('(foo bar)')
        self._assert_current_token_is_not_partial()

    def test_closing_paren_terminates_the_token_only_if_properly_paired(self):
        self._lexer.input("(foo bar (baz bax)) next-token")
        self._next_token()
        self._assert_current_token_value_equals('(foo bar (baz bax))')
        self._assert_current_token_is_not_partial()

        self._next_token()
        self._assert_current_token_value_equals('next-token')
        self._assert_current_token_is_not_partial()

    def test_one_too_many_closing_parens_is_interpreted_as_a_separate_token(self):
        self._lexer.input("(foo bar )) next-token")

        self._next_token()
        self._assert_current_token_value_equals('(foo bar )')
        self._assert_current_token_is_not_partial()

        self._next_token()
        self._assert_current_token_value_equals(')')
        self._assert_current_token_is_not_partial()

        self._next_token()
        self._assert_current_token_value_equals('next-token')
        self._assert_current_token_is_not_partial()

    def test_quotes_within_parens_are_left_intact_so_a_recursive_parsing_will_find_them(self):
        self._lexer.input("(foo 'bar baz') next-token")
        self._next_token()
        self._assert_current_token_value_equals("(foo 'bar baz')")
        self._assert_current_token_is_not_partial()

    def test_parens_in_quotes_are_not_counted_against_the_paren_balance(self):
        self._lexer.input("(foo 'bar )')    next-token")
        self._next_token()
        self._assert_current_token_value_equals("(foo 'bar )')")
        self._assert_current_token_is_not_partial()

        self._next_token()
        self._assert_current_token_value_equals("next-token")
        self._assert_current_token_is_not_partial()