view schema/isrs_tests.sql @ 879:52fe3e20f750

client: improve print styling * Set explicit pixel width and height for the map for printing. This results in a map which roughly has the right scale, though it is not centered on the screen view anymore and also does not take up the full printed page. * Add handlers for detecting print events, with some experiments in deactivated code.
author Bernhard Reiter <bernhard@intevation.de>
date Mon, 01 Oct 2018 12:01:46 +0200
parents 61af85a432bf
children 6590208e3ee1
line wrap: on
line source

--
-- pgTAP test script for ISRS location code types and functions
--

SELECT results_eq($$
    SELECT isrs_fromText('DEBON03901G007906548')
    $$,
    $$
    SELECT CAST(('DE', 'BON', '03901', 'G0079', 6548) AS isrs)
    $$,
    'Correct ISRS text input gives respective ISRS location code');

SELECT throws_ok($$
    SELECT isrs_fromText('DEUXXX039000000005023')
    $$,
    22023, NULL,
    'ISRS text input needs to have correct length');