summaryrefslogtreecommitdiffstats
path: root/tests/rules/test_octal_values.py
blob: be5b039ea031932daa00c2cef6900249868a2ce7 (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
# 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 OctalValuesTestCase(RuleTestCase):
    rule_id = 'octal-values'

    def test_disabled(self):
        conf = ('octal-values: disable\n'
                'new-line-at-end-of-file: disable\n'
                'document-start: disable\n')
        self.check('user-city: 010', conf)
        self.check('user-city: 0o10', conf)

    def test_implicit_octal_values(self):
        conf = ('octal-values:\n'
                '  forbid-implicit-octal: true\n'
                '  forbid-explicit-octal: false\n'
                'new-line-at-end-of-file: disable\n'
                'document-start: disable\n')
        self.check('after-tag: !custom_tag 010', conf)
        self.check('user-city: 010', conf, problem=(1, 15))
        self.check('user-city: abc', conf)
        self.check('user-city: 010,0571', conf)
        self.check("user-city: '010'", conf)
        self.check('user-city: "010"', conf)
        self.check('user-city:\n'
                   '  - 010', conf, problem=(2, 8))
        self.check('user-city: [010]', conf, problem=(1, 16))
        self.check('user-city: {beijing: 010}', conf, problem=(1, 25))
        self.check('explicit-octal: 0o10', conf)
        self.check('not-number: 0abc', conf)
        self.check('zero: 0', conf)
        self.check('hex-value: 0x10', conf)
        self.check('number-values:\n'
                   '  - 0.10\n'
                   '  - .01\n'
                   '  - 0e3\n', conf)
        self.check('with-decimal-digits: 012345678', conf)
        self.check('with-decimal-digits: 012345679', conf)

    def test_explicit_octal_values(self):
        conf = ('octal-values:\n'
                '  forbid-implicit-octal: false\n'
                '  forbid-explicit-octal: true\n'
                'new-line-at-end-of-file: disable\n'
                'document-start: disable\n')
        self.check('user-city: 0o10', conf, problem=(1, 16))
        self.check('user-city: abc', conf)
        self.check('user-city: 0o10,0571', conf)
        self.check("user-city: '0o10'", conf)
        self.check('user-city:\n'
                   '  - 0o10', conf, problem=(2, 9))
        self.check('user-city: [0o10]', conf, problem=(1, 17))
        self.check('user-city: {beijing: 0o10}', conf, problem=(1, 26))
        self.check('implicit-octal: 010', conf)
        self.check('not-number: 0oabc', conf)
        self.check('zero: 0', conf)
        self.check('hex-value: 0x10', conf)
        self.check('number-values:\n'
                   '  - 0.10\n'
                   '  - .01\n'
                   '  - 0e3\n', conf)
        self.check('user-city: "010"', conf)
        self.check('with-decimal-digits: 0o012345678', conf)
        self.check('with-decimal-digits: 0o012345679', conf)