summaryrefslogtreecommitdiff
path: root/buildscripts/tests/test_git.py
blob: 6a49e894581deaed3fa98f39eacf71e075d6262e (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
85
86
87
88
89
90
91
92
93
94
"""Unit tests for the buildscripts.git module."""

from __future__ import absolute_import

import subprocess
import unittest

import buildscripts.git as _git


class TestRepository(unittest.TestCase):
    def setUp(self):
        self.subprocess = MockSubprocess()
        _git.subprocess = self.subprocess

    def tearDown(self):
        _git.subprocess = subprocess

    def test_base_git_methods(self):
        params = ["param1", "param2", "param3"]
        repo = _git.Repository("/tmp")
        self._check_gito_command(repo.git_add, "add", params)
        self._check_gito_command(repo.git_commit, "commit", params)
        self._check_gito_command(repo.git_diff, "diff", params)
        self._check_gito_command(repo.git_log, "log", params)
        self._check_gito_command(repo.git_push, "push", params)
        self._check_gito_command(repo.git_fetch, "fetch", params)
        self._check_gito_command(repo.git_ls_files, "ls-files", params)
        self._check_gito_command(repo.git_rev_parse, "rev-parse", params)
        self._check_gito_command(repo.git_rm, "rm", params)
        self._check_gito_command(repo.git_show, "show", params)

    def test_base_gito_methods_errors(self):
        params = ["param1", "param2", "param3"]
        repo = _git.Repository("/tmp")
        self._check_gito_command_error(repo.git_add, "add", params)
        self._check_gito_command_error(repo.git_commit, "commit", params)
        self._check_gito_command_error(repo.git_diff, "diff", params)
        self._check_gito_command_error(repo.git_log, "log", params)
        self._check_gito_command_error(repo.git_push, "push", params)
        self._check_gito_command_error(repo.git_fetch, "fetch", params)
        self._check_gito_command_error(repo.git_ls_files, "ls-files", params)
        self._check_gito_command_error(repo.git_rev_parse, "rev-parse", params)
        self._check_gito_command_error(repo.git_rm, "rm", params)
        self._check_gito_command_error(repo.git_show, "show", params)

    def _check_gito_command(self, method, command, params):
        # Initialize subprocess mock.
        self.subprocess.call_output_args = None
        self.subprocess.call_output = str(method)
        self.subprocess.call_returncode = 0
        # Call method.
        value = method(params)
        # Check.
        args = self.subprocess.call_args
        given_args = [command] + params
        self.assertEqual("git", args[0])
        self.assertEqual(given_args, args[-len(given_args):])
        self.assertEqual(str(method), value)

    def _check_gito_command_error(self, method, command, params):
        self.subprocess.call_args = None
        self.subprocess.call_output = None
        self.subprocess.call_returncode = 1

        with self.assertRaises(_git.GitException):
            method(params)
        args = self.subprocess.call_args
        given_args = [command] + params
        self.assertEqual("git", args[0])
        self.assertEqual(given_args, args[-len(given_args):])


class MockSubprocess(object):
    PIPE = subprocess.PIPE
    CalledProcessError = subprocess.CalledProcessError

    def __init__(self):
        self.call_args = None
        self.call_returncode = 0
        self.call_output = ""

    def Popen(self, args, **kwargs):
        self.call_args = args
        return MockProcess(self.call_returncode, self.call_output)


class MockProcess(object):
    def __init__(self, returncode, output):
        self.returncode = returncode
        self._output = output

    def communicate(self):
        return self._output, ""