Sign inSign up

qwantresearch/geocoder-tester

By qwantresearch

•Updated about 8 years ago

integration tests that run search queries against a geocoder that supports geocodejson spec.

Image
0

1.5K

qwantresearch/geocoder-tester repository overview

⁠Geocoder tester

Run search queries against a geocoder that supports geocodejson spec⁠.

⁠Intalling

  • create a python >= 3.4 virtualenv⁠ environment
  • git clone https://github.com/geocoders/geocoder-tester && cd geocoder-tester
  • pip install -r requirements.txt

⁠Running

Simply:

py.test

For a global help, type:

py.test -h

Tests are split by geographical area, so you can run only a subset of all the tests, for example because your local database only contains a small area, or because you want to focus on some data.

Available subsets: germany, france, iledefrance, italy.

If you want to run only a subset of the tests, run for example

py.test -m iledefrance

What if I want to have details about the failures?

py.test --tb short

How can I stop at first failing test?

py.test -x

Can I change the api URL I'm testing against?

py.test --api-url http://photon.komoot.de/api/

Can I limit the number of tests to be run (even if my filter select thousands of tests) ?

py.test --max-run 100

You can compare two runs (for example to compare two branches). First, save the report from the first run:

py.test --save-report path/to/report.log

Then compare when running a new version

py.test --compare-report path/to/report.log

You can also check that there are no duplicates in the 10 first results

py.test --check-duplicates=10

⁠Adding search cases

We support python, CSV and YAML format.

Before creating a new file, check that there isn't a one that can host the test you want to add.

How do I name my file? Just make it start with test_, and chose the right extension according to the format you want to use: .py, .csv or .yml.

Where do I save my file? Chose the right geographical area, and if you create a new area remember to create all levels, like france/iledefrance/paris.

Remember to check the tests already done to get inspiration.

You generally want to use YAML format if you are managing tests by hand in your text editor, CSV if you are generating test cases from a script, and python test cases if you need more control.

⁠Python

They are normal python tests. Just note that you have two utils in base.py: search and assert_search that can do a lot for you.

⁠CSV

One column is mandatory: query, where you store the query you make. Then you can add as many expected_xxx columns you want, according to what you want to test. For example, to test the name in the result, you will store the expected value in the column expected_name; for an osm_id it will be expected_osm_id, and so on. Note on expected_coordinate format: it should be of the form lat,lon,tolerated deviation in meters, e.g. 51.0,10.3,700.

Optional columns:

  • limit: decide how many results you want to look at for finding your result (default: 1)
  • lat, lon: if you want to add a center for the search
  • comment: if you want to take control of the ouput of the test in the command line
  • lang: language
  • skip: add a skip message if you want a test to be always skipped (feature not supported yet for example)
  • max_matches: maximum number of results that should match expected value. Should be used such as limit > max_matches. (default: no limit)
⁠YAML

The spec name is the query, then one key is mandatory: expected, which then has the subkeys you want to test against (name, housenumber…). Optional keys: limit, lang, lat and lon, skip. You can add categories to your test by using the key mark (which expects a list), that you can then run with -m yourmarker.

⁠Generate Allure report

  • Install geocoder-tester with pipenv and open a shell in the virtualenv
pipenv install
pipenv shell
  • Run some tests via invoke
INVOKE_API_URL=http://example.com/autocomplete INVOKE_TESTS_FILES=geocoder_tester/world/france/test_poi.csv invoke -r allure
  • Allure report is generated in allure/allure-report

Tag summary

Content type

Image

Digest

Size

69.6 MB

Last updated

about 8 years ago

docker pull qwantresearch/geocoder-tester