Skip to content

Commit

Permalink
Add tests for location providing
Browse files Browse the repository at this point in the history
 -Testing filename deduction for http/https/ftp schemes

Signed-off-by: Mateusz Perc <m.perc@samsung.com>
  • Loading branch information
quepop committed Jun 25, 2021
1 parent 640e874 commit ac2461b
Showing 1 changed file with 69 additions and 18 deletions.
87 changes: 69 additions & 18 deletions tests/test_fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,52 +14,103 @@
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.

from fetchcode import fetch
from pathlib import Path
from unittest import mock

import pytest

from fetchcode import fetch

FILENAMES = ["a.ext", "b.ext", "c.ext"]
HTTP_URL = "http://example.com/"
FTP_URL = "ftp://example.com/"


@mock.patch("fetchcode.requests.get")
def test_fetch_http_with_filename_provided(mock_get):
with mock.patch("fetchcode.open", mock.mock_open()) as mocked_file:
location = Path.home() / FILENAMES[0]
response = fetch(HTTP_URL, location)
assert response is not None
assert response.location == location


@pytest.mark.parametrize(
"parameters, expected_filename",
[
pytest.param(f'filename*="{FILENAMES[0]}"; filename=""', FILENAMES[0]),
pytest.param(f'filename*=""; filename="{FILENAMES[1]}"', FILENAMES[1]),
pytest.param(f'filename*=""; filename=""', FILENAMES[2]),
],
)
@mock.patch("fetchcode.requests.get")
def test_fetch_http_with_filename_deduction(mock_get, parameters, expected_filename):
mock_get.return_value.headers = {"content-disposition": f"attachment; {parameters}"}
with mock.patch("fetchcode.open", mock.mock_open()) as mocked_file:
location = Path.home()
response = fetch(HTTP_URL + FILENAMES[2], location)
assert response is not None
assert response.location == (location / expected_filename)

@mock.patch('fetchcode.requests.get')

@mock.patch("fetchcode.tempfile.NamedTemporaryFile")
@mock.patch("fetchcode.requests.get")
def test_fetch_http_filename_deduction_failed(mock_get, mock_tmp):
location = Path.home()
mock_get.return_value.headers = {}
mock_tmp.return_value.name = location / FILENAMES[0]
with mock.patch("fetchcode.open", mock.mock_open()) as mocked_file:
response = fetch(HTTP_URL, location)
assert response is not None
assert response.location == (location / FILENAMES[0])


@mock.patch("fetchcode.requests.get")
def test_fetch_http_with_tempfile(mock_get):
mock_get.return_value.headers = {
'content-type': 'image/png',
'content-length': '1000999',
"content-type": "image/png",
"content-length": "1000999",
}

with mock.patch('fetchcode.open', mock.mock_open()) as mocked_file:
url = 'https://raw.githubusercontent.com/TG1999/converge/master/assets/Group%2022.png'
with mock.patch("fetchcode.open", mock.mock_open()) as mocked_file:
url = "https://raw.githubusercontent.com/TG1999/converge/master/assets/Group%2022.png"
response = fetch(url=url)
assert response is not None
assert 1000999 == response.size
assert url == response.url
assert 'image/png' == response.content_type
assert "image/png" == response.content_type


@mock.patch('fetchcode.FTP')
@mock.patch("fetchcode.FTP")
def test_fetch_with_wrong_url(mock_get):
with pytest.raises(Exception) as e_info:
url = 'ftp://speedtest/1KB.zip'
url = "ftp://speedtest/1KB.zip"
response = fetch(url=url)
assert 'Not a valid URL' == e_info
assert "Not a valid URL" == e_info


@mock.patch('fetchcode.FTP', autospec=True)
@mock.patch("fetchcode.FTP", autospec=True)
def test_fetch_ftp_with_tempfile(mock_ftp_constructor):
mock_ftp = mock_ftp_constructor.return_value
mock_ftp_constructor.return_value.size.return_value = 1024
with mock.patch('fetchcode.open', mock.mock_open()) as mocked_file:
response = fetch('ftp://speedtest.tele2.net/1KB.zip')
with mock.patch("fetchcode.open", mock.mock_open()) as mocked_file:
response = fetch("ftp://speedtest.tele2.net/1KB.zip")
assert 1024 == response.size
mock_ftp_constructor.assert_called_with('speedtest.tele2.net')
mock_ftp_constructor.assert_called_with("speedtest.tele2.net")
assert mock_ftp.login.called == True
mock_ftp.cwd.assert_called_with('/')
mock_ftp.cwd.assert_called_with("/")
assert mock_ftp.retrbinary.called


@mock.patch("fetchcode.FTP")
def test_fetch_ftp_with_filename_deduction(mock_ftp):
with mock.patch("fetchcode.open", mock.mock_open()) as mocked_file:
location = Path.home()
response = fetch(FTP_URL + FILENAMES[0], location)
assert response.location == (location / FILENAMES[0])


def test_fetch_with_scheme_not_present():
with pytest.raises(Exception) as e_info:
url = 'abc://speedtest/1KB.zip'
url = "abc://speedtest/1KB.zip"
response = fetch(url=url)
assert 'Not a supported/known scheme.' == e_info
assert "Not a supported/known scheme." == e_info

0 comments on commit ac2461b

Please sign in to comment.