Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-pylib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-pylib
Commits
cb5c7db7
Verified
Commit
cb5c7db7
authored
4 months ago
by
Daniel Hornung
Browse files
Options
Downloads
Patches
Plain Diff
FIX: Fixed undefined variable.
parent
937ceb48
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!175
BUG: Request responses without the "Set-Cookie" header no longer overwrite the...
,
!164
Fix mypy errors
Pipeline
#58108
passed
4 months ago
Stage: code_style
Stage: linting
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/linkahead/connection/connection.py
+12
-13
12 additions, 13 deletions
src/linkahead/connection/connection.py
unittests/test_connection.py
+52
-0
52 additions, 0 deletions
unittests/test_connection.py
with
64 additions
and
13 deletions
src/linkahead/connection/connection.py
+
12
−
13
View file @
cb5c7db7
...
...
@@ -83,8 +83,10 @@ class _WrappedHTTPResponse(CaosDBHTTPResponse):
return
self
.
response
.
status_code
def
read
(
self
,
size
:
Optional
[
int
]
=
None
):
# FIXME This function behaves unexpectedly if `size` is larger than in the first run.
if
self
.
_stream_consumed
is
True
:
raise
Runtime
Error
(
"
Stream is consumed
"
)
raise
Buffer
Error
(
"
Stream is consumed
"
)
if
self
.
_buffer
is
None
:
# the buffer has been drained in the previous call.
...
...
@@ -97,18 +99,15 @@ class _WrappedHTTPResponse(CaosDBHTTPResponse):
return
self
.
response
.
content
if
size
is
None
or
size
==
0
:
raise
RuntimeError
(
"
size parameter should not be None if the stream is not consumed yet
"
)
raise
BufferError
(
"
`size` parameter can not be None or zero once reading has started with a non-zero
"
"
value.
"
)
if
len
(
self
.
_buffer
)
>=
size
:
# still enough bytes in the buffer
# FIXME: `chunk`` is used before definition
raise
NotImplementedError
(
"
chunk is undefined
"
)
# # old code:
# result = chunk[:size]
# self._buffer = chunk[size:]
# return result
result
=
self
.
_buffer
[:
size
]
self
.
_buffer
=
self
.
_buffer
[
size
:]
return
result
if
self
.
_generator
is
None
:
# first call to this method
...
...
@@ -119,16 +118,16 @@ class _WrappedHTTPResponse(CaosDBHTTPResponse):
try
:
# read new data into the buffer
chunk
=
self
.
_buffer
+
next
(
self
.
_generator
)
result
=
chunk
[:
size
]
result
=
chunk
[:
size
]
# FIXME what if `size` is larger than at `iter_content(size)`?
if
len
(
result
)
==
0
:
self
.
_stream_consumed
=
True
self
.
_buffer
=
chunk
[
size
:]
return
result
except
StopIteration
:
# drain buffer
result
=
self
.
_buffer
last_
result
=
self
.
_buffer
self
.
_buffer
=
None
return
result
return
last_
result
def
getheader
(
self
,
name
:
str
,
default
=
None
):
return
self
.
response
.
headers
[
name
]
if
name
in
self
.
response
.
headers
else
default
...
...
This diff is collapsed.
Click to expand it.
unittests/test_connection.py
+
52
−
0
View file @
cb5c7db7
...
...
@@ -25,14 +25,18 @@
# pylint: disable=missing-docstring
from
__future__
import
print_function
,
unicode_literals
import
io
import
re
from
builtins
import
bytes
,
str
# pylint: disable=redefined-builtin
import
requests
from
linkahead
import
execute_query
from
linkahead.configuration
import
_reset_config
,
get_config
from
linkahead.connection.authentication.interface
import
CredentialsAuthenticator
from
linkahead.connection.connection
import
(
CaosDBServerConnection
,
_DefaultCaosDBServerConnection
,
_WrappedHTTPResponse
,
configure_connection
)
from
linkahead.connection.mockup
import
(
MockUpResponse
,
MockUpServerConnection
,
_request_log_message
)
...
...
@@ -324,3 +328,51 @@ def test_auth_token_connection():
"
auth_token authenticator cannot log in
"
"
again. You must provide a new authentication
"
"
token.
"
)
def
test_buffer_read
():
"""
Test the buffering in _WrappedHTTPResponse.read()
"""
class
MockResponse
(
requests
.
Response
):
def
__init__
(
self
,
content
:
bytes
):
"""
A mock response
Parameters
----------
content : bytes
The fake content.
"""
super
().
__init__
()
self
.
_content
=
content
bio
=
io
.
BytesIO
(
expected
)
self
.
raw
=
bio
expected
=
b
"
This response.
"
MockResponse
(
expected
)
#############################
# Check for some exceptions #
#############################
resp
=
_WrappedHTTPResponse
(
response
=
MockResponse
(
expected
))
with
raises
(
BufferError
)
as
rte
:
resp
.
read
(
4
)
resp
.
read
()
assert
"
`size` parameter can not be None
"
in
str
(
rte
.
value
)
resp
=
_WrappedHTTPResponse
(
response
=
MockResponse
(
expected
))
with
raises
(
BufferError
)
as
rte
:
resp
.
read
(
4
)
resp
.
read
(
0
)
assert
"
`size` parameter can not be None
"
in
str
(
rte
.
value
)
print
(
"
---
"
)
resp
=
_WrappedHTTPResponse
(
response
=
MockResponse
(
expected
))
result
=
(
resp
.
read
(
4
)
+
resp
.
read
(
2
)
+
resp
.
read
(
2
)
# This line failed before.
+
resp
.
read
(
4
)
# Reading the rest in two chunks, because of current limitations in read().
+
resp
.
read
(
2
)
)
assert
result
==
expected
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment