Skip to content

remote: http: raise exception when response with error status code #2794

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Nov 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions dvc/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,8 @@ def __init__(self, path, external_repo_path, external_repo_url):
relpath(path, external_repo_path), external_repo_url
)
)


class HTTPError(DvcException):
def __init__(self, code, reason):
super(HTTPError, self).__init__("'{} {}'".format(code, reason))
20 changes: 8 additions & 12 deletions dvc/remote/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from dvc.config import Config
from dvc.config import ConfigError
from dvc.exceptions import DvcException
from dvc.exceptions import DvcException, HTTPError
from dvc.progress import Tqdm
from dvc.remote.base import RemoteBASE
from dvc.scheme import Schemes
Expand Down Expand Up @@ -37,30 +37,26 @@ def __init__(self, repo, config):
)

def _download(self, from_info, to_file, name=None, no_progress_bar=False):
request = self._request("GET", from_info.url, stream=True)
response = self._request("GET", from_info.url, stream=True)
if response.status_code != 200:
raise HTTPError(response.status_code, response.reason)
with Tqdm(
total=None if no_progress_bar else self._content_length(from_info),
total=None if no_progress_bar else self._content_length(response),
leave=False,
bytes=True,
desc=from_info.url if name is None else name,
disable=no_progress_bar,
) as pbar:
with open(to_file, "wb") as fd:
for chunk in request.iter_content(chunk_size=self.CHUNK_SIZE):
for chunk in response.iter_content(chunk_size=self.CHUNK_SIZE):
fd.write(chunk)
fd.flush()
pbar.update(len(chunk))

def exists(self, path_info):
return bool(self._request("HEAD", path_info.url))

def _content_length(self, url_or_request):
headers = getattr(
url_or_request,
"headers",
self._request("HEAD", url_or_request).headers,
)
res = headers.get("Content-Length")
def _content_length(self, response):
res = response.headers.get("Content-Length")
return int(res) if res else None

def get_file_checksum(self, path_info):
Expand Down
4 changes: 2 additions & 2 deletions tests/func/test_repro.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
from tests.func.test_data_cloud import get_ssh_url
from tests.func.test_data_cloud import TEST_AWS_REPO_BUCKET
from tests.func.test_data_cloud import TEST_GCP_REPO_BUCKET
from tests.utils.httpd import StaticFileServer
from tests.utils.httpd import StaticFileServer, ContentMD5Handler


class TestRepro(TestDvc):
Expand Down Expand Up @@ -1176,7 +1176,7 @@ def test(self):

self.dvc.remove("imported_file.dvc")

with StaticFileServer(handler="Content-MD5") as httpd:
with StaticFileServer(handler_class=ContentMD5Handler) as httpd:
import_url = urljoin(self.get_remote(httpd.server_port), self.FOO)
import_output = "imported_file"
import_stage = self.dvc.imp_url(import_url, import_output)
Expand Down
14 changes: 14 additions & 0 deletions tests/unit/remote/test_http.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import pytest

from dvc.config import ConfigError
from dvc.exceptions import HTTPError
from dvc.path_info import URLInfo
from dvc.remote.http import RemoteHTTP
from tests.utils.httpd import StaticFileServer


def test_no_traverse_compatibility(dvc_repo):
Expand All @@ -13,3 +16,14 @@ def test_no_traverse_compatibility(dvc_repo):

with pytest.raises(ConfigError):
RemoteHTTP(dvc_repo, config)


def test_download_fails_on_error_code(dvc_repo):
with StaticFileServer() as httpd:
url = "http://localhost:{}/".format(httpd.server_port)
config = {"url": url}

remote = RemoteHTTP(dvc_repo, config)

with pytest.raises(HTTPError):
remote._download(URLInfo(url) / "missing.txt", "missing.txt")
3 changes: 1 addition & 2 deletions tests/utils/httpd.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ class ContentMD5Handler(TestRequestHandler):
class StaticFileServer:
_lock = threading.Lock()

def __init__(self, handler="etag"):
def __init__(self, handler_class=ETagHandler):
self._lock.acquire()
handler_class = ETagHandler if handler == "etag" else ContentMD5Handler
self._httpd = HTTPServer(("localhost", 0), handler_class)
self._thread = None

Expand Down