Skip to content
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

Revert "Fix URL encoding issue in HttpDownloader to handle special characters" #5828

Merged
merged 1 commit into from
Sep 23, 2024
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
1 change: 0 additions & 1 deletion CHANGES/5686.bugfix

This file was deleted.

10 changes: 0 additions & 10 deletions pulp_file/pytest_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,16 +101,6 @@ def basic_manifest_path(write_3_iso_file_fixture_data_factory):
return write_3_iso_file_fixture_data_factory("basic")


@pytest.fixture
def encoded_manifest_path(file_fixtures_root):
file_fixtures_root.joinpath("encoded").mkdir()
file1 = generate_iso(file_fixtures_root.joinpath("encoded/long-name-%253a-encoded.iso"))
file2 = generate_iso(file_fixtures_root.joinpath("encoded/another-%25-encoded.iso"))
file3 = generate_iso(file_fixtures_root.joinpath("encoded/more-%3C-encoded.iso"))
generate_manifest(file_fixtures_root.joinpath("encoded/PULP_MANIFEST"), [file1, file2, file3])
return "/encoded/PULP_MANIFEST"


@pytest.fixture
def copy_manifest_only_factory(file_fixtures_root):
def _copy_manifest_only(name):
Expand Down
15 changes: 0 additions & 15 deletions pulp_file/tests/functional/api/test_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,21 +123,6 @@ def test_duplicate_file_sync(
assert file_repo.latest_version_href.endswith("/2/")


@pytest.mark.parallel
def test_encoded_file_name(
file_repo, file_bindings, encoded_manifest_path, file_remote_factory, monitor_task
):
remote = file_remote_factory(manifest_path=encoded_manifest_path, policy="immediate")
body = RepositorySyncURL(remote=remote.pulp_href)
monitor_task(file_bindings.RepositoriesFileApi.sync(file_repo.pulp_href, body).task)
file_repo = file_bindings.RepositoriesFileApi.read(file_repo.pulp_href)

version = file_bindings.RepositoriesFileVersionsApi.read(file_repo.latest_version_href)
assert version.content_summary.present["file.file"]["count"] == 3
assert version.content_summary.added["file.file"]["count"] == 3
assert file_repo.latest_version_href.endswith("/1/")


@pytest.mark.parallel
def test_filepath_includes_commas(
file_bindings,
Expand Down
12 changes: 1 addition & 11 deletions pulpcore/download/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import aiohttp
import asyncio
import backoff
import urllib.parse

from .base import BaseDownloader, DownloadResult
from pulpcore.exceptions import (
Expand Down Expand Up @@ -50,14 +49,6 @@ def http_giveup_handler(exc):
return False


def encode_url(url):
"""Helper function to encode only the path part of the URL."""
parsed_url = urllib.parse.urlparse(url)
encoded_path = urllib.parse.quote(parsed_url.path)
encoded_url = parsed_url._replace(path=encoded_path).geturl()
return encoded_url


class HttpDownloader(BaseDownloader):
"""
An HTTP/HTTPS Downloader built on `aiohttp`.
Expand Down Expand Up @@ -293,9 +284,8 @@ async def _run(self, extra_data=None):
"""
if self.download_throttler:
await self.download_throttler.acquire()
encoded_url = encode_url(self.url)
async with self.session.get(
encoded_url, proxy=self.proxy, proxy_auth=self.proxy_auth, auth=self.auth
self.url, proxy=self.proxy, proxy_auth=self.proxy_auth, auth=self.auth
) as response:
self.raise_for_status(response)
to_return = await self._handle_response(response)
Expand Down
11 changes: 1 addition & 10 deletions pulpcore/pytest_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import subprocess
import threading
import uuid
import urllib.parse

import pytest

Expand Down Expand Up @@ -322,21 +321,13 @@ def _gen_threaded_aiohttp_server(app, ssl_ctx, call_record):
@pytest.fixture
def gen_fixture_server(gen_threaded_aiohttp_server):
def _gen_fixture_server(fixtures_root, ssl_ctx):
app = web.Application(middlewares=[_aiohttp_request_middleware])
app = web.Application()
call_record = add_recording_route(app, fixtures_root)
return gen_threaded_aiohttp_server(app, ssl_ctx, call_record)

yield _gen_fixture_server


@web.middleware
async def _aiohttp_request_middleware(request, handler):
unquoted_url = urllib.parse.unquote(request.url.human_repr())
url = urllib.parse.urlparse(unquoted_url)
response = await handler(request.clone(rel_url=url.path))
return response


# Proxy Fixtures


Expand Down