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
|
# -*- coding: utf-8 -*-
"""
Basic Apache Configuration Test
~~~~~~~~~~~~~~~~~--------------
:copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
import textwrap
import pytest
from pygments.token import Text, Number, Token
from pygments.lexers import configs
@pytest.fixture(scope='module')
def lexer():
yield configs.ApacheConfLexer()
def test_multiline_comment(lexer):
fragment = '#SecAction \\\n "id:\'900004\', \\\n phase:1, \\\n t:none, \\\n setvar:tx.anomaly_score_blocking=on, \\\n nolog, \\\n pass"\n \n'
tokens = [
(Token.Comment, '#SecAction \\\n "id:\'900004\', \\\n phase:1, \\\n t:none, \\\n setvar:tx.anomaly_score_blocking=on, \\\n nolog, \\\n pass"'),
(Token.Text, '\n \n'),
]
assert list(lexer.get_tokens(fragment)) == tokens
def test_multiline_argument(lexer):
fragment = 'SecAction \\\n "id:\'900001\', \\\n phase:1, \\\n t:none, \\\n setvar:tx.critical_anomaly_score=5, \\\n setvar:tx.error_anomaly_score=4, \\\n setvar:tx.warning_anomaly_score=3, \\\n setvar:tx.notice_anomaly_score=2, \\\n nolog, \\\n pass"\n'
tokens = [
(Token.Name.Builtin, 'SecAction'),
(Token.Text, ' '),
(Token.Text, '\\\n'),
(Token.Text, ' '),
(Token.Literal.String.Double, '"id:\'900001\', \\\n phase:1, \\\n t:none, \\\n setvar:tx.critical_anomaly_score=5, \\\n setvar:tx.error_anomaly_score=4, \\\n setvar:tx.warning_anomaly_score=3, \\\n setvar:tx.notice_anomaly_score=2, \\\n nolog, \\\n pass"'),
(Token.Text, ''),
(Token.Text, '\n'),
]
assert list(lexer.get_tokens(fragment)) == tokens
def test_directive_no_args(lexer):
fragment = 'Example\nServerName localhost'
tokens = [
(Token.Name.Builtin, 'Example'),
(Token.Text, ''),
(Token.Text, '\n'),
(Token.Name.Builtin, 'ServerName'),
(Token.Text, ' '),
(Token.Text, 'localhost'),
(Token.Text, ''),
(Token.Text, '\n'),
]
assert list(lexer.get_tokens(fragment)) == tokens
def test_include_globs(lexer):
fragment = 'Include /etc/httpd/conf.d/*.conf'
tokens = [
(Token.Name.Builtin, 'Include'),
(Token.Text, ' '),
(Token.String.Other, '/etc/httpd/conf.d/*.conf'),
(Token.Text, ''),
(Token.Text, '\n'),
]
assert list(lexer.get_tokens(fragment)) == tokens
def test_multi_include_globs(lexer):
fragment = 'Include /etc/httpd/conf.d/*/*.conf'
tokens = [
(Token.Name.Builtin, 'Include'),
(Token.Text, ' '),
(Token.String.Other, '/etc/httpd/conf.d/*/*.conf'),
(Token.Text, ''),
(Token.Text, '\n'),
]
assert list(lexer.get_tokens(fragment)) == tokens
def test_multi_include_globs_root(lexer):
fragment = 'Include /*conf/*.conf'
tokens = [
(Token.Name.Builtin, 'Include'),
(Token.Text, ' '),
(Token.String.Other, '/*conf/*.conf'),
(Token.Text, ''),
(Token.Text, '\n'),
]
assert list(lexer.get_tokens(fragment)) == tokens
def test_fix_lock_absolute_path(lexer):
fragment = 'LockFile /var/lock/apache2/accept.lock'
tokens = [
(Token.Name.Builtin, 'LockFile'),
(Token.Text, ' '),
(Token.String.Other, '/var/lock/apache2/accept.lock'),
(Token.Text, ''),
(Token.Text, '\n'),
]
assert list(lexer.get_tokens(fragment)) == tokens
|