summaryrefslogtreecommitdiffstats
path: root/qa/test_named_rules.py
blob: 75cd9a18187b848344031fd3139e27b464a263fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from qa.shell import gitlint
from qa.base import BaseTestCase


class NamedRuleTests(BaseTestCase):
    """Integration tests for named rules."""

    def test_named_rule(self):
        commit_msg = "WIP: thåt dûr bår\n\nSïmple commit body"
        self.create_simple_commit(commit_msg)
        config_path = self.get_sample_path("config/named-rules")
        output = gitlint("--config", config_path, _cwd=self.tmp_git_repo, _tty_in=True, _ok_code=[5])
        self.assertEqualStdout(output, self.get_expected("test_named_rules/test_named_rule_1"))

    def test_named_user_rule(self):
        commit_msg = "Normal cömmit title\n\nSïmple commit message body"
        self.create_simple_commit(commit_msg)
        config_path = self.get_sample_path("config/named-user-rules")
        extra_path = self.get_sample_path("user_rules/extra")
        output = gitlint(
            "--extra-path", extra_path, "--config", config_path, _cwd=self.tmp_git_repo, _tty_in=True, _ok_code=[9]
        )
        self.assertEqualStdout(output, self.get_expected("test_named_rules/test_named_user_rule_1"))