summaryrefslogtreecommitdiffstats
path: root/tests/rules/test_empty_lines.py
blob: fbecbcd91a4a74c5145a1126b04e719618d4e43b (plain)
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
# Copyright (C) 2016 Adrien Vergé
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, 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, see <http://www.gnu.org/licenses/>.

from tests.common import RuleTestCase


class EmptyLinesTestCase(RuleTestCase):
    rule_id = 'empty-lines'

    def test_disabled(self):
        conf = ('empty-lines: disable\n'
                'new-line-at-end-of-file: disable\n'
                'document-start: disable\n')
        self.check('', conf)
        self.check('\n', conf)
        self.check('\n\n', conf)
        self.check('\n\n\n\n\n\n\n\n\n', conf)
        self.check('some text\n\n\n\n\n\n\n\n\n', conf)
        self.check('\n\n\n\n\n\n\n\n\nsome text', conf)
        self.check('\n\n\nsome text\n\n\n', conf)

    def test_empty_document(self):
        conf = ('empty-lines: {max: 0, max-start: 0, max-end: 0}\n'
                'new-line-at-end-of-file: disable\n'
                'document-start: disable\n')
        self.check('', conf)
        self.check('\n', conf)

    def test_0_empty_lines(self):
        conf = ('empty-lines: {max: 0, max-start: 0, max-end: 0}\n'
                'new-line-at-end-of-file: disable\n')
        self.check('---\n', conf)
        self.check('---\ntext\n\ntext', conf, problem=(3, 1))
        self.check('---\ntext\n\ntext\n', conf, problem=(3, 1))

    def test_10_empty_lines(self):
        conf = 'empty-lines: {max: 10, max-start: 0, max-end: 0}'
        self.check('---\nintro\n\n\n\n\n\n\n\n\n\n\nconclusion\n', conf)
        self.check('---\nintro\n\n\n\n\n\n\n\n\n\n\n\nconclusion\n', conf,
                   problem=(13, 1))

    def test_spaces(self):
        conf = ('empty-lines: {max: 1, max-start: 0, max-end: 0}\n'
                'trailing-spaces: disable\n')
        self.check('---\nintro\n\n \n\nconclusion\n', conf)
        self.check('---\nintro\n\n \n\n\nconclusion\n', conf, problem=(6, 1))

    def test_empty_lines_at_start(self):
        conf = ('empty-lines: {max: 2, max-start: 4, max-end: 0}\n'
                'document-start: disable\n')
        self.check('\n\n\n\nnon empty\n', conf)
        self.check('\n\n\n\n\nnon empty\n', conf, problem=(5, 1))

        conf = ('empty-lines: {max: 2, max-start: 0, max-end: 0}\n'
                'document-start: disable\n')
        self.check('non empty\n', conf)
        self.check('\nnon empty\n', conf, problem=(1, 1))

    def test_empty_lines_at_end(self):
        conf = ('empty-lines: {max: 2, max-start: 0, max-end: 4}\n'
                'document-start: disable\n')
        self.check('non empty\n\n\n\n\n', conf)
        self.check('non empty\n\n\n\n\n\n', conf, problem=(6, 1))
        conf = ('empty-lines: {max: 2, max-start: 0, max-end: 0}\n'
                'document-start: disable\n')
        self.check('non empty\n', conf)
        self.check('non empty\n\n', conf, problem=(2, 1))

    def test_with_dos_newlines(self):
        conf = ('empty-lines: {max: 2, max-start: 0, max-end: 0}\n'
                'new-lines: {type: dos}\n'
                'document-start: disable\n')
        self.check('---\r\n', conf)
        self.check('---\r\ntext\r\n\r\ntext\r\n', conf)
        self.check('\r\n---\r\ntext\r\n\r\ntext\r\n', conf,
                   problem=(1, 1))
        self.check('\r\n\r\n\r\n---\r\ntext\r\n\r\ntext\r\n', conf,
                   problem=(3, 1))
        self.check('---\r\ntext\r\n\r\n\r\n\r\ntext\r\n', conf,
                   problem=(5, 1))
        self.check('---\r\ntext\r\n\r\n\r\n\r\n\r\n\r\n\r\ntext\r\n', conf,
                   problem=(8, 1))
        self.check('---\r\ntext\r\n\r\ntext\r\n\r\n', conf,
                   problem=(5, 1))
        self.check('---\r\ntext\r\n\r\ntext\r\n\r\n\r\n\r\n', conf,
                   problem=(7, 1))