FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gitdb/gitdb/test/db/test_ref.py at master · gitpython-developers/gitdb · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jul 26, 2026. It is now read-only.
gitpython-developers
/
gitdb
Public archive
Notifications
You must be signed in to change notification settings
Fork
68
Star
227
Code
Issues
6
Pull requests
0
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
gitdb
/
gitdb
/
test
/
db
/
test_ref.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
58 lines (47 loc) · 1.75 KB
Breadcrumbs
gitdb
/
gitdb
/
test
/
db
/
test_ref.py
Copy path
File metadata and controls
58 lines (47 loc) · 1.75 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
#
# This module is part of GitDB and is released under
# the New BSD License: https://opensource.org/license/bsd-3-clause/
from
gitdb
.
test
.
db
.
lib
import
(
TestDBBase
,
with_rw_directory
,
)
from
gitdb
.
db
import
ReferenceDB
from
gitdb
.
util
import
(
NULL_BIN_SHA
,
hex_to_bin
)
import
os
class
TestReferenceDB
(
TestDBBase
):
def
make_alt_file
(
self
,
alt_path
,
alt_list
):
"""Create an alternates file which contains the given alternates.
The list can be empty"""
with
open
(
alt_path
,
"wb"
)
as
alt_file
:
for
alt
in
alt_list
:
alt_file
.
write
(
alt
.
encode
(
"utf-8"
)
+
b"
\n
"
)
@
with_rw_directory
def
test_writing
(
self
,
path
):
alt_path
=
os
.
path
.
join
(
path
,
'alternates'
)
rdb
=
ReferenceDB
(
alt_path
)
assert
len
(
rdb
.
databases
())
==
0
assert
rdb
.
size
()
==
0
assert
len
(
list
(
rdb
.
sha_iter
()))
==
0
# try empty, non-existing
assert
not
rdb
.
has_object
(
NULL_BIN_SHA
)
# setup alternate file
# add two, one is invalid
own_repo_path
=
os
.
path
.
join
(
self
.
gitrepopath
,
'objects'
)
# use own repo
self
.
make_alt_file
(
alt_path
, [
own_repo_path
,
"invalid/path"
])
rdb
.
update_cache
()
assert
len
(
rdb
.
databases
())
==
1
# we should now find a default revision of ours
gitdb_sha
=
next
(
rdb
.
sha_iter
())
assert
rdb
.
has_object
(
gitdb_sha
)
# remove valid
self
.
make_alt_file
(
alt_path
, [
"just/one/invalid/path"
])
rdb
.
update_cache
()
assert
len
(
rdb
.
databases
())
==
0
# add valid
self
.
make_alt_file
(
alt_path
, [
own_repo_path
])
rdb
.
update_cache
()
assert
len
(
rdb
.
databases
())
==
1
Back
|
FazBrowse Home
|
New Git URL