Skip to content

Commit

Permalink
Update archivematica-storage-service submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
replaceafill committed Nov 13, 2023
1 parent 09e86fc commit 659412b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/submodules/archivematica-storage-service
Submodule archivematica-storage-service updated 73 files
+6 −17 .github/workflows/test.yml
+11 −12 .pre-commit-config.yaml
+2 −2 CONTRIBUTING.md
+42 −38 integration/test_integration.py
+1 −0 requirements-dev.in
+12 −2 requirements-dev.txt
+2 −2 requirements.txt
+13 −13 storage_service/common/premis.py
+4 −4 storage_service/common/utils.py
+1 −3 storage_service/locations/api/resources.py
+1 −1 storage_service/locations/api/sword/helpers.py
+1 −1 storage_service/locations/datatable_utils.py
+16 −0 storage_service/locations/fixtures/vcr_cassettes/api_download_package_arkivum_error.yaml
+84 −0 storage_service/locations/fixtures/vcr_cassettes/api_download_package_arkivum_not_available.yaml
+77 −0 storage_service/locations/fixtures/vcr_cassettes/arkivum_delete.yaml
+35 −0 storage_service/locations/fixtures/vcr_cassettes/arkivum_post_move_from_ss.yaml
+47 −0 storage_service/locations/fixtures/vcr_cassettes/arkivum_update_package_status.yaml
+71 −0 storage_service/locations/fixtures/vcr_cassettes/arkivum_update_package_status_uncompressed.yaml
+109 −0 storage_service/locations/fixtures/vcr_cassettes/dataverse_browse_all.yaml
+666 −0 storage_service/locations/fixtures/vcr_cassettes/dataverse_browse_filter.yaml
+74 −0 storage_service/locations/fixtures/vcr_cassettes/dataverse_move_to.yaml
+63 −0 storage_service/locations/fixtures/vcr_cassettes/dspace_get_sword_connection.yaml
+320 −0 storage_service/locations/fixtures/vcr_cassettes/dspace_move_from_ss.yaml
+106 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_browse.yaml
+52 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_browse_split_files.yaml
+351 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_delete_chunked_file.yaml
+84 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_delete_file.yaml
+251 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_delete_folder.yaml
+84 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_delete_percent_encoding.yaml
+576 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_chunked.yaml
+501 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_chunked_resume.yaml
+92 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_file.yaml
+182 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_folder.yaml
+92 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_percent_encoding.yaml
+2,890 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_chunked_file.yaml
+30 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_file.yaml
+164 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_folder.yaml
+164 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_folder_globbing.yaml
+30 −0 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_percent_encoding.yaml
+29 −0 storage_service/locations/fixtures/vcr_cassettes/package_fixity_amber_arkivum.yaml
+23 −0 storage_service/locations/fixtures/vcr_cassettes/package_fixity_failure_arkivum.yaml
+16 −0 storage_service/locations/fixtures/vcr_cassettes/package_fixity_scheduled_arkivum.yaml
+29 −0 storage_service/locations/fixtures/vcr_cassettes/package_fixity_success_arkivum.yaml
+24 −0 storage_service/locations/fixtures/vcr_cassettes/pipeline_approve_transfer.yaml
+23 −0 storage_service/locations/fixtures/vcr_cassettes/pipeline_list_unapproved_transfers.yaml
+76 −0 storage_service/locations/fixtures/vcr_cassettes/swift_browse.yaml
+92 −0 storage_service/locations/fixtures/vcr_cassettes/swift_browse_unicode.yaml
+124 −0 storage_service/locations/fixtures/vcr_cassettes/swift_delete.yaml
+168 −0 storage_service/locations/fixtures/vcr_cassettes/swift_delete_folder.yaml
+131 −0 storage_service/locations/fixtures/vcr_cassettes/swift_move_from.yaml
+76 −0 storage_service/locations/fixtures/vcr_cassettes/swift_move_to.yaml
+76 −0 storage_service/locations/fixtures/vcr_cassettes/swift_move_to_bad_etag.yaml
+148 −0 storage_service/locations/fixtures/vcr_cassettes/swift_move_to_folder.yaml
+116 −0 storage_service/locations/fixtures/vcr_cassettes/swift_move_to_not_exist.yaml
+25 −0 storage_service/locations/fixtures/vcr_cassettes/test_lockssomatic_bad_url.yaml
+1 −1 storage_service/locations/models/arkivum.py
+4 −4 storage_service/locations/models/duracloud.py
+1 −1 storage_service/locations/models/lockssomatic.py
+1 −1 storage_service/locations/models/s3.py
+37 −5 storage_service/locations/models/space.py
+1 −1 storage_service/locations/models/swift.py
+23 −44 storage_service/locations/tests/test_api.py
+65 −115 storage_service/locations/tests/test_arkivum.py
+14 −320 storage_service/locations/tests/test_dataverse.py
+27 −72 storage_service/locations/tests/test_dspace.py
+574 −589 storage_service/locations/tests/test_duracloud.py
+9 −3 storage_service/locations/tests/test_lockssomatic.py
+19 −76 storage_service/locations/tests/test_package.py
+14 −34 storage_service/locations/tests/test_pipeline.py
+28 −266 storage_service/locations/tests/test_swift.py
+1 −1 storage_service/storage_service/__init__.py
+1 −1 storage_service/storage_service/wsgi.py
+4 −14 tox.ini

0 comments on commit 659412b

Please sign in to comment.