used for blackbox testing, data-ingestion procedures
Make sure that your email server is NOT running because some of the endpoints that are used are sending emails to the input email addresses. For example, when using the endpoint for creating new registration data, there exists automatic function that sends email, what we don't want because we use this endpoint for importing existing data.
- Install CLARIN-DSpace7.*. (postgres, solr, dspace backend)
2.1. Clone python-api: https://github.com/dataquest-dev/dspace-python-api (branch main
) and https://github.com/dataquest-dev/DSpace (branch dtq-dev
)
2.2. Clone submodules:
2.2.1.: git submodule update --init libs/dspace-rest-python/
- Get database dump (old CLARIN-DSpace) and unzip it into
input/dump
directory indspace-python-api
project.
-
Go to the
dspace/bin
in dspace7 installation and run the commanddspace database migrate force
(force because of local types). NOTE:dspace database migrate force
creates default database data that may be not in database dump, so after migration, some tables may have more data than the database dump. Data from database dump that already exists in database is not migrated. -
Create an admin by running the command
dspace create-administrator
in thedspace/bin
- Prepare
dspace-python-api
project for migration
- copy the files used during migration into
input/
directory:
> ls -R ./input
input:
dump icon
input/dump:
clarin-dspace.sql clarin-utilities.sql
input/icon:
aca.png by.png gplv2.png mit.png ...
- Create CLARIN-DSpace5.* databases (dspace, utilities) from dump.
Run
scripts/start.local.dspace.db.bat
or usescipts/init.dspacedb5.sh
directly with your database.
- update
project_settings.py
-
Make sure, your backend configuration (
dspace.cfg
) includes all handle prefixes from generated handle json in propertyhandle.additional.prefixes
, e.g.,handle.additional.prefixes = 11858, 11234, 11372, 11346, 20.500.12801, 20.500.12800
-
Copy
assetstore
from dspace5 to dspace7 (for bitstream import).assetstore
is in the folder where you have installed DSpacedspace/assetstore
.
- Import
- NOTE: database must be up to date (
dspace database migrate force
must be called in thedspace/bin
) - NOTE: dspace server must be running
- run command
cd ./src && python repo_import.py
- The values of table attributes that describe the last modification time of dspace object (for example attribute
last_modified
in tableItem
) have a value that represents the time when that object was migrated and not the value from migrated database dump. - If you don't have valid and complete data, not all data will be imported.
- check if license link contains XXX. This is of course unsuitable for production run!
Use tools/repo_diff
utility, see README.