Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.graphql.tests.functional.test_directory_entry::test_get_directory_entry[directory3]
Failed

TEST RESULT

Run At
Oct 25 2022, 11:49 AM
Details
client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> directory = Directory(entries=(DirectoryEntry(name=b'sub-dir', type='dir', target=hash_to_bytes('87b339104f7dc2a8163dec988445e3987995545f'), perms=0o644),), id=hash_to_bytes('0b51333edb6e04756b04a5f34d3b88cad844e786'), raw_manifest=None) @pytest.mark.parametrize( "directory", get_directories() + get_directories_with_nested_path() ) def test_get_directory_entry(client, directory): storage = server.get_storage() query_str = """ query getDirEntry($swhid: SWHID!, $path: String!) { directoryEntry(directorySwhid: $swhid, path: $path) { name { text } targetType target { ...on Content { swhid } ...on Directory { swhid } ...on Revision { swhid } } } } """ for entry in storage.directory_ls(directory.id, recursive=True): data, _ = utils.get_query_response( client, query_str, swhid=str(directory.swhid()), > path=entry["name"].decode(), ) .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_directory_entry.py:82: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>> query_str = '\n query getDirEntry($swhid: SWHID!, $path: String!) {\n directoryEntry(directorySwhid: $swhid, path: $path) ... swhid\n }\n ...on Revision {\n swhid\n }\n }\n }\n }\n ' kwargs = {'path': 'sub-dir', 'swhid': 'swh:1:dir:0b51333edb6e04756b04a5f34d3b88cad844e786'} query = '\n query getDirEntry($swhid: SWHID!, $path: String!) {\n directoryEntry(directorySwhid: $swhid, path: $path) ... swhid\n }\n ...on Revision {\n swhid\n }\n }\n }\n }\n ' response = <WrapperTestResponse 368 bytes [400 BAD REQUEST]>, @py_assert1 = 400 @py_assert4 = 200, @py_assert3 = False @py_format6 = '400\n{400 = <WrapperTestResponse streamed [400 BAD REQUEST]>.status_code\n} == 200' @py_format8 = 'b\'{"errors":[{"message":"Argument \\\'directorySwhid\\\' of required type \\\'SWHID!\\\' was provided the variable \... | name {"}]}\n~\'\n>assert 400\n{400 = <WrapperTestResponse streamed [400 BAD REQUEST]>.status_code\n} == 200' def get_query_response(client, query_str: str, **kwargs) -> Tuple[Dict, Dict]: query = gql(query_str) response = client.post("/", json={"query": query, "variables": kwargs}) > assert response.status_code == 200, response.data E AssertionError: b'{"errors":[{"message":"Argument \'directorySwhid\' of required type \'SWHID!\' was provided the variable \'$swhid\' ...ryEntry(directorySwhid: $swhid, path: $path) {\ E | ^\ E 4 | name {"}]} E ' E assert 400 == 200 E + where 400 = <WrapperTestResponse streamed [400 BAD REQUEST]>.status_code .tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/utils.py:15: AssertionError