swh_storage = <swh.storage.retry.RetryingProxyStorage object at 0x7faf15f99588>
requests_mock_datadir = <requests_mock.mocker.Mocker object at 0x7faf15dc4710>
def test_archive_2_visits_without_change_not_gnu(swh_storage, requests_mock_datadir):
"""Load a project archive (not gnu) ends up with 1 snapshot
"""
url = "https://something.else.org/8sync/"
artifacts = [ # this is not a gnu artifact
{
"time": "1999-12-09T09:53:30+00:00", # it's also not a timestamp
"sha256": "d5d1051e59b2be6f065a9fc6aedd3a391e44d0274b78b9bb4e2b57a09134dbe4", # noqa
# keep a gnu artifact reference to avoid adding other test files
"url": "https://ftp.gnu.org/gnu/8sync/8sync-0.2.0.tar.gz",
"length": 238466,
"filename": "8sync-0.2.0.tar.gz",
"version": "0.2.0",
}
]
# Here the loader defines the id_keys to use for existence in the snapshot
# It's not the default archive loader which
loader = ArchiveLoader(
swh_storage,
url,
artifacts=artifacts,
extid_manifest_format="$sha256 $length $url",
)
actual_load_status = loader.load()
assert actual_load_status["status"] == "eventful"
assert actual_load_status["snapshot_id"] is not None
assert_last_visit_matches(swh_storage, url, status="full", type="tar")
actual_load_status2 = loader.load()
> assert actual_load_status2["status"] == "uneventful"
E AssertionError: assert 'eventful' == 'uneventful'
E - uneventful
E ? --
E + eventful
.tox/py3/lib/python3.7/site-packages/swh/loader/package/archive/tests/test_archive.py:335: AssertionError
TEST RESULT
TEST RESULT
- Run At
- Mar 19 2021, 2:32 PM