This is a Drupal module that contains the EC corporate entity types.
The main entity type is the RDF Entity which has the following bundles:
- Event
- Announcement
- Department
All bundles of this entity type have predicate mappings for RDF shared storage. In order to determine the provenance of an entity, a "provenance URI" can be set at the site level, which gets automatically saved with the entity. Access rules also depend on this URI.
When installing the module, the provenance URI is set based on the base URL of the site. However, it can be overridden by adding the following line to the settings.php file (with the your respective URI):
$config['oe_content.settings']['provenance_uri'] = 'http://example.com';
This depends on the following software:
- Install the package and its dependencies:
$ composer require openeuropa/oe_content
If you want to use OpenEuropa Content, enable the module:
$ drush en oe_content
You can build the test site by running the following steps.
-
Install Virtuoso. The easiest way to do this is by using the OpenEuropa Triple store development Docker container which also pre-imports the main Europa vocabularies.
-
Install all the composer dependencies:
$ composer install
-
Customize build settings by copying
runner.yml.dist
torunner.yml
and changing relevant values, like your database credentials. -
Setup test site by running:
$ ./vendor/bin/run drupal:site-setup
This will symlink the theme in the proper directory within the test site and
perform token substitution in test configuration files such as behat.yml.dist
.
- Install test site by running:
$ ./vendor/bin/run drupal:site-install
Your test site will be available at ./build
.
Alternatively you can build a test site using Docker and Docker-compose with the provided configuration.
Requirements:
Copy docker-compose.yml.dist into docker-compose.yml.
You can make any alterations you need for your local Docker setup. However, the defaults should be enough to set the project up.
Run:
$ docker-compose up -d
Then:
$ docker-compose exec web composer install
$ docker-compose exec web ./vendor/bin/run drupal:site-install
Your test site will be available at http://localhost:8080/build.
To run the grumphp test:
$ docker-compose exec web ./vendor/bin/grumphp run
To run the phpunit test:
$ docker-compose exec web ./vendor/bin/phpunit
To run the behat test:
$ docker-compose exec web ./vendor/bin/behat
The project ships with the following Task Runner commands to work with content in the RDF store, they require Docker Compose services to be up and running.
Purge all data:
$ docker-compose exec sparql ./vendor/bin/robo purge
Or, if you can run commands on your host machine:
$ ./vendor/bin/run sparql:purge
Import default data:
$ docker-compose exec sparql ./vendor/bin/robo import
Or, if you can run commands on your host machine:
$ ./vendor/bin/run sparql:import
Reset all data, i.e. run purge and import:
$ docker-compose exec sparql ./vendor/bin/robo purge
$ docker-compose exec sparql ./vendor/bin/robo import
Or, if you can run commands on your host machine:
$ ./vendor/bin/run sparql:reset