""" ARCHES - a program developed to inventory and manage immovable cultural heritage. Copyright (C) 2013 J. Paul Getty Trust and World Monuments Fund This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . """ import os from arches.settings import * from django.utils.translation import gettext_lazy as _ PACKAGE_NAME = "arches" TEST_ROOT = os.path.normpath(os.path.join(ROOT_DIR, "..", "tests")) APP_ROOT = "" STATICFILES_DIRS = [] # LOAD_V3_DATA_DURING_TESTS = True will engage the most extensive the of the v3 # data migration tests, which could add over a minute to the test process. It's # recommended that this setting only be set to True in tests/settings_local.py # and run in specific cases at the discretion of the developer. LOAD_V3_DATA_DURING_TESTS = False RESOURCE_GRAPH_LOCATIONS = [ os.path.join(TEST_ROOT, "fixtures", "resource_graphs"), os.path.join( TEST_ROOT, "fixtures", "testing_prj", "testing_prj", "pkg", "graphs", "resource_models", ), os.path.join(TEST_ROOT, "fixtures", "jsonld_base", "models"), ] REFERENCE_DATA_FIXTURE_LOCATION = os.path.join( TEST_ROOT, "fixtures", "testing_prj", "testing_prj", "pkg", "reference_data" ) ONTOLOGY_FIXTURES = os.path.join(TEST_ROOT, "fixtures", "ontologies", "test_ontology") ONTOLOGY_PATH = os.path.join(TEST_ROOT, "fixtures", "ontologies", "cidoc_crm") MEDIA_ROOT = os.path.join(TEST_ROOT, "fixtures", "data") BUSINESS_DATA_FILES = ( # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. ) # Class for custom ES document generator and search functionality ES_MAPPING_MODIFIER_CLASSES = ["tests.views.search_tests.TestEsMappingModifier"] CACHES = { "default": { "BACKEND": "django.core.cache.backends.dummy.DummyCache", }, "user_permission": { "BACKEND": "django.core.cache.backends.dummy.DummyCache", "LOCATION": "user_permission_cache", }, } LOGGING["loggers"]["arches"]["level"] = "ERROR" ELASTICSEARCH_PREFIX = "test" TEST_RUNNER = "arches.test.runner.ArchesTestRunner" SILENCED_SYSTEM_CHECKS.append( "arches.W001" ) # Cache backend does not support rate-limiting FILE_TYPE_CHECKING = "lenient" # could add Chrome, PhantomJS etc... here LOCAL_BROWSERS = [] # ['Firefox'] ENABLE_USER_SIGNUP = True FORCE_USER_SIGNUP_EMAIL_AUTHENTICATION = True OVERRIDE_RESOURCE_MODEL_LOCK = True ENABLE_TWO_FACTOR_AUTHENTICATION = False FORCE_TWO_FACTOR_AUTHENTICATION = False DATATYPE_LOCATIONS.append("tests.fixtures.datatypes") ELASTICSEARCH_HOSTS = [ {"scheme": "http", "host": "localhost", "port": ELASTICSEARCH_HTTP_PORT} ] LANGUAGES = [ ("de", _("German")), ("en", _("English")), ("en-gb", _("British English")), ("es", _("Spanish")), ("ar", _("Arabic")), ] DOCKER = False PERMISSION_DEFAULTS = {} try: from arches.settings_local import * except ImportError: pass if DOCKER: try: from arches.settings_docker import * except ImportError: pass