diff --git a/.env b/.env index 88150e36..1a2ae854 100644 --- a/.env +++ b/.env @@ -45,8 +45,7 @@ CKAN_SMTP_PASSWORD=pass CKAN_SMTP_MAIL_FROM=ckan@localhost # Extensions -# To re-integrate: qa archiver -CKAN__PLUGINS=envvars image_view text_view recline_view archiver report ckan_harvester datajson_harvest geodatagov datagovtheme datagov_harvest geodatagov_miscs z3950_harvester arcgis_harvester geodatagov_geoportal_harvester waf_harvester_collection geodatagov_csw_harvester geodatagov_doc_harvester geodatagov_waf_harvester spatial_metadata spatial_query spatial_harvest_metadata_api googleanalyticsbasic dcat dcat_json_interface structured_data datagovcatalog +CKAN__PLUGINS=envvars image_view text_view recline_view qa archiver report ckan_harvester datajson_harvest geodatagov datagovtheme datagov_harvest geodatagov_miscs z3950_harvester arcgis_harvester geodatagov_geoportal_harvester waf_harvester_collection geodatagov_csw_harvester geodatagov_doc_harvester geodatagov_waf_harvester spatial_metadata spatial_query spatial_harvest_metadata_api googleanalyticsbasic dcat dcat_json_interface structured_data datagovcatalog # Extensions that exist but are not used in dev: # - ckanext-saml2 diff --git a/ckan/docker-entrypoint.d/30-setup-qa.sh b/ckan/docker-entrypoint.d/30-setup-qa.sh index 90b2d0e2..2ae599a7 100644 --- a/ckan/docker-entrypoint.d/30-setup-qa.sh +++ b/ckan/docker-entrypoint.d/30-setup-qa.sh @@ -1,4 +1,2 @@ -# TODO: run when extensions are implemented - echo "Setup ckanext-qa" -# ckan qa init \ No newline at end of file +ckan qa init diff --git a/ckan/setup/ckan.ini b/ckan/setup/ckan.ini index 27ca7da8..5d1ac0da 100644 --- a/ckan/setup/ckan.ini +++ b/ckan/setup/ckan.ini @@ -126,7 +126,7 @@ ckan.cors.origin_whitelist = https://data.gov https://www.data.gov # Add ``datapusher`` to enable DataPusher # Add ``resource_proxy`` to enable resorce proxying and get around the # same origin policy -ckan.plugins = image_view text_view recline_view archiver report ckan_harvester datajson_harvest geodatagov datagovtheme datagov_harvest geodatagov_miscs z3950_harvester arcgis_harvester geodatagov_geoportal_harvester waf_harvester_collection geodatagov_csw_harvester geodatagov_doc_harvester geodatagov_waf_harvester spatial_metadata spatial_query spatial_harvest_metadata_api googleanalyticsbasic dcat dcat_json_interface structured_data datagovcatalog saml2auth envvars +ckan.plugins = image_view text_view recline_view qa archiver report ckan_harvester datajson_harvest geodatagov datagovtheme datagov_harvest geodatagov_miscs z3950_harvester arcgis_harvester geodatagov_geoportal_harvester waf_harvester_collection geodatagov_csw_harvester geodatagov_doc_harvester geodatagov_waf_harvester spatial_metadata spatial_query spatial_harvest_metadata_api googleanalyticsbasic dcat dcat_json_interface structured_data datagovcatalog saml2auth envvars # Define which views should be created by default # (plugins must be loaded in ckan.plugins) diff --git a/e2e/cypress/integration/ckan_extensions.spec.js b/e2e/cypress/integration/ckan_extensions.spec.js index 2dfa38a1..d00f5dd5 100644 --- a/e2e/cypress/integration/ckan_extensions.spec.js +++ b/e2e/cypress/integration/ckan_extensions.spec.js @@ -37,9 +37,7 @@ describe('CKAN Extensions', () => { expect(installed_extensions).to.include('datagovcatalog'); expect(installed_extensions).to.include('report'); expect(installed_extensions).to.include('archiver'); - - // TODO: The following extensions should be verified to be installed: - // expect(installed_extensions).to.include('qa'); + expect(installed_extensions).to.include('qa'); }); }); });