Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test DSpace transfer workflow with multiple exports #200

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions features/black_box/create-aip.feature
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ Background: The storage service is configured with a transfer source that can se
And the "Parse Dataverse METS XML" job completes successfully
And the METS file contains a dmdSec with DDI metadata

Scenario: Generate an AIP using a Dspace transfer workflow
Given a "dspace" transfer type located in "SampleTransfers/DSpaceExport/[email protected]"
Scenario Outline: Generate an AIP using a Dspace transfer workflow
Given a "dspace" transfer type located in "<sample_transfer_path>"
When the AIP is downloaded
Then the "Identify DSpace mets files" job completes successfully
And the "Identify DSpace text files" job completes successfully
Expand All @@ -54,6 +54,11 @@ Background: The storage service is configured with a transfer source that can se
And there is a DSpace-specific rights metadata section for each object
And the entries in the file section of the METS are sorted by file group

Examples: sample transfers
| sample_transfer_path |
| SampleTransfers/DSpaceExport/[email protected] |
| SampleTransfers/DSpaceExport |

Scenario: Generate an AIP using a Zipped directory transfer workflow
Given a "zipfile" transfer type located in "SampleTransfers/ZippedDirectoryTransfers/DemoTransferCSV.zip"
When the transfer is approved
Expand Down