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.
347 lines
14 KiB
Python
347 lines
14 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2018 ClearScore
|
|
#
|
|
# 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 QuotedTestCase(RuleTestCase):
|
|
rule_id = 'quoted-strings'
|
|
|
|
def test_disabled(self):
|
|
conf = 'quoted-strings: disable'
|
|
|
|
self.check('---\n'
|
|
'foo: bar\n', conf)
|
|
self.check('---\n'
|
|
'foo: "bar"\n', conf)
|
|
self.check('---\n'
|
|
'foo: \'bar\'\n', conf)
|
|
self.check('---\n'
|
|
'bar: 123\n', conf)
|
|
self.check('---\n'
|
|
'bar: "123"\n', conf)
|
|
|
|
def test_quote_type_any(self):
|
|
conf = 'quoted-strings: {quote-type: any}\n'
|
|
|
|
self.check('---\n'
|
|
'boolean1: true\n'
|
|
'number1: 123\n'
|
|
'string1: foo\n' # fails
|
|
'string2: "foo"\n'
|
|
'string3: "true"\n'
|
|
'string4: "123"\n'
|
|
'string5: \'bar\'\n'
|
|
'string6: !!str genericstring\n'
|
|
'string7: !!str 456\n'
|
|
'string8: !!str "quotedgenericstring"\n'
|
|
'binary: !!binary binstring\n'
|
|
'integer: !!int intstring\n'
|
|
'boolean2: !!bool boolstring\n'
|
|
'boolean3: !!bool "quotedboolstring"\n',
|
|
conf, problem=(4, 10))
|
|
self.check('---\n'
|
|
'multiline string 1: |\n'
|
|
' line 1\n'
|
|
' line 2\n'
|
|
'multiline string 2: >\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 3:\n'
|
|
' word 1\n' # fails
|
|
' word 2\n'
|
|
'multiline string 4:\n'
|
|
' "word 1\\\n'
|
|
' word 2"\n',
|
|
conf, problem1=(9, 3))
|
|
|
|
def test_quote_type_single(self):
|
|
conf = 'quoted-strings: {quote-type: single}\n'
|
|
|
|
self.check('---\n'
|
|
'boolean1: true\n'
|
|
'number1: 123\n'
|
|
'string1: foo\n' # fails
|
|
'string2: "foo"\n' # fails
|
|
'string3: "true"\n' # fails
|
|
'string4: "123"\n' # fails
|
|
'string5: \'bar\'\n'
|
|
'string6: !!str genericstring\n'
|
|
'string7: !!str 456\n'
|
|
'string8: !!str "quotedgenericstring"\n'
|
|
'binary: !!binary binstring\n'
|
|
'integer: !!int intstring\n'
|
|
'boolean2: !!bool boolstring\n'
|
|
'boolean3: !!bool "quotedboolstring"\n',
|
|
conf, problem1=(4, 10), problem2=(5, 10),
|
|
problem3=(6, 10), problem4=(7, 10))
|
|
self.check('---\n'
|
|
'multiline string 1: |\n'
|
|
' line 1\n'
|
|
' line 2\n'
|
|
'multiline string 2: >\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 3:\n'
|
|
' word 1\n' # fails
|
|
' word 2\n'
|
|
'multiline string 4:\n'
|
|
' "word 1\\\n'
|
|
' word 2"\n',
|
|
conf, problem1=(9, 3), problem2=(12, 3))
|
|
|
|
def test_quote_type_double(self):
|
|
conf = 'quoted-strings: {quote-type: double}\n'
|
|
|
|
self.check('---\n'
|
|
'boolean1: true\n'
|
|
'number1: 123\n'
|
|
'string1: foo\n' # fails
|
|
'string2: "foo"\n'
|
|
'string3: "true"\n'
|
|
'string4: "123"\n'
|
|
'string5: \'bar\'\n' # fails
|
|
'string6: !!str genericstring\n'
|
|
'string7: !!str 456\n'
|
|
'string8: !!str "quotedgenericstring"\n'
|
|
'binary: !!binary binstring\n'
|
|
'integer: !!int intstring\n'
|
|
'boolean2: !!bool boolstring\n'
|
|
'boolean3: !!bool "quotedboolstring"\n',
|
|
conf, problem1=(4, 10), problem2=(8, 10))
|
|
self.check('---\n'
|
|
'multiline string 1: |\n'
|
|
' line 1\n'
|
|
' line 2\n'
|
|
'multiline string 2: >\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 3:\n'
|
|
' word 1\n' # fails
|
|
' word 2\n'
|
|
'multiline string 4:\n'
|
|
' "word 1\\\n'
|
|
' word 2"\n',
|
|
conf, problem1=(9, 3))
|
|
|
|
def test_disallow_redundant_quotes(self):
|
|
conf = 'quoted-strings: {required: only-when-needed}\n'
|
|
|
|
self.check('---\n'
|
|
'boolean1: true\n'
|
|
'number1: 123\n'
|
|
'string1: foo\n'
|
|
'string2: "foo"\n' # fails
|
|
'string3: "true"\n'
|
|
'string4: "123"\n'
|
|
'string5: \'bar\'\n' # fails
|
|
'string6: !!str genericstring\n'
|
|
'string7: !!str 456\n'
|
|
'string8: !!str "quotedgenericstring"\n'
|
|
'binary: !!binary binstring\n'
|
|
'integer: !!int intstring\n'
|
|
'boolean2: !!bool boolstring\n'
|
|
'boolean3: !!bool "quotedboolstring"\n',
|
|
conf, problem1=(5, 10), problem2=(8, 10))
|
|
self.check('---\n'
|
|
'multiline string 1: |\n'
|
|
' line 1\n'
|
|
' line 2\n'
|
|
'multiline string 2: >\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 3:\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 4:\n'
|
|
' "word 1\\\n' # fails
|
|
' word 2"\n',
|
|
conf, problem1=(12, 3))
|
|
|
|
def test_disallow_redundant_single_quotes(self):
|
|
conf = 'quoted-strings: {quote-type: single, ' + \
|
|
'required: only-when-needed}\n'
|
|
|
|
self.check('---\n'
|
|
'boolean1: true\n'
|
|
'number1: 123\n'
|
|
'string1: foo\n'
|
|
'string2: "foo"\n' # fails
|
|
'string3: "true"\n' # fails
|
|
'string4: "123"\n' # fails
|
|
'string5: \'bar\'\n' # fails
|
|
'string6: !!str genericstring\n'
|
|
'string7: !!str 456\n'
|
|
'string8: !!str "quotedgenericstring"\n'
|
|
'binary: !!binary binstring\n'
|
|
'integer: !!int intstring\n'
|
|
'boolean2: !!bool boolstring\n'
|
|
'boolean3: !!bool "quotedboolstring"\n',
|
|
conf, problem1=(5, 10), problem2=(6, 10),
|
|
problem3=(7, 10), problem4=(8, 10))
|
|
self.check('---\n'
|
|
'multiline string 1: |\n'
|
|
' line 1\n'
|
|
' line 2\n'
|
|
'multiline string 2: >\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 3:\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 4:\n'
|
|
' "word 1\\\n' # fails
|
|
' word 2"\n',
|
|
conf, problem1=(12, 3))
|
|
|
|
def test_single_quotes_required(self):
|
|
conf = 'quoted-strings: {quote-type: single, required: true}\n'
|
|
|
|
self.check('---\n'
|
|
'boolean1: true\n'
|
|
'number1: 123\n'
|
|
'string1: foo\n' # fails
|
|
'string2: "foo"\n' # fails
|
|
'string3: "true"\n' # fails
|
|
'string4: "123"\n' # fails
|
|
'string5: \'bar\'\n'
|
|
'string6: !!str genericstring\n'
|
|
'string7: !!str 456\n'
|
|
'string8: !!str "quotedgenericstring"\n'
|
|
'binary: !!binary binstring\n'
|
|
'integer: !!int intstring\n'
|
|
'boolean2: !!bool boolstring\n'
|
|
'boolean3: !!bool "quotedboolstring"\n',
|
|
conf, problem1=(4, 10), problem2=(5, 10),
|
|
problem3=(6, 10), problem4=(7, 10))
|
|
self.check('---\n'
|
|
'multiline string 1: |\n'
|
|
' line 1\n'
|
|
' line 2\n'
|
|
'multiline string 2: >\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 3:\n'
|
|
' word 1\n' # fails
|
|
' word 2\n'
|
|
'multiline string 4:\n'
|
|
' "word 1\\\n' # fails
|
|
' word 2"\n',
|
|
conf, problem1=(9, 3), problem2=(12, 3))
|
|
|
|
def test_any_quotes_relaxed(self):
|
|
conf = 'quoted-strings: {quote-type: any, required: false}\n'
|
|
|
|
self.check('---\n'
|
|
'boolean1: true\n'
|
|
'number1: 123\n'
|
|
'string1: foo\n'
|
|
'string2: "foo"\n'
|
|
'string3: "true"\n'
|
|
'string4: "123"\n'
|
|
'string5: \'bar\'\n'
|
|
'string6: !!str genericstring\n'
|
|
'string7: !!str 456\n'
|
|
'string8: !!str "quotedgenericstring"\n'
|
|
'binary: !!binary binstring\n'
|
|
'integer: !!int intstring\n'
|
|
'boolean2: !!bool boolstring\n'
|
|
'boolean3: !!bool "quotedboolstring"\n',
|
|
conf)
|
|
self.check('---\n'
|
|
'multiline string 1: |\n'
|
|
' line 1\n'
|
|
' line 2\n'
|
|
'multiline string 2: >\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 3:\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 4:\n'
|
|
' "word 1\\\n'
|
|
' word 2"\n',
|
|
conf)
|
|
|
|
def test_single_quotes_relaxed(self):
|
|
conf = 'quoted-strings: {quote-type: single, required: false}\n'
|
|
|
|
self.check('---\n'
|
|
'boolean1: true\n'
|
|
'number1: 123\n'
|
|
'string1: foo\n'
|
|
'string2: "foo"\n' # fails
|
|
'string3: "true"\n' # fails
|
|
'string4: "123"\n' # fails
|
|
'string5: \'bar\'\n'
|
|
'string6: !!str genericstring\n'
|
|
'string7: !!str 456\n'
|
|
'string8: !!str "quotedgenericstring"\n'
|
|
'binary: !!binary binstring\n'
|
|
'integer: !!int intstring\n'
|
|
'boolean2: !!bool boolstring\n'
|
|
'boolean3: !!bool "quotedboolstring"\n',
|
|
conf, problem2=(5, 10),
|
|
problem3=(6, 10), problem4=(7, 10))
|
|
self.check('---\n'
|
|
'multiline string 1: |\n'
|
|
' line 1\n'
|
|
' line 2\n'
|
|
'multiline string 2: >\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 3:\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 4:\n'
|
|
' "word 1\\\n' # fails
|
|
' word 2"\n',
|
|
conf, problem1=(12, 3))
|
|
|
|
def test_quotes_required(self):
|
|
conf = 'quoted-strings: {quote-type: any, required: true}\n'
|
|
|
|
self.check('---\n'
|
|
'boolean1: true\n'
|
|
'number1: 123\n'
|
|
'string1: foo\n' # fails
|
|
'string2: "foo"\n'
|
|
'string3: "true"\n'
|
|
'string4: "123"\n'
|
|
'string5: \'bar\'\n'
|
|
'string6: !!str genericstring\n'
|
|
'string7: !!str 456\n'
|
|
'string8: !!str "quotedgenericstring"\n'
|
|
'binary: !!binary binstring\n'
|
|
'integer: !!int intstring\n'
|
|
'boolean2: !!bool boolstring\n'
|
|
'boolean3: !!bool "quotedboolstring"\n',
|
|
conf, problem2=(4, 10))
|
|
self.check('---\n'
|
|
'multiline string 1: |\n'
|
|
' line 1\n'
|
|
' line 2\n'
|
|
'multiline string 2: >\n'
|
|
' word 1\n'
|
|
' word 2\n'
|
|
'multiline string 3:\n'
|
|
' word 1\n' # fails
|
|
' word 2\n'
|
|
'multiline string 4:\n'
|
|
' "word 1\\\n'
|
|
' word 2"\n',
|
|
conf, problem1=(9, 3))
|