|
@@ -52,7 +52,6 @@ from dulwich.repo import Repo
|
|
|
from dulwich.tests import TestCase
|
|
|
from dulwich.tests.utils import skipIfPY3
|
|
|
|
|
|
-@skipIfPY3
|
|
|
class IndexTestCase(TestCase):
|
|
|
|
|
|
datadir = os.path.join(os.path.dirname(__file__), 'data/indexes')
|
|
@@ -61,20 +60,19 @@ class IndexTestCase(TestCase):
|
|
|
return Index(os.path.join(self.datadir, name))
|
|
|
|
|
|
|
|
|
-@skipIfPY3
|
|
|
class SimpleIndexTestCase(IndexTestCase):
|
|
|
|
|
|
def test_len(self):
|
|
|
self.assertEqual(1, len(self.get_simple_index("index")))
|
|
|
|
|
|
def test_iter(self):
|
|
|
- self.assertEqual(['bla'], list(self.get_simple_index("index")))
|
|
|
+ self.assertEqual([b'bla'], list(self.get_simple_index("index")))
|
|
|
|
|
|
def test_getitem(self):
|
|
|
self.assertEqual(((1230680220, 0), (1230680220, 0), 2050, 3761020,
|
|
|
33188, 1000, 1000, 0,
|
|
|
- 'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391', 0),
|
|
|
- self.get_simple_index("index")["bla"])
|
|
|
+ b'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391', 0),
|
|
|
+ self.get_simple_index("index")[b"bla"])
|
|
|
|
|
|
def test_empty(self):
|
|
|
i = self.get_simple_index("notanindex")
|
|
@@ -86,11 +84,9 @@ class SimpleIndexTestCase(IndexTestCase):
|
|
|
changes = list(i.changes_from_tree(MemoryObjectStore(), None))
|
|
|
self.assertEqual(1, len(changes))
|
|
|
(oldname, newname), (oldmode, newmode), (oldsha, newsha) = changes[0]
|
|
|
- self.assertEqual('bla', newname)
|
|
|
- self.assertEqual('e69de29bb2d1d6434b8b29ae775ad8c2e48c5391', newsha)
|
|
|
-
|
|
|
+ self.assertEqual(b'bla', newname)
|
|
|
+ self.assertEqual(b'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391', newsha)
|
|
|
|
|
|
-@skipIfPY3
|
|
|
class SimpleIndexWriterTestCase(IndexTestCase):
|
|
|
|
|
|
def setUp(self):
|
|
@@ -102,18 +98,17 @@ class SimpleIndexWriterTestCase(IndexTestCase):
|
|
|
shutil.rmtree(self.tempdir)
|
|
|
|
|
|
def test_simple_write(self):
|
|
|
- entries = [('barbla', (1230680220, 0), (1230680220, 0), 2050, 3761020,
|
|
|
+ entries = [(b'barbla', (1230680220, 0), (1230680220, 0), 2050, 3761020,
|
|
|
33188, 1000, 1000, 0,
|
|
|
- 'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391', 0)]
|
|
|
+ b'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391', 0)]
|
|
|
filename = os.path.join(self.tempdir, 'test-simple-write-index')
|
|
|
- with open(filename, 'w+') as x:
|
|
|
+ with open(filename, 'wb+') as x:
|
|
|
write_index(x, entries)
|
|
|
|
|
|
- with open(filename, 'r') as x:
|
|
|
+ with open(filename, 'rb') as x:
|
|
|
self.assertEqual(entries, list(read_index(x)))
|
|
|
|
|
|
|
|
|
-@skipIfPY3
|
|
|
class ReadIndexDictTests(IndexTestCase):
|
|
|
|
|
|
def setUp(self):
|
|
@@ -125,14 +120,14 @@ class ReadIndexDictTests(IndexTestCase):
|
|
|
shutil.rmtree(self.tempdir)
|
|
|
|
|
|
def test_simple_write(self):
|
|
|
- entries = {'barbla': ((1230680220, 0), (1230680220, 0), 2050, 3761020,
|
|
|
+ entries = {b'barbla': ((1230680220, 0), (1230680220, 0), 2050, 3761020,
|
|
|
33188, 1000, 1000, 0,
|
|
|
- 'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391', 0)}
|
|
|
+ b'e69de29bb2d1d6434b8b29ae775ad8c2e48c5391', 0)}
|
|
|
filename = os.path.join(self.tempdir, 'test-simple-write-index')
|
|
|
- with open(filename, 'w+') as x:
|
|
|
+ with open(filename, 'wb+') as x:
|
|
|
write_index_dict(x, entries)
|
|
|
|
|
|
- with open(filename, 'r') as x:
|
|
|
+ with open(filename, 'rb') as x:
|
|
|
self.assertEqual(entries, read_index_dict(x))
|
|
|
|
|
|
|
|
@@ -168,7 +163,6 @@ class CommitTreeTests(TestCase):
|
|
|
set(self.store._data.keys()))
|
|
|
|
|
|
|
|
|
-@skipIfPY3
|
|
|
class CleanupModeTests(TestCase):
|
|
|
|
|
|
def test_file(self):
|
|
@@ -187,7 +181,6 @@ class CleanupModeTests(TestCase):
|
|
|
self.assertEqual(0o160000, cleanup_mode(0o160744))
|
|
|
|
|
|
|
|
|
-@skipIfPY3
|
|
|
class WriteCacheTimeTests(TestCase):
|
|
|
|
|
|
def test_write_string(self):
|
|
@@ -210,7 +203,6 @@ class WriteCacheTimeTests(TestCase):
|
|
|
self.assertEqual(struct.pack(">LL", 434343, 21), f.getvalue())
|
|
|
|
|
|
|
|
|
-@skipIfPY3
|
|
|
class IndexEntryFromStatTests(TestCase):
|
|
|
|
|
|
def test_simple(self):
|
|
@@ -249,7 +241,7 @@ class IndexEntryFromStatTests(TestCase):
|
|
|
0))
|
|
|
|
|
|
|
|
|
-@skipIfPY3
|
|
|
+@skipIfPY3 # These tests depend on repo.
|
|
|
class BuildIndexTests(TestCase):
|
|
|
|
|
|
def assertReasonableIndexEntry(self, index_entry, mode, filesize, sha):
|
|
@@ -384,7 +376,7 @@ class BuildIndexTests(TestCase):
|
|
|
sorted(os.listdir(os.path.join(repo.path, 'c'))))
|
|
|
|
|
|
|
|
|
-@skipIfPY3
|
|
|
+@skipIfPY3 # These tests depend on repo.
|
|
|
class GetUnstagedChangesTests(TestCase):
|
|
|
|
|
|
def test_get_unstaged_changes(self):
|