Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.web.tests.browse.views.test_origin::Tests / Python tests / test_origin_root_directory_view
Failed

TEST RESULT

Run At
Oct 7 2021, 12:13 PM
Details
client = <django.test.client.Client object at 0x7f6616d9e240> archive_data = <swh.web.tests.conftest._ArchiveData object at 0x7f6616d9ec50> swh_scheduler = <swh.scheduler.backend.SchedulerBackend object at 0x7f6616d9ed30> @given(origin()) > def test_origin_root_directory_view(client, archive_data, swh_scheduler, origin): .tox/py3/lib/python3.7/site-packages/swh/web/tests/browse/views/test_origin.py:161: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .tox/py3/lib/python3.7/site-packages/swh/web/tests/browse/views/test_origin.py:182: in test_origin_root_directory_view dir_content, .tox/py3/lib/python3.7/site-packages/swh/web/tests/browse/views/test_origin.py:1050: in _origin_directory_view_test_helper client, url, status_code=200, template_used="browse/directory.html" .tox/py3/lib/python3.7/site-packages/swh/web/tests/utils.py:207: in check_html_get_response client, url, status_code, content_type="text/html" .tox/py3/lib/python3.7/site-packages/swh/web/tests/utils.py:68: in check_http_get_response content_type=content_type, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ response = <HttpResponseRedirect status_code=302, "text/html; charset=utf-8", url="/browse/directory/2a9e0d6dee8dc7c87c22fd56731ab5c732282eab/?origin_url=https://github.com/memononen/libtess2&visit_id=1"> status_code = 200, content_type = 'text/html' def _assert_http_response( response: HttpResponse, status_code: int, content_type: str ) -> HttpResponse: if isinstance(response, Response): drf_response = cast(Response, response) error_context = ( drf_response.data.pop("traceback") if isinstance(drf_response.data, dict) and "traceback" in drf_response.data else drf_response.data ) elif isinstance(response, StreamingHttpResponse): error_context = getattr(response, "traceback", response.streaming_content) else: error_context = getattr(response, "traceback", response.content) > assert response.status_code == status_code, error_context E AssertionError: b'' E assert 302 == 200 E +302 E -200 .tox/py3/lib/python3.7/site-packages/swh/web/tests/utils.py:34: AssertionError