client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
directory = Directory(entries=(DirectoryEntry(name=b'file1.ext', type='file', target=hash_to_bytes('111111111111111111111111111111...fest=b'tree 34\x0000644 file1.ext\x00\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11')
@pytest.mark.parametrize("directory", get_directories())
def test_directory_entry_connection_filter_by_name(client, directory):
storage = server.get_storage()
for dir_entry in storage.directory_ls(directory.id):
name_include = dir_entry["name"][:-1].decode()
query_str = """
query getDirectory($swhid: SWHID!, $nameInclude: String) {
directory(swhid: $swhid) {
swhid
entries(nameInclude: $nameInclude) {
nodes {
targetType
name {
text
}
}
}
}
}
"""
data, _ = utils.get_query_response(
client,
query_str,
swhid=str(directory.swhid()),
> nameInclude=name_include,
)
.tox/py3/lib/python3.7/site-packages/swh/graphql/tests/functional/test_directory_entry.py:156:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
client = <FlaskClient <Flask 'swh.graphql.tests.conftest'>>
query_str = '\n query getDirectory($swhid: SWHID!, $nameInclude: String) {\n directory(swhid: $swhid) {\n ... name {\n text\n }\n }\n }\n }\n }\n '
kwargs = {'nameInclude': 'file1.ex', 'swhid': 'swh:1:dir:d135a91ac82a754e7f4bdeff8d56ef06d921eb7d'}
query = '\n query getDirectory($swhid: SWHID!, $nameInclude: String) {\n directory(swhid: $swhid) {\n ... name {\n text\n }\n }\n }\n }\n }\n '
response = <WrapperTestResponse 340 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 \\\'swhid\\\' of required type \\\'SWHID!\\\' was provided the variable \\\'$swhid... swhid"}]}\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 \'swhid\' of required type \'SWHID!\' was provided the variable \'$swhid\' which was... String) {\
E 3 | directory(swhid: $swhid) {\
E | ^\
E 4 | swhid"}]}
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
TEST RESULT
TEST RESULT
- Run At
- Oct 25 2022, 11:49 AM