Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.deposit.tests.cli.test_client::test_cli_single_minimal_deposit_with_create_origin
Failed

TEST RESULT

Run At
Feb 23 2022, 7:11 PM
Details
sample_archive = {'data': b'PK\x03\x04\x14\x00\x00\x00\x00\x00f\x91WT\xcba\xb4c\x14\x00\x00\x00\x14\x00\x00\x00\x05\x00\x00\x00file1som...ytest-0/test_cli_single_minimal_deposi1/tmp6ac03cbs', 'length': 128, 'md5sum': '4fa6e9067afb9df152abf4f2f9a91276', ...} slug = '6dd89b76-64de-4e4f-804d-87db8c5163e4' patched_tmp_path = '/tmp/pytest-of-jenkins/pytest-0/test_cli_single_minimal_deposi1' requests_mock_datadir = <requests_mock.mocker.Mocker object at 0x7f1bde7c1ba8> cli_runner = <click.testing.CliRunner object at 0x7f1be00a0048> caplog = <_pytest.logging.LogCaptureFixture object at 0x7f1bde639e48> def test_cli_single_minimal_deposit_with_create_origin( sample_archive, slug, patched_tmp_path, requests_mock_datadir, cli_runner, caplog, ): """ This ensure a single deposit upload through the cli is fine, cf. https://docs.softwareheritage.org/devel/swh-deposit/getting-started.html#single-deposit """ # noqa metadata_path = os.path.join(patched_tmp_path, "metadata.xml") origin = slug # fmt: off result = cli_runner.invoke( cli, [ "upload", "--url", "https://deposit.swh.test/1", "--username", TEST_USER["username"], "--password", TEST_USER["password"], "--name", "test-project", "--archive", sample_archive["path"], "--author", "Jane Doe", "--create-origin", origin, "--metadata-provenance-url", "meta-prov-url", "--format", "json", ], ) # fmt: on > assert result.exit_code == 0, result.output E AssertionError: E assert 1 == 0 E +1 E -0 .tox/py3/lib/python3.7/site-packages/swh/deposit/tests/cli/test_client.py:366: AssertionError