mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 05:35:13 +03:00
adapt tests to new dotenv environment
DB tests now can simply set the environment to change configuration variables. API tests still rely on a configuration file. Also, query.php needs to set up the CONST_* variables to work with the query scripts. That is a tiny bit messy and duplicates code but this part will need to be reworked later.
This commit is contained in:
parent
06d89e1d47
commit
d97aed8741
@ -715,6 +715,8 @@ class SetupFunctions
|
|||||||
$rOutputFile = fopen(CONST_InstallDir.'/settings/settings-frontend.php', 'w');
|
$rOutputFile = fopen(CONST_InstallDir.'/settings/settings-frontend.php', 'w');
|
||||||
|
|
||||||
fwrite($rOutputFile, "<?php
|
fwrite($rOutputFile, "<?php
|
||||||
|
if (file_exists(getenv('NOMINATIM_SETTINGS'))) require_once(getenv('NOMINATIM_SETTINGS'));
|
||||||
|
|
||||||
@define('CONST_Database_DSN', '".getSetting('DATABASE_DSN')."');
|
@define('CONST_Database_DSN', '".getSetting('DATABASE_DSN')."');
|
||||||
@define('CONST_Default_Language', ".getSetting('DEFAULT_LANGUAGE', 'false').");
|
@define('CONST_Default_Language', ".getSetting('DEFAULT_LANGUAGE', 'false').");
|
||||||
@define('CONST_Log_DB', ".(getSettingBool('LOG_DB') ? 'true' : 'false').");
|
@define('CONST_Log_DB', ".(getSettingBool('LOG_DB') ? 'true' : 'false').");
|
||||||
|
@ -48,6 +48,7 @@ class NominatimEnvironment(object):
|
|||||||
self.keep_scenario_db = config['KEEP_TEST_DB']
|
self.keep_scenario_db = config['KEEP_TEST_DB']
|
||||||
self.code_coverage_path = config['PHPCOV']
|
self.code_coverage_path = config['PHPCOV']
|
||||||
self.code_coverage_id = 1
|
self.code_coverage_id = 1
|
||||||
|
self.test_env = None
|
||||||
os.environ['NOMINATIM_SETTINGS'] = self.local_settings_file
|
os.environ['NOMINATIM_SETTINGS'] = self.local_settings_file
|
||||||
|
|
||||||
self.template_db_done = False
|
self.template_db_done = False
|
||||||
@ -72,19 +73,17 @@ class NominatimEnvironment(object):
|
|||||||
return fn
|
return fn
|
||||||
|
|
||||||
def write_nominatim_config(self, dbname):
|
def write_nominatim_config(self, dbname):
|
||||||
f = open(self.local_settings_file, 'w')
|
self.test_env = os.environ
|
||||||
# https://secure.php.net/manual/en/ref.pdo-pgsql.connection.php
|
self.test_env['NOMINATIM_DATABASE_DSN'] = 'pgsql:dbname={}{}{}{}{}'.format(
|
||||||
f.write("<?php\n @define('CONST_Database_DSN', 'pgsql:dbname=%s%s%s%s%s');\n" %
|
dbname,
|
||||||
(dbname,
|
|
||||||
(';host=' + self.db_host) if self.db_host else '',
|
(';host=' + self.db_host) if self.db_host else '',
|
||||||
(';port=' + self.db_port) if self.db_port else '',
|
(';port=' + self.db_port) if self.db_port else '',
|
||||||
(';user=' + self.db_user) if self.db_user else '',
|
(';user=' + self.db_user) if self.db_user else '',
|
||||||
(';password=' + self.db_pass) if self.db_pass else ''
|
(';password=' + self.db_pass) if self.db_pass else ''
|
||||||
))
|
)
|
||||||
f.write("@define('CONST_Osm2pgsql_Flatnode_File', null);\n")
|
self.test_env['NOMINATIM_FLATNODE_FILE'] = ''
|
||||||
f.write("@define('CONST_Import_Style', CONST_DataDir.'/settings/import-full.style');\n")
|
self.test_env['NOMINATIM_IMPORT_STYLE'] = 'full'
|
||||||
f.write("@define('CONST_Use_US_Tiger_Data', true);\n")
|
self.test_env['NOMINATIM_USE_US_TIGER_DATA'] = 'yes'
|
||||||
f.close()
|
|
||||||
|
|
||||||
def cleanup(self):
|
def cleanup(self):
|
||||||
try:
|
try:
|
||||||
@ -152,7 +151,19 @@ class NominatimEnvironment(object):
|
|||||||
|
|
||||||
|
|
||||||
def setup_api_db(self, context):
|
def setup_api_db(self, context):
|
||||||
self.write_nominatim_config(self.api_test_db)
|
f = open(self.local_settings_file, 'w')
|
||||||
|
# https://secure.php.net/manual/en/ref.pdo-pgsql.connection.php
|
||||||
|
f.write("<?php\n @define('CONST_Database_DSN', 'pgsql:dbname=%s%s%s%s%s');\n" %
|
||||||
|
(self.api_test_db,
|
||||||
|
(';host=' + self.db_host) if self.db_host else '',
|
||||||
|
(';port=' + self.db_port) if self.db_port else '',
|
||||||
|
(';user=' + self.db_user) if self.db_user else '',
|
||||||
|
(';password=' + self.db_pass) if self.db_pass else ''
|
||||||
|
))
|
||||||
|
f.write("@define('CONST_Osm2pgsql_Flatnode_File', null);\n")
|
||||||
|
f.write("@define('CONST_Import_Style', CONST_DataDir.'/settings/import-full.style');\n")
|
||||||
|
f.write("@define('CONST_Use_US_Tiger_Data', true);\n")
|
||||||
|
f.close()
|
||||||
|
|
||||||
def setup_unknown_db(self, context):
|
def setup_unknown_db(self, context):
|
||||||
self.write_nominatim_config('UNKNOWN_DATABASE_NAME')
|
self.write_nominatim_config('UNKNOWN_DATABASE_NAME')
|
||||||
@ -194,7 +205,7 @@ class NominatimEnvironment(object):
|
|||||||
cmd.extend(['--%s' % x for x in args])
|
cmd.extend(['--%s' % x for x in args])
|
||||||
for k, v in kwargs.items():
|
for k, v in kwargs.items():
|
||||||
cmd.extend(('--' + k.replace('_', '-'), str(v)))
|
cmd.extend(('--' + k.replace('_', '-'), str(v)))
|
||||||
proc = subprocess.Popen(cmd, cwd=self.build_dir,
|
proc = subprocess.Popen(cmd, cwd=self.build_dir, env=self.test_env,
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
(outp, outerr) = proc.communicate()
|
(outp, outerr) = proc.communicate()
|
||||||
outerr = outerr.decode('utf-8').replace('\\n', '\n')
|
outerr = outerr.decode('utf-8').replace('\\n', '\n')
|
||||||
|
@ -282,6 +282,7 @@ def query_cmd(context, query, dups):
|
|||||||
(outp, err) = proc.communicate()
|
(outp, err) = proc.communicate()
|
||||||
|
|
||||||
assert_equals (0, proc.returncode, "query.php failed with message: %s\noutput: %s" % (err, outp))
|
assert_equals (0, proc.returncode, "query.php failed with message: %s\noutput: %s" % (err, outp))
|
||||||
|
logger.debug("run_nominatim_script: %s\n%s\n" % (cmd, outp.decode('utf-8').replace('\\n', '\n')))
|
||||||
|
|
||||||
context.response = SearchResponse(outp.decode('utf-8'), 'json')
|
context.response = SearchResponse(outp.decode('utf-8'), 'json')
|
||||||
|
|
||||||
|
@ -35,6 +35,21 @@ $aCMDOptions
|
|||||||
getCmdOpt($_SERVER['argv'], $aCMDOptions, $aCMDResult, true, true);
|
getCmdOpt($_SERVER['argv'], $aCMDOptions, $aCMDResult, true, true);
|
||||||
|
|
||||||
loadSettings($aCMDResult['project-dir'] ?? getcwd());
|
loadSettings($aCMDResult['project-dir'] ?? getcwd());
|
||||||
|
@define('CONST_Database_DSN', getSetting('DATABASE_DSN'));
|
||||||
|
@define('CONST_Default_Language', getSetting('DEFAULT_LANGUAGE', false));
|
||||||
|
@define('CONST_Log_DB', getSettingBool('LOG_DB'));
|
||||||
|
@define('CONST_Log_File', getSetting('LOG_FILE', false));
|
||||||
|
@define('CONST_Max_Word_Frequency', getSetting('MAX_WORD_FREQUENCY'));
|
||||||
|
@define('CONST_NoAccessControl', getSettingBool('CORS_NOACCESSCONTROL'));
|
||||||
|
@define('CONST_Places_Max_ID_count', getSetting('LOOKUP_MAX_COUNT'));
|
||||||
|
@define('CONST_PolygonOutput_MaximumTypes', getSetting('POLYGON_OUTPUT_MAX_TYPES'));
|
||||||
|
@define('CONST_Search_BatchMode', getSettingBool('SEARCH_BATCH_MODE'));
|
||||||
|
@define('CONST_Search_NameOnlySearchFrequencyThreshold', getSetting('SEARCH_NAME_ONLY_THRESHOLD'));
|
||||||
|
@define('CONST_Term_Normalization_Rules', getSetting('TERM_NORMALIZATION'));
|
||||||
|
@define('CONST_Use_Aux_Location_data', getSettingBool('USE_AUX_LOCATION_DATA'));
|
||||||
|
@define('CONST_Use_US_Tiger_Data', getSettingBool('USE_US_TIGER_DATA'));
|
||||||
|
@define('CONST_MapIcon_URL', getSetting('MAPICON_URL', false));
|
||||||
|
|
||||||
|
|
||||||
$oDB = new Nominatim\DB;
|
$oDB = new Nominatim\DB;
|
||||||
$oDB->connect();
|
$oDB->connect();
|
||||||
|
Loading…
Reference in New Issue
Block a user