summaryrefslogtreecommitdiff
path: root/morphlib/gitindex_tests.py
blob: db1e0e9b0a4196ecf52d8bae47f58d04f223c7a8 (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
# Copyright (C) 2013  Codethink Limited
#
# 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; version 2 of the License.
#
# 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# =*= License: GPL-2 =*=


import os
import shutil
import tempfile
import unittest

import morphlib


class GitIndexTests(unittest.TestCase):

    def setUp(self):
        self.tempdir = tempfile.mkdtemp()
        self.dirname = os.path.join(self.tempdir, 'foo')
        os.mkdir(self.dirname)
        gd = morphlib.gitdir.init(self.dirname)
        with open(os.path.join(self.dirname, 'foo'), 'w') as f:
            f.write('dummy text\n')
        gd._runcmd(['git', 'add', '.'])
        gd._runcmd(['git', 'commit', '-m', 'Initial commit'])
        self.mirror = os.path.join(self.tempdir, 'mirror')
        gd._runcmd(['git', 'clone', '--mirror', self.dirname, self.mirror])

    def tearDown(self):
        shutil.rmtree(self.tempdir)

    def test_uncommitted_changes(self):
        idx = morphlib.gitdir.GitDirectory(self.dirname).get_index()
        self.assertEqual(list(idx.get_uncommitted_changes()), [])
        os.unlink(os.path.join(self.dirname, 'foo'))
        self.assertEqual(sorted(idx.get_uncommitted_changes()),
                         [(' D', 'foo', None)])

    def test_uncommitted_alt_index(self):
        gd = morphlib.gitdir.GitDirectory(self.dirname)
        idx = gd.get_index(os.path.join(self.tempdir, 'index'))
        self.assertEqual(sorted(idx.get_uncommitted_changes()),
                         [('D ', 'foo', None)])
        # 'D ' means not in the index, but in the working tree