]> git.openstreetmap.org Git - nominatim.git/blob - test/bdd/steps/osm_data.py
add symphony dotenv to prerequisites list
[nominatim.git] / test / bdd / steps / osm_data.py
1 import subprocess
2 import tempfile
3 import random
4 import os
5
6 @given(u'the ([0-9.]+ )?grid')
7 def define_node_grid(context, grid_step):
8     """
9     Define a grid of node positions.
10     """
11     if grid_step is not None:
12         grid_step = float(grid_step.strip())
13     else:
14         grid_step = 0.00001
15
16     context.osm.clear_grid()
17
18     i = 0
19     for h in context.table.headings:
20         if h.isdigit():
21             context.osm.add_grid_node(int(h), 0, i)
22         i += grid_step
23
24     x = grid_step
25     for r in context.table:
26         y = 0
27         for h in r:
28             if h.isdigit():
29                 context.osm.add_grid_node(int(h), x, y)
30             y += grid_step
31         x += grid_step
32
33
34 @when(u'loading osm data')
35 def load_osm_file(context):
36     """
37     Load the given data into a freshly created test data using osm2pgsql.
38     No further indexing is done.
39
40     The data is expected as attached text in OPL format.
41     """
42     # create a OSM file in /tmp and import it
43     with tempfile.NamedTemporaryFile(dir='/tmp', suffix='.opl', delete=False) as fd:
44         fname = fd.name
45         for line in context.text.splitlines():
46             if line.startswith('n') and line.find(' x') < 0:
47                 coord = context.osm.grid_node(int(line[1:].split(' ')[0]))
48                 if coord is None:
49                     coord = (random.random() * 360 - 180,
50                              random.random() * 180 - 90)
51                 line += " x%f y%f" % coord
52             fd.write(line.encode('utf-8'))
53             fd.write(b'\n')
54
55     context.nominatim.run_setup_script('import-data', osm_file=fname,
56                                        osm2pgsql_cache=300)
57
58     ### reintroduce the triggers/indexes we've lost by having osm2pgsql set up place again
59     cur = context.db.cursor()
60     cur.execute("""CREATE TRIGGER place_before_delete BEFORE DELETE ON place
61                     FOR EACH ROW EXECUTE PROCEDURE place_delete()""")
62     cur.execute("""CREATE TRIGGER place_before_insert BEFORE INSERT ON place
63                    FOR EACH ROW EXECUTE PROCEDURE place_insert()""")
64     cur.execute("""CREATE UNIQUE INDEX idx_place_osm_unique on place using btree(osm_id,osm_type,class,type)""")
65     context.db.commit()
66
67     os.remove(fname)
68
69 @when(u'updating osm data')
70 def update_from_osm_file(context):
71     """
72     Update a database previously populated with 'loading osm data'.
73     Needs to run indexing on the existing data first to yield the correct result.
74
75     The data is expected as attached text in OPL format.
76     """
77     context.nominatim.run_setup_script('create-functions', 'create-partition-functions')
78
79     cur = context.db.cursor()
80     cur.execute("""insert into placex (osm_type, osm_id, class, type, name, admin_level, address, extratags, geometry)
81                      select            osm_type, osm_id, class, type, name, admin_level, address, extratags, geometry from place""")
82     cur.execute(
83         """insert into location_property_osmline (osm_id, address, linegeo)
84              SELECT osm_id, address, geometry from place
85               WHERE class='place' and type='houses' and osm_type='W'
86                     and ST_GeometryType(geometry) = 'ST_LineString'""")
87     context.db.commit()
88     context.nominatim.run_setup_script('index', 'index-noanalyse')
89     context.nominatim.run_setup_script('create-functions', 'create-partition-functions',
90                                        'enable-diff-updates')
91
92     # create a OSM file in /tmp and import it
93     with tempfile.NamedTemporaryFile(dir='/tmp', suffix='.opl', delete=False) as fd:
94         fname = fd.name
95         for line in context.text.splitlines():
96             if line.startswith('n') and line.find(' x') < 0:
97                     line += " x%d y%d" % (random.random() * 360 - 180,
98                                           random.random() * 180 - 90)
99             fd.write(line.encode('utf-8'))
100             fd.write(b'\n')
101
102     context.nominatim.run_update_script(import_diff=fname)
103     os.remove(fname)