File: test_other.py

package info (click to toggle)
python-hacking 4.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: python: 1,503; sh: 38; makefile: 23
file content (51 lines) | stat: -rw-r--r-- 1,905 bytes parent folder | download | duplicates (2)
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
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import ddt

from hacking.checks import other
from hacking import tests


@ddt.ddt
class OthersTestCase(tests.TestCase):
    """This tests hacking checks from the 'other' group."""

    @ddt.unpack
    @ddt.data(
        (1, 'LOG.debug("Test %s" % foo)', None),
        (0, 'LOG.info("Test %s", foo)', None),
        (1, 'LOG.info("Test {}".format(foo))', None),
        (0, 'LOG.error("Test %s" % foo)', '# noqa'),
        (1, 'LOG.debug("Test %s" % "foo")', None),
        (0, 'LOG.debug("Test %s", "foo")', None),
        (0, 'LOG.warning("Test %s", ",".join("%s:%s" % (a, b)))', None),
        (0, "LOG.warning('Testing some stuff')", None))
    def test_H904_hacking_delayed_string_interpolation(
            self, err_count, line, noqa):
        if err_count > 0:
            self.assertCheckFails(other.hacking_delayed_string_interpolation,
                                  line, noqa)
        else:
            self.assertCheckPasses(other.hacking_delayed_string_interpolation,
                                   line, noqa)

    @ddt.unpack
    @ddt.data(
        (False, 'import os\r\nimport sys'),
        (True, 'import os\nimport sys'))
    def test_H903_hacking_no_cr(self, passes, line):
        if passes:
            self.assertCheckPasses(other.hacking_no_cr, line)
        else:
            self.assertCheckFails(other.hacking_no_cr, line)