Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork966
Expand file tree
/
Copy pathlib.py
More file actions
94 lines (71 loc) · 2.37 KB
/
lib.py
File metadata and controls
94 lines (71 loc) · 2.37 KB
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
"""Contains library functions"""
importlogging
importos
importtempfile
fromgitimport (
Repo
)
fromgit.dbimport (
GitCmdObjectDB,
GitDB
)
fromgit.test.libimport (
TestBase
)
fromgit.utilimportrmtree
importos.pathasosp
#{ Invariants
k_env_git_repo="GIT_PYTHON_TEST_GIT_REPO_BASE"
#} END invariants
#{ Base Classes
classTestBigRepoR(TestBase):
"""TestCase providing access to readonly 'big' repositories using the following
member variables:
* gitrorepo
* Read-Only git repository - actually the repo of git itself
* puregitrorepo
* As gitrepo, but uses pure python implementation
"""
#{ Invariants
#} END invariants
defsetUp(self):
try:
super(TestBigRepoR,self).setUp()
exceptAttributeError:
pass
repo_path=os.environ.get(k_env_git_repo)
ifrepo_pathisNone:
logging.info(
("You can set the %s environment variable to a .git repository of"%k_env_git_repo)+
"your choice - defaulting to the gitpython repository")
repo_path=osp.dirname(__file__)
# end set some repo path
self.gitrorepo=Repo(repo_path,odbt=GitCmdObjectDB,search_parent_directories=True)
self.puregitrorepo=Repo(repo_path,odbt=GitDB,search_parent_directories=True)
deftearDown(self):
self.gitrorepo.git.clear_cache()
self.gitrorepo=None
self.puregitrorepo.git.clear_cache()
self.puregitrorepo=None
classTestBigRepoRW(TestBigRepoR):
"""As above, but provides a big repository that we can write to.
Provides ``self.gitrwrepo`` and ``self.puregitrwrepo``"""
defsetUp(self):
self.gitrwrepo=None
try:
super(TestBigRepoRW,self).setUp()
exceptAttributeError:
pass
dirname=tempfile.mktemp()
os.mkdir(dirname)
self.gitrwrepo=self.gitrorepo.clone(dirname,shared=True,bare=True,odbt=GitCmdObjectDB)
self.puregitrwrepo=Repo(dirname,odbt=GitDB)
deftearDown(self):
super(TestBigRepoRW,self).tearDown()
ifself.gitrwrepoisnotNone:
rmtree(self.gitrwrepo.working_dir)
self.gitrwrepo.git.clear_cache()
self.gitrwrepo=None
self.puregitrwrepo.git.clear_cache()
self.puregitrwrepo=None
#} END base classes