summaryrefslogtreecommitdiffstats
path: root/gitlint/tests/git/test_git_context.py
blob: bb05236b002ee1cd095d52f1dcabfb9d11b29c7a (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
81
82
83
84
# -*- coding: utf-8 -*-

from unittest.mock import patch, call

from gitlint.tests.base import BaseTestCase
from gitlint.git import GitContext


class GitContextTests(BaseTestCase):

    # Expected special_args passed to 'sh'
    expected_sh_special_args = {
        '_tty_out': False,
        '_cwd': "fåke/path"
    }

    @patch('gitlint.git.sh')
    def test_gitcontext(self, sh):

        sh.git.side_effect = [
            "#",  # git config --get core.commentchar
            "\nfoöbar\n"
        ]

        expected_calls = [
            call("config", "--get", "core.commentchar", _ok_code=[0, 1], **self.expected_sh_special_args),
            call("rev-parse", "--abbrev-ref", "HEAD", **self.expected_sh_special_args)
        ]

        context = GitContext("fåke/path")
        self.assertEqual(sh.git.mock_calls, [])

        # gitcontext.comment_branch
        self.assertEqual(context.commentchar, "#")
        self.assertEqual(sh.git.mock_calls, expected_calls[0:1])

        # gitcontext.current_branch
        self.assertEqual(context.current_branch, "foöbar")
        self.assertEqual(sh.git.mock_calls, expected_calls)

    @patch('gitlint.git.sh')
    def test_gitcontext_equality(self, sh):

        sh.git.side_effect = [
            \n",          # context1: git config --get core.commentchar
            \n",          # context2: git config --get core.commentchar
            "my-brånch\n",  # context1: git rev-parse --abbrev-ref HEAD
            "my-brånch\n",  # context2: git rev-parse --abbrev-ref HEAD
        ]

        context1 = GitContext("fåke/path")
        context1.commits = ["fōo", "bår"]  # we don't need real commits to check for equality

        context2 = GitContext("fåke/path")
        context2.commits = ["fōo", "bår"]
        self.assertEqual(context1, context2)

        # INEQUALITY
        # Different commits
        context2.commits = ["hür", "dür"]
        self.assertNotEqual(context1, context2)

        # Different repository_path
        context2.commits = context1.commits
        context2.repository_path = "ōther/path"
        self.assertNotEqual(context1, context2)

        # Different comment_char
        context3 = GitContext("fåke/path")
        context3.commits = ["fōo", "bår"]
        sh.git.side_effect = ([
            \n",                      # context3: git config --get core.commentchar
            "my-brånch\n"               # context3: git rev-parse --abbrev-ref HEAD
        ])
        self.assertNotEqual(context1, context3)

        # Different current_branch
        context4 = GitContext("fåke/path")
        context4.commits = ["fōo", "bår"]
        sh.git.side_effect = ([
            \n",                      # context4: git config --get core.commentchar
            "different-brånch\n"        # context4: git rev-parse --abbrev-ref HEAD
        ])
        self.assertNotEqual(context1, context4)