From e6019e16d5a74dc49eb7129ee7fd78b4de51dac2 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 21 Nov 2010 19:19:04 +0100 Subject: flattened test folder structure, didn't adjust any file content yet --- test/test_db.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/test_db.py (limited to 'test/test_db.py') diff --git a/test/test_db.py b/test/test_db.py new file mode 100644 index 00000000..9da13bd8 --- /dev/null +++ b/test/test_db.py @@ -0,0 +1,25 @@ +# test_repo.py +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors +# +# This module is part of GitPython and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php +from test.testlib import * +from git.db import * +from gitdb.util import bin_to_hex +from git.exc import BadObject +import os + +class TestDB(TestBase): + + def test_base(self): + gdb = GitCmdObjectDB(os.path.join(self.rorepo.git_dir, 'objects'), self.rorepo.git) + + # partial to complete - works with everything + hexsha = bin_to_hex(gdb.partial_to_complete_sha_hex("0.1.6")) + assert len(hexsha) == 40 + + assert bin_to_hex(gdb.partial_to_complete_sha_hex(hexsha[:20])) == hexsha + + # fails with BadObject + for invalid_rev in ("0000", "bad/ref", "super bad"): + self.failUnlessRaises(BadObject, gdb.partial_to_complete_sha_hex, invalid_rev) -- cgit v1.2.1 From 9ca0f897376e765989e92e44628228514f431458 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 21 Nov 2010 20:16:51 +0100 Subject: Updated MANIFEST and setup to include fixtures. Adjusted includes in all tests to work with the new directory structure --- test/test_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_db.py') diff --git a/test/test_db.py b/test/test_db.py index 9da13bd8..db2d7983 100644 --- a/test/test_db.py +++ b/test/test_db.py @@ -3,7 +3,7 @@ # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -from test.testlib import * +from git.test.lib import * from git.db import * from gitdb.util import bin_to_hex from git.exc import BadObject -- cgit v1.2.1