swh_indexer_config = {'compute_checksums': ['blake2b512'], 'indexer_storage': {'cls': 'local', 'db': "user=postgres password=xxx dbname=tes...cheduler': {'cls': 'local', 'db': "user=postgres password=xxx dbname=tests host=127.0.0.1 port=22683 options=''"}, ...}
idx_storage = <swh.indexer.storage.IndexerStorage object at 0x7fd91874ea90>
storage = <swh.storage.postgresql.storage.Storage object at 0x7fd91874ef98>
obj_storage = <swh.objstorage.backends.pathslicing.PathSlicingObjStorage object at 0x7fd91874e908>
def test_origin_metadata_indexer_revision(
swh_indexer_config,
idx_storage: IndexerStorageInterface,
storage: StorageInterface,
obj_storage,
) -> None:
indexer = OriginMetadataIndexer(config=swh_indexer_config)
origin = "https://github.com/librariesio/yarn-parser"
indexer.run([origin])
tool = swh_indexer_config["tools"]
dir_id = DIRECTORY2.id
dir_metadata = DirectoryIntrinsicMetadataRow(
id=dir_id,
tool=tool,
metadata=YARN_PARSER_METADATA,
mappings=["npm"],
)
origin_metadata = OriginIntrinsicMetadataRow(
id=origin,
tool=tool,
from_directory=dir_id,
metadata=YARN_PARSER_METADATA,
mappings=["npm"],
)
dir_results = list(idx_storage.directory_intrinsic_metadata_get([dir_id]))
for dir_result in dir_results:
assert dir_result.tool
del dir_result.tool["id"]
> assert dir_results == [dir_metadata]
E AssertionError: assert [] == [DirectoryInt...ings=['npm'])]
E Right contains one more item: DirectoryIntrinsicMetadataRow(indexer_configuration_id=None, tool={'name': 'swh-metadata-translator', 'version': '0.0.... 'yarn-parser', 'keywords': ['yarn', 'parse', 'lock', 'dependencies'], 'type': 'SoftwareSourceCode'}, mappings=['npm'])
E Full diff:
E - [DirectoryIntrinsicMetadataRow(indexer_configuration_id=None, tool={'name': 'swh-metadata-translator', 'version': '0.0.2', 'configuration': {'type': 'local', 'context': 'NpmMapping'}}, id=b'M\x17\xcc\xe1\xe2\r\x1b\x1c\xd8\xc7\\\xd1\xbb;;\xa4\x94\xa9\xc3\xc0', metadata={'@context': 'https://doi.org/10.5063/schema/codemeta...
E
E ...Full output truncated (2 lines hidden), use '-vv' to show
.tox/py3/lib/python3.7/site-packages/swh/indexer/tests/test_origin_metadata.py:103: AssertionError
TEST RESULT
TEST RESULT
- Run At
- Jul 21 2022, 7:31 PM