X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/1da4fed9b5609d98bfe3957454165446fabdb6ad..051998dd80b0def50058266b7adbdf2e971032eb:/tests/steps/terrain.py?ds=inline diff --git a/tests/steps/terrain.py b/tests/steps/terrain.py index 39fc6625..80beebd5 100644 --- a/tests/steps/terrain.py +++ b/tests/steps/terrain.py @@ -123,16 +123,19 @@ def match_geometry(coord, matchstring): logger.debug("Distances expected: %f, got: %f" % (expdist, dist)) assert dist <= expdist, "Geometry too far away, expected: %f, got: %f" % (expdist, dist) +@world.absorb +def print_statement(element): + print '\n\n\n'+str(element)+'\n\n\n' @world.absorb def db_dump_table(table): cur = world.conn.cursor() cur.execute('SELECT * FROM %s' % table) - print '<<<<<<< BEGIN OF TABLE DUMP %s' % table + print '\n\n\n<<<<<<< BEGIN OF TABLE DUMP %s' % table for res in cur: print res - print '<<<<<<< END OF TABLE DUMP %s' % table + print '<<<<<<< END OF TABLE DUMP %s\n\n\n' % table @world.absorb def db_drop_database(name): @@ -173,7 +176,9 @@ def db_template_setup(): psycopg2.extras.register_hstore(conn, globally=False, unicode=True) cur = conn.cursor() for table in ('gb_postcode', 'us_postcode'): - cur.execute('TRUNCATE TABLE %s' % (table,)) + cur.execute("select * from pg_tables where tablename = '%s'" % (table, )) + if cur.rowcount > 0: + cur.execute('TRUNCATE TABLE %s' % (table,)) conn.commit() conn.close() # execute osm2pgsql on an empty file to get the right tables