You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
192 lines
6.1 KiB
Python
192 lines
6.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# 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.rules.common import RuleTestCase
|
|
|
|
|
|
class IndentationTestCase(RuleTestCase):
|
|
rule_id = 'indentation'
|
|
|
|
def test_disabled(self):
|
|
conf = 'indentation: disable'
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' k1: v1\n'
|
|
'obj2:\n'
|
|
' k2:\n'
|
|
' - 8\n'
|
|
' k3:\n'
|
|
' val\n'
|
|
'...\n', conf)
|
|
self.check('---\n'
|
|
' o:\n'
|
|
' k1: v1\n'
|
|
' p:\n'
|
|
' k3:\n'
|
|
' val\n'
|
|
'...\n', conf)
|
|
self.check('---\n'
|
|
' - o:\n'
|
|
' k1: v1\n'
|
|
' - p: kdjf\n'
|
|
' - q:\n'
|
|
' k3:\n'
|
|
' - val\n'
|
|
'...\n', conf)
|
|
|
|
def test_one_space(self):
|
|
conf = 'indentation: {spaces: 1}'
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' k1:\n'
|
|
' - a\n'
|
|
' - b\n'
|
|
' k2: v2\n'
|
|
'...\n', conf)
|
|
|
|
def test_two_spaces(self):
|
|
conf = 'indentation: {spaces: 2}'
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' k1:\n'
|
|
' - a\n'
|
|
' - b\n'
|
|
' k2: v2\n'
|
|
'...\n', conf)
|
|
|
|
def test_three_spaces(self):
|
|
conf = 'indentation: {spaces: 3}'
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' k1:\n'
|
|
' - a\n'
|
|
' - b\n'
|
|
' k2: v2\n'
|
|
'...\n', conf)
|
|
|
|
def test_under_indented(self):
|
|
conf = 'indentation: {spaces: 2}'
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' val: 1\n'
|
|
'...\n', conf, problem=(3, 2))
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' k1:\n'
|
|
' - a\n'
|
|
'...\n', conf, problem=(4, 4))
|
|
conf = 'indentation: {spaces: 4}'
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' val: 1\n'
|
|
'...\n', conf, problem=(3, 4))
|
|
self.check('---\n'
|
|
'- el1\n'
|
|
'- el2:\n'
|
|
' - subel\n'
|
|
'...\n', conf, problem=(4, 4))
|
|
|
|
def test_over_indented(self):
|
|
conf = 'indentation: {spaces: 2}'
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' val: 1\n'
|
|
'...\n', conf, problem=(3, 4))
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' k1:\n'
|
|
' - a\n'
|
|
'...\n', conf, problem=(4, 6))
|
|
conf = 'indentation: {spaces: 4}'
|
|
self.check('---\n'
|
|
'object:\n'
|
|
' val: 1\n'
|
|
'...\n', conf, problem=(3, 6))
|
|
self.check('---\n'
|
|
' object:\n'
|
|
' val: 1\n'
|
|
'...\n', conf, problem=(2, 2))
|
|
self.check('---\n'
|
|
'- el1\n'
|
|
'- el2:\n'
|
|
' - subel\n'
|
|
'...\n', conf, problem=(4, 6))
|
|
self.check('---\n'
|
|
'- el1\n'
|
|
'- el2:\n'
|
|
' - subel\n'
|
|
'...\n', conf, problem=(4, 15))
|
|
self.check('---\n'
|
|
' - el1\n'
|
|
' - el2:\n'
|
|
' - subel\n'
|
|
'...\n', conf, problem1=(2, 3), problem2=(4, 7))
|
|
|
|
def test_multi_lines(self):
|
|
self.check('---\n'
|
|
'long_string: >\n'
|
|
' bla bla blah\n'
|
|
' blah bla bla\n'
|
|
'...\n', None)
|
|
self.check('---\n'
|
|
'- long_string: >\n'
|
|
' bla bla blah\n'
|
|
' blah bla bla\n'
|
|
'...\n', None)
|
|
self.check('---\n'
|
|
'obj:\n'
|
|
' - long_string: >\n'
|
|
' bla bla blah\n'
|
|
' blah bla bla\n'
|
|
'...\n', None)
|
|
|
|
def test_nested_collections(self):
|
|
self.check('---\n'
|
|
'- o:\n'
|
|
' k1: v1\n'
|
|
'...\n', None)
|
|
self.check('---\n'
|
|
'- o:\n'
|
|
' k1: v1\n'
|
|
'...\n', None, problem=(3, 4))
|
|
self.check('---\n'
|
|
'- o:\n'
|
|
' k1: v1\n'
|
|
'...\n', None, problem=(3, 6))
|
|
|
|
def test_return(self):
|
|
self.check('---\n'
|
|
'a:\n'
|
|
' b:\n'
|
|
' c:\n'
|
|
' d:\n'
|
|
' e:\n'
|
|
' f:\n'
|
|
'g:\n'
|
|
'...\n', None)
|
|
# self.check('---\n'
|
|
# 'a:\n'
|
|
# ' b:\n'
|
|
# ' c:\n'
|
|
# ' d:\n'
|
|
# '...\n', None, problem=(5, 5))
|
|
# self.check('---\n'
|
|
# 'a:\n'
|
|
# ' b:\n'
|
|
# ' c:\n'
|
|
# ' d:\n'
|
|
# '...\n', None, problem=(5, 2))
|