FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
GitPython/gitdb/gitdb/test/test_example.py at main · gitpython-developers/GitPython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
gitpython-developers
/
GitPython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
989
Star
5.2k
Code
Issues
8
Pull requests
2
Discussions
Actions
Security and quality
34
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
GitPython
/
gitdb
/
gitdb
/
test
/
test_example.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (35 loc) · 1.32 KB
Breadcrumbs
GitPython
/
gitdb
/
gitdb
/
test
/
test_example.py
Copy path
File metadata and controls
43 lines (35 loc) · 1.32 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
# 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/
"""Module with examples from the tutorial section of the docs"""
import
os
from
gitdb
.
test
.
lib
import
TestBase
from
gitdb
import
IStream
from
gitdb
.
db
import
LooseObjectDB
from
io
import
BytesIO
class
TestExamples
(
TestBase
):
def
test_base
(
self
):
ldb
=
LooseObjectDB
(
os
.
path
.
join
(
self
.
gitrepopath
,
'objects'
))
for
sha1
in
ldb
.
sha_iter
():
oinfo
=
ldb
.
info
(
sha1
)
ostream
=
ldb
.
stream
(
sha1
)
assert
oinfo
[:
3
]
==
ostream
[:
3
]
assert
len
(
ostream
.
read
())
==
ostream
.
size
assert
ldb
.
has_object
(
oinfo
.
binsha
)
# END for each sha in database
# assure we close all files
try
:
del
(
ostream
)
del
(
oinfo
)
except
UnboundLocalError
:
pass
# END ignore exception if there are no loose objects
data
=
b"my data"
istream
=
IStream
(
"blob"
,
len
(
data
),
BytesIO
(
data
))
# the object does not yet have a sha
assert
istream
.
binsha
is
None
ldb
.
store
(
istream
)
# now the sha is set
assert
len
(
istream
.
binsha
)
==
20
assert
ldb
.
has_object
(
istream
.
binsha
)
Back
|
FazBrowse Home
|
New Git URL