mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
[server] Tests housekeeping and improved robustness
* There is now a new common base class for QGIS Server testing * WMS tests have been moved into their own class * Added tests for onlineResource URL in query string
This commit is contained in:
parent
2a7d5d4b5b
commit
d3453063ea
@ -189,8 +189,9 @@ IF (WITH_APIDOC)
|
||||
ENDIF (WITH_APIDOC)
|
||||
|
||||
IF (WITH_SERVER)
|
||||
ADD_PYTHON_TEST(PyQgsServer test_qgsserver.py)
|
||||
ADD_PYTHON_TEST(PyQgsServerPlugins test_qgsserver_plugins.py)
|
||||
ADD_PYTHON_TEST(PyQgsServer test_qgsserver.py)
|
||||
ADD_PYTHON_TEST(PyQgsServerPlugins test_qgsserver_plugins.py)
|
||||
ADD_PYTHON_TEST(PyQgsServerWMS test_qgsserver_wms.py)
|
||||
ADD_PYTHON_TEST(PyQgsServerSettings test_qgsserver_settings.py)
|
||||
ADD_PYTHON_TEST(PyQgsServerProjectUtils test_qgsserver_projectutils.py)
|
||||
ADD_PYTHON_TEST(PyQgsServerSecurity test_qgsserver_security.py)
|
||||
|
@ -45,6 +45,10 @@ __revision__ = '$Format:%H$'
|
||||
|
||||
|
||||
import os
|
||||
|
||||
# Needed on Qt 5 so that the serialization of XML is consistent among all executions
|
||||
os.environ['QT_HASH_SEED'] = '1'
|
||||
|
||||
import sys
|
||||
import signal
|
||||
import ssl
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -15,6 +15,10 @@ __revision__ = '$Format:%H$'
|
||||
|
||||
from qgis.utils import spatialite_connect
|
||||
import os
|
||||
|
||||
# Needed on Qt 5 so that the serialization of XML is consistent among all executions
|
||||
os.environ['QT_HASH_SEED'] = '1'
|
||||
|
||||
import time
|
||||
import urllib.parse
|
||||
from shutil import copyfile
|
||||
|
768
tests/src/python/test_qgsserver_wms.py
Normal file
768
tests/src/python/test_qgsserver_wms.py
Normal file
@ -0,0 +1,768 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""QGIS Unit tests for QgsServer WMS.
|
||||
|
||||
From build dir, run: ctest -R PyQgsServerWMS -V
|
||||
|
||||
|
||||
.. note:: This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
"""
|
||||
__author__ = 'Alessandro Pasotti'
|
||||
__date__ = '25/05/2015'
|
||||
__copyright__ = 'Copyright 2015, The QGIS Project'
|
||||
# This will get replaced with a git SHA1 when you do a git archive
|
||||
__revision__ = '$Format:%H$'
|
||||
|
||||
import os
|
||||
|
||||
# Needed on Qt 5 so that the serialization of XML is consistent among all executions
|
||||
os.environ['QT_HASH_SEED'] = '1'
|
||||
|
||||
import re
|
||||
import urllib.request
|
||||
import urllib.parse
|
||||
import urllib.error
|
||||
|
||||
from qgis.core import QgsRenderChecker
|
||||
from qgis.testing import unittest
|
||||
from qgis.PyQt.QtCore import QSize
|
||||
|
||||
import osgeo.gdal # NOQA
|
||||
import tempfile
|
||||
import base64
|
||||
|
||||
from test_qgsserver import QgsServerTestBase
|
||||
|
||||
# Strip path and content length because path may vary
|
||||
RE_STRIP_UNCHECKABLE = b'MAP=[^"]+|Content-Length: \d+'
|
||||
RE_ATTRIBUTES = b'[^>\s]+=[^>\s]+'
|
||||
|
||||
|
||||
class TestQgsServerWMS(QgsServerTestBase):
|
||||
"""QGIS Server WMS Tests"""
|
||||
|
||||
# Set to True to re-generate reference files for this class
|
||||
regenerate_reference = False
|
||||
|
||||
def wms_request_compare(self, request, extra=None, reference_file=None):
|
||||
project = self.testdata_path + "test_project.qgs"
|
||||
assert os.path.exists(project), "Project file not found: " + project
|
||||
|
||||
query_string = 'https://www.qgis.org/?MAP=%s&SERVICE=WMS&VERSION=1.3&REQUEST=%s' % (urllib.parse.quote(project), request)
|
||||
if extra is not None:
|
||||
query_string += extra
|
||||
header, body = self.server.handleRequest(query_string)
|
||||
response = header + body
|
||||
reference_path = self.testdata_path + (request.lower() if not reference_file else reference_file) + '.txt'
|
||||
self.store_reference(reference_path, response)
|
||||
f = open(reference_path, 'rb')
|
||||
expected = f.read()
|
||||
f.close()
|
||||
response = re.sub(RE_STRIP_UNCHECKABLE, b'*****', response)
|
||||
expected = re.sub(RE_STRIP_UNCHECKABLE, b'*****', expected)
|
||||
|
||||
self.assertXMLEqual(response, expected, msg="request %s failed.\n Query: %s\n Expected:\n%s\n\n Response:\n%s" % (query_string, request, expected.decode('utf-8'), response.decode('utf-8')))
|
||||
|
||||
def test_project_wms(self):
|
||||
"""Test some WMS request"""
|
||||
for request in ('GetCapabilities', 'GetProjectSettings'):
|
||||
self.wms_request_compare(request)
|
||||
|
||||
# Test getfeatureinfo response
|
||||
self.wms_request_compare('GetFeatureInfo',
|
||||
'&layers=testlayer%20%C3%A8%C3%A9&styles=&' +
|
||||
'info_format=text%2Fhtml&transparent=true&' +
|
||||
'width=600&height=400&srs=EPSG%3A3857&bbox=913190.6389747962%2C' +
|
||||
'5606005.488876367%2C913235.426296057%2C5606035.347090538&' +
|
||||
'query_layers=testlayer%20%C3%A8%C3%A9&X=190&Y=320',
|
||||
'wms_getfeatureinfo-text-html')
|
||||
|
||||
# Test getfeatureinfo default info_format
|
||||
self.wms_request_compare('GetFeatureInfo',
|
||||
'&layers=testlayer%20%C3%A8%C3%A9&styles=&' +
|
||||
'transparent=true&' +
|
||||
'width=600&height=400&srs=EPSG%3A3857&bbox=913190.6389747962%2C' +
|
||||
'5606005.488876367%2C913235.426296057%2C5606035.347090538&' +
|
||||
'query_layers=testlayer%20%C3%A8%C3%A9&X=190&Y=320',
|
||||
'wms_getfeatureinfo-text-plain')
|
||||
|
||||
# Regression for #8656
|
||||
# Mind the gap! (the space in the FILTER expression)
|
||||
self.wms_request_compare('GetFeatureInfo',
|
||||
'&layers=testlayer%20%C3%A8%C3%A9&' +
|
||||
'INFO_FORMAT=text%2Fxml&' +
|
||||
'width=600&height=400&srs=EPSG%3A3857&' +
|
||||
'query_layers=testlayer%20%C3%A8%C3%A9&' +
|
||||
'FEATURE_COUNT=10&FILTER=testlayer%20%C3%A8%C3%A9' + urllib.parse.quote(':"NAME" = \'two\''),
|
||||
'wms_getfeatureinfo_filter')
|
||||
|
||||
def wms_inspire_request_compare(self, request):
|
||||
"""WMS INSPIRE tests"""
|
||||
project = self.testdata_path + "test_project_inspire.qgs"
|
||||
assert os.path.exists(project), "Project file not found: " + project
|
||||
|
||||
query_string = '?MAP=%s&SERVICE=WMS&VERSION=1.3.0&REQUEST=%s' % (urllib.parse.quote(project), request)
|
||||
header, body = self.server.handleRequest(query_string)
|
||||
response = header + body
|
||||
reference_path = self.testdata_path + request.lower() + '_inspire.txt'
|
||||
self.store_reference(reference_path, response)
|
||||
f = open(reference_path, 'rb')
|
||||
expected = f.read()
|
||||
f.close()
|
||||
response = re.sub(RE_STRIP_UNCHECKABLE, b'', response)
|
||||
expected = re.sub(RE_STRIP_UNCHECKABLE, b'', expected)
|
||||
self.assertXMLEqual(response, expected, msg="request %s failed.\n Query: %s\n Expected:\n%s\n\n Response:\n%s" % (query_string, request, expected.decode('utf-8'), response.decode('utf-8')))
|
||||
|
||||
def test_project_wms_inspire(self):
|
||||
"""Test some WMS request"""
|
||||
for request in ('GetCapabilities',):
|
||||
self.wms_inspire_request_compare(request)
|
||||
|
||||
def test_wms_getmap_basic(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_Basic")
|
||||
|
||||
def test_wms_getmap_transparent(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857",
|
||||
"TRANSPARENT": "TRUE"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_Transparent")
|
||||
|
||||
def test_wms_getmap_background(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857",
|
||||
"BGCOLOR": "green"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_Background")
|
||||
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857",
|
||||
"BGCOLOR": "0x008000"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_Background_Hex")
|
||||
|
||||
def test_wms_getcapabilities_url(self):
|
||||
# empty url in project
|
||||
project = os.path.join(self.testdata_path, "test_project_without_urls.qgs")
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(project),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.3.0",
|
||||
"REQUEST": "GetCapabilities",
|
||||
"STYLES": ""
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
|
||||
item_found = False
|
||||
for item in str(r).split("\\n"):
|
||||
if "OnlineResource" in item:
|
||||
self.assertEqual("xlink:href=\"?" in item, True)
|
||||
item_found = True
|
||||
self.assertTrue(item_found)
|
||||
|
||||
# url passed in quesry string
|
||||
project = os.path.join(self.testdata_path, "test_project_without_urls.qgs")
|
||||
qs = "https://www.qgis-server.org?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(project),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.3.0",
|
||||
"REQUEST": "GetCapabilities",
|
||||
"STYLES": ""
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
|
||||
item_found = False
|
||||
for item in str(r).split("\\n"):
|
||||
if "OnlineResource" in item:
|
||||
self.assertEqual("xlink:href=\"https://www.qgis-server.org?" in item, True)
|
||||
item_found = True
|
||||
self.assertTrue(item_found)
|
||||
|
||||
# url well defined in project
|
||||
project = os.path.join(self.testdata_path, "test_project_with_urls.qgs")
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(project),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.3.0",
|
||||
"REQUEST": "GetCapabilities",
|
||||
"STYLES": ""
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
|
||||
item_found = False
|
||||
for item in str(r).split("\\n"):
|
||||
if "OnlineResource" in item:
|
||||
self.assertEqual("xlink:href=\"my_wms_advertised_url?" in item, True)
|
||||
item_found = True
|
||||
self.assertTrue(item_found)
|
||||
|
||||
def test_wms_getmap_invalid_size(self):
|
||||
project = os.path.join(self.testdata_path, "test_project_with_size.qgs")
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(project),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.3.0",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Hello",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "5001",
|
||||
"WIDTH": "5000"
|
||||
}.items())])
|
||||
|
||||
expected = self.strip_version_xmlns(b'<ServiceExceptionReport version="1.3.0" xmlns="http://www.opengis.net/ogc">\n <ServiceException code="Size error">The requested map size is too large</ServiceException>\n</ServiceExceptionReport>\n')
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
|
||||
self.assertEqual(self.strip_version_xmlns(r), expected)
|
||||
|
||||
def test_wms_getmap_order(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Hello,Country",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_LayerOrder")
|
||||
|
||||
def test_wms_getmap_srs(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country,Hello",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-151.7,-38.9,51.0,78.0",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:4326"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_SRS")
|
||||
|
||||
def test_wms_getmap_style(self):
|
||||
# default style
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country_Labels",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_StyleDefault")
|
||||
|
||||
# custom style
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country_Labels",
|
||||
"STYLES": "custom",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_StyleCustom")
|
||||
|
||||
def test_wms_getmap_filter(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country,Hello",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857",
|
||||
"FILTER": "Country:\"name\" = 'eurasia'"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_Filter")
|
||||
|
||||
def test_wms_getmap_selection(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country,Hello",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"SRS": "EPSG:3857",
|
||||
"SELECTION": "Country: 4"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_Selection")
|
||||
|
||||
def test_wms_getmap_opacities(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetMap",
|
||||
"LAYERS": "Country,Hello",
|
||||
"STYLES": "",
|
||||
"FORMAT": "image/png",
|
||||
"BBOX": "-16817707,-4710778,5696513,14587125",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857",
|
||||
"OPACITIES": "125, 50"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetMap_Opacities")
|
||||
|
||||
def test_wms_getprint_basic(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetPrint",
|
||||
"TEMPLATE": "layoutA4",
|
||||
"FORMAT": "png",
|
||||
"map0:EXTENT": "-33626185.498,-13032965.185,33978427.737,16020257.031",
|
||||
"map0:LAYERS": "Country,Hello",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetPrint_Basic")
|
||||
|
||||
@unittest.skip('Randomly failing to draw the map layer')
|
||||
def test_wms_getprint_srs(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetPrint",
|
||||
"TEMPLATE": "layoutA4",
|
||||
"FORMAT": "png",
|
||||
"map0:EXTENT": "-309.015,-133.011,312.179,133.949",
|
||||
"map0:LAYERS": "Country,Hello",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:4326"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetPrint_SRS")
|
||||
|
||||
def test_wms_getprint_scale(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetPrint",
|
||||
"TEMPLATE": "layoutA4",
|
||||
"FORMAT": "png",
|
||||
"map0:EXTENT": "-33626185.498,-13032965.185,33978427.737,16020257.031",
|
||||
"map0:LAYERS": "Country,Hello",
|
||||
"map0:SCALE": "36293562",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetPrint_Scale")
|
||||
|
||||
def test_wms_getprint_grid(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetPrint",
|
||||
"TEMPLATE": "layoutA4",
|
||||
"FORMAT": "png",
|
||||
"map0:EXTENT": "-33626185.498,-13032965.185,33978427.737,16020257.031",
|
||||
"map0:LAYERS": "Country,Hello",
|
||||
"map0:GRID_INTERVAL_X": "1000000",
|
||||
"map0:GRID_INTERVAL_Y": "2000000",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetPrint_Grid")
|
||||
|
||||
def test_wms_getprint_rotation(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetPrint",
|
||||
"TEMPLATE": "layoutA4",
|
||||
"FORMAT": "png",
|
||||
"map0:EXTENT": "-33626185.498,-13032965.185,33978427.737,16020257.031",
|
||||
"map0:LAYERS": "Country,Hello",
|
||||
"map0:ROTATION": "45",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetPrint_Rotation")
|
||||
|
||||
def test_wms_getprint_selection(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetPrint",
|
||||
"TEMPLATE": "layoutA4",
|
||||
"FORMAT": "png",
|
||||
"map0:EXTENT": "-33626185.498,-13032965.185,33978427.737,16020257.031",
|
||||
"map0:LAYERS": "Country,Hello",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857",
|
||||
"SELECTION": "Country: 4"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetPrint_Selection")
|
||||
|
||||
def test_getLegendGraphics(self):
|
||||
"""Test that does not return an exception but an image"""
|
||||
parms = {
|
||||
'MAP': self.testdata_path + "test_project.qgs",
|
||||
'SERVICE': 'WMS',
|
||||
'VERSION': '1.3.0',
|
||||
'REQUEST': 'GetLegendGraphic',
|
||||
'FORMAT': 'image/png',
|
||||
# 'WIDTH': '20', # optional
|
||||
# 'HEIGHT': '20', # optional
|
||||
'LAYER': 'testlayer%20èé',
|
||||
}
|
||||
qs = '?' + '&'.join(["%s=%s" % (k, v) for k, v in parms.items()])
|
||||
h, r = self.server.handleRequest(qs)
|
||||
self.assertEqual(-1, h.find(b'Content-Type: text/xml; charset=utf-8'), "Header: %s\nResponse:\n%s" % (h, r))
|
||||
self.assertNotEqual(-1, h.find(b'Content-Type: image/png'), "Header: %s\nResponse:\n%s" % (h, r))
|
||||
|
||||
def test_getLegendGraphics_layertitle(self):
|
||||
"""Test that does not return an exception but an image"""
|
||||
parms = {
|
||||
'MAP': self.testdata_path + "test_project.qgs",
|
||||
'SERVICE': 'WMS',
|
||||
'VERSION': '1.3.0',
|
||||
'REQUEST': 'GetLegendGraphic',
|
||||
'FORMAT': 'image/png',
|
||||
# 'WIDTH': '20', # optional
|
||||
# 'HEIGHT': '20', # optional
|
||||
'LAYER': u'testlayer%20èé',
|
||||
'LAYERTITLE': 'TRUE',
|
||||
}
|
||||
qs = '?' + '&'.join([u"%s=%s" % (k, v) for k, v in parms.items()])
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_test", 250, QSize(15, 15))
|
||||
|
||||
parms = {
|
||||
'MAP': self.testdata_path + "test_project.qgs",
|
||||
'SERVICE': 'WMS',
|
||||
'VERSION': '1.3.0',
|
||||
'REQUEST': 'GetLegendGraphic',
|
||||
'FORMAT': 'image/png',
|
||||
# 'WIDTH': '20', # optional
|
||||
# 'HEIGHT': '20', # optional
|
||||
'LAYER': u'testlayer%20èé',
|
||||
'LAYERTITLE': 'FALSE',
|
||||
}
|
||||
qs = '?' + '&'.join([u"%s=%s" % (k, v) for k, v in parms.items()])
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_test_layertitle_false", 250, QSize(15, 15))
|
||||
|
||||
def test_wms_GetLegendGraphic_Basic(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_Basic")
|
||||
|
||||
def test_wms_GetLegendGraphic_Transparent(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857",
|
||||
"TRANSPARENT": "TRUE"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_Transparent")
|
||||
|
||||
def test_wms_GetLegendGraphic_Background(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857",
|
||||
"BGCOLOR": "green"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_Background")
|
||||
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857",
|
||||
"BGCOLOR": "0x008000"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_Background_Hex")
|
||||
|
||||
def test_wms_GetLegendGraphic_BoxSpace(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"BOXSPACE": "100",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_BoxSpace")
|
||||
|
||||
def test_wms_GetLegendGraphic_SymbolSpace(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"SYMBOLSPACE": "100",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_SymbolSpace")
|
||||
|
||||
def test_wms_GetLegendGraphic_IconLabelSpace(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"ICONLABELSPACE": "100",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_IconLabelSpace")
|
||||
|
||||
def test_wms_GetLegendGraphic_SymbolSize(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"SYMBOLWIDTH": "50",
|
||||
"SYMBOLHEIGHT": "30",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"CRS": "EPSG:3857"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_SymbolSize")
|
||||
|
||||
def test_wms_GetLegendGraphic_BBox(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello,db_point",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"BBOX": "-151.7,-38.9,51.0,78.0",
|
||||
"CRS": "EPSG:4326"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_BBox")
|
||||
|
||||
def test_wms_GetLegendGraphic_BBox2(self):
|
||||
qs = "?" + "&".join(["%s=%s" % i for i in list({
|
||||
"MAP": urllib.parse.quote(self.projectPath),
|
||||
"SERVICE": "WMS",
|
||||
"VERSION": "1.1.1",
|
||||
"REQUEST": "GetLegendGraphic",
|
||||
"LAYER": "Country,Hello,db_point",
|
||||
"LAYERTITLE": "FALSE",
|
||||
"FORMAT": "image/png",
|
||||
"HEIGHT": "500",
|
||||
"WIDTH": "500",
|
||||
"BBOX": "-76.08,-6.4,-19.38,38.04",
|
||||
"SRS": "EPSG:4326"
|
||||
}.items())])
|
||||
|
||||
r, h = self._result(self.server.handleRequest(qs))
|
||||
self._img_diff_error(r, h, "WMS_GetLegendGraphic_BBox2")
|
||||
|
||||
# WCS tests
|
||||
def wcs_request_compare(self, request):
|
||||
project = self.projectPath
|
||||
assert os.path.exists(project), "Project file not found: " + project
|
||||
|
||||
query_string = '?MAP=%s&SERVICE=WCS&VERSION=1.0.0&REQUEST=%s' % (urllib.parse.quote(project), request)
|
||||
header, body = self.server.handleRequest(query_string)
|
||||
self.assert_headers(header, body)
|
||||
response = header + body
|
||||
reference_path = self.testdata_path + 'wcs_' + request.lower() + '.txt'
|
||||
self.store_reference(reference_path, response)
|
||||
f = open(reference_path, 'rb')
|
||||
expected = f.read()
|
||||
f.close()
|
||||
response = re.sub(RE_STRIP_UNCHECKABLE, b'', response)
|
||||
expected = re.sub(RE_STRIP_UNCHECKABLE, b'', expected)
|
||||
|
||||
self.assertXMLEqual(response, expected, msg="request %s failed.\n Query: %s\n Expected:\n%s\n\n Response:\n%s" % (query_string, request, expected.decode('utf-8'), response.decode('utf-8')))
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
28
tests/testdata/qgis_server/getcapabilities.txt
vendored
28
tests/testdata/qgis_server/getcapabilities.txt
vendored
@ -1,8 +1,8 @@
|
||||
Content-Length: 5590
|
||||
Content-Length: 5775
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<WMS_Capabilities xmlns:sld="http://www.opengis.net/sld" version="1.3" xmlns="http://www.opengis.net/wms" xmlns:qgs="http://www.qgis.org/wms" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd http://www.qgis.org/wms http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgsSERVICE=WMS&REQUEST=GetSchemaExtension">
|
||||
<WMS_Capabilities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:qgs="http://www.qgis.org/wms" xmlns="http://www.opengis.net/wms" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd http://www.qgis.org/wms https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&SERVICE=WMS&REQUEST=GetSchemaExtension" version="1.3" xmlns:sld="http://www.opengis.net/sld">
|
||||
<Service>
|
||||
<Name>WMS</Name>
|
||||
<Title>QGIS TestProject</Title>
|
||||
@ -10,7 +10,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<KeywordList>
|
||||
<Keyword vocabulary="ISO">infoMapAccessService</Keyword>
|
||||
</KeywordList>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href=""/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
<ContactInformation>
|
||||
<ContactPersonPrimary>
|
||||
<ContactPerson>Alessandro Pasotti</ContactPerson>
|
||||
@ -30,7 +30,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -45,7 +45,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -59,7 +59,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -70,7 +70,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -80,7 +80,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -90,7 +90,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -111,8 +111,8 @@ Content-Type: text/xml; charset=utf-8
|
||||
<southBoundLatitude>44.9012</southBoundLatitude>
|
||||
<northBoundLatitude>44.9016</northBoundLatitude>
|
||||
</EX_GeographicBoundingBox>
|
||||
<BoundingBox CRS="EPSG:3857" minx="913171" maxx="913283" miny="5.60599e+06" maxy="5.60604e+06"/>
|
||||
<BoundingBox CRS="EPSG:4326" minx="44.9012" maxx="44.9016" miny="8.20315" maxy="8.20416"/>
|
||||
<BoundingBox maxy="5.60604e+06" maxx="913283" miny="5.60599e+06" CRS="EPSG:3857" minx="913171"/>
|
||||
<BoundingBox maxy="8.20416" maxx="44.9016" miny="8.20315" CRS="EPSG:4326" minx="44.9012"/>
|
||||
<Layer queryable="1">
|
||||
<Name>testlayer èé</Name>
|
||||
<Title>A test vector layer</Title>
|
||||
@ -126,14 +126,14 @@ Content-Type: text/xml; charset=utf-8
|
||||
<southBoundLatitude>44.9014</southBoundLatitude>
|
||||
<northBoundLatitude>44.9015</northBoundLatitude>
|
||||
</EX_GeographicBoundingBox>
|
||||
<BoundingBox CRS="EPSG:3857" minx="913205" maxx="913215" miny="5.60601e+06" maxy="5.60603e+06"/>
|
||||
<BoundingBox CRS="EPSG:4326" minx="44.9014" maxx="44.9015" miny="8.20346" maxy="8.20355"/>
|
||||
<BoundingBox maxy="5.60603e+06" maxx="913215" miny="5.60601e+06" CRS="EPSG:3857" minx="913205"/>
|
||||
<BoundingBox maxy="8.20355" maxx="44.9015" miny="8.20346" CRS="EPSG:4326" minx="44.9014"/>
|
||||
<Style>
|
||||
<Name>default</Name>
|
||||
<Title>default</Title>
|
||||
<LegendURL>
|
||||
<Format>image/png</Format>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs&SERVICE=WMS&VERSION=1.3&REQUEST=GetLegendGraphic&LAYER=testlayer èé&FORMAT=image/png&STYLE=default"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&SERVICE=WMS&VERSION=1.3&REQUEST=GetLegendGraphic&LAYER=testlayer èé&FORMAT=image/png&STYLE=default" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</LegendURL>
|
||||
</Style>
|
||||
</Layer>
|
||||
|
@ -1,8 +1,8 @@
|
||||
Content-Length: 7368
|
||||
Content-Length: 7202
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<WMS_Capabilities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:inspire_vs="http://inspire.ec.europa.eu/schemas/inspire_vs/1.0" xmlns:inspire_common="http://inspire.ec.europa.eu/schemas/common/1.0" version="1.3.0" xmlns="http://www.opengis.net/wms" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd http://www.qgis.org/wms http://inspire.ec.europa.eu/schemas/inspire_vs/1.0 http://inspire.ec.europa.eu/schemas/inspire_vs/1.0/inspire_vs.xsd http:?MAP=/home/dhont/3liz_dev/QGIS/qgis_rldhont/tests/testdata/qgis_server/test-project_inspire.qgs&SERVICE=WMS&REQUEST=GetSchemaExtension" xmlns:sld="http://www.opengis.net/sld" xmlns:qgs="http://www.qgis.org/wms">
|
||||
<WMS_Capabilities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:qgs="http://www.qgis.org/wms" xmlns="http://www.opengis.net/wms" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd http://www.qgis.org/wms http://inspire.ec.europa.eu/schemas/inspire_vs/1.0 http://inspire.ec.europa.eu/schemas/inspire_vs/1.0/inspire_vs.xsd ?MAP=tests/testdata/qgis_server/test_project_inspire.qgs&SERVICE=WMS&REQUEST=GetSchemaExtension" xmlns:inspire_common="http://inspire.ec.europa.eu/schemas/common/1.0" version="1.3.0" xmlns:sld="http://www.opengis.net/sld" xmlns:inspire_vs="http://inspire.ec.europa.eu/schemas/inspire_vs/1.0">
|
||||
<Service>
|
||||
<Name>WMS</Name>
|
||||
<Title>QGIS TestProject</Title>
|
||||
@ -10,7 +10,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<KeywordList>
|
||||
<Keyword vocabulary="ISO">infoMapAccessService</Keyword>
|
||||
</KeywordList>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href=""/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
<ContactInformation>
|
||||
<ContactPersonPrimary>
|
||||
<ContactPerson>Alessandro Pasotti</ContactPerson>
|
||||
@ -30,7 +30,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/dhont/3liz_dev/QGIS/qgis_rldhont/tests/testdata/qgis_server/test-project_inspire.qgs&"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server/test_project_inspire.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -45,7 +45,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/dhont/3liz_dev/QGIS/qgis_rldhont/tests/testdata/qgis_server/test-project_inspire.qgs&"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server/test_project_inspire.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -59,7 +59,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/dhont/3liz_dev/QGIS/qgis_rldhont/tests/testdata/qgis_server/test-project_inspire.qgs&"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server/test_project_inspire.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -70,7 +70,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/dhont/3liz_dev/QGIS/qgis_rldhont/tests/testdata/qgis_server/test-project_inspire.qgs&"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server/test_project_inspire.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -80,7 +80,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/dhont/3liz_dev/QGIS/qgis_rldhont/tests/testdata/qgis_server/test-project_inspire.qgs&"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server/test_project_inspire.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -90,7 +90,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/dhont/3liz_dev/QGIS/qgis_rldhont/tests/testdata/qgis_server/test-project_inspire.qgs&"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server/test_project_inspire.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -99,7 +99,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<Exception>
|
||||
<Format>XML</Format>
|
||||
</Exception>
|
||||
<sld:UserDefinedSymbolization RemoteWFS="0" RemoteWCS="0" InlineFeature="0" UserStyle="1" SupportSLD="1" UserLayer="0"/>
|
||||
<sld:UserDefinedSymbolization SupportSLD="1" RemoteWCS="0" UserLayer="0" InlineFeature="0" RemoteWFS="0" UserStyle="1"/>
|
||||
<inspire_vs:ExtendedCapabilities>
|
||||
<inspire_common:ResourceType>service</inspire_common:ResourceType>
|
||||
<inspire_common:SpatialDataServiceType>view</inspire_common:SpatialDataServiceType>
|
||||
@ -132,8 +132,8 @@ Content-Type: text/xml; charset=utf-8
|
||||
<southBoundLatitude>44.9012</southBoundLatitude>
|
||||
<northBoundLatitude>44.9016</northBoundLatitude>
|
||||
</EX_GeographicBoundingBox>
|
||||
<BoundingBox CRS="EPSG:3857" maxx="913283" minx="913171" maxy="5.60604e+06" miny="5.60599e+06"/>
|
||||
<BoundingBox CRS="EPSG:4326" maxx="44.9016" minx="44.9012" maxy="8.20416" miny="8.20315"/>
|
||||
<BoundingBox maxy="5.60604e+06" maxx="913283" miny="5.60599e+06" CRS="EPSG:3857" minx="913171"/>
|
||||
<BoundingBox maxy="8.20416" maxx="44.9016" miny="8.20315" CRS="EPSG:4326" minx="44.9012"/>
|
||||
<Layer queryable="1">
|
||||
<Name>testlayer èé</Name>
|
||||
<Title>A test vector layer</Title>
|
||||
@ -147,14 +147,14 @@ Content-Type: text/xml; charset=utf-8
|
||||
<southBoundLatitude>44.9014</southBoundLatitude>
|
||||
<northBoundLatitude>44.9015</northBoundLatitude>
|
||||
</EX_GeographicBoundingBox>
|
||||
<BoundingBox CRS="EPSG:3857" maxx="913215" minx="913205" maxy="5.60603e+06" miny="5.60601e+06"/>
|
||||
<BoundingBox CRS="EPSG:4326" maxx="44.9015" minx="44.9014" maxy="8.20355" miny="8.20346"/>
|
||||
<BoundingBox maxy="5.60603e+06" maxx="913215" miny="5.60601e+06" CRS="EPSG:3857" minx="913205"/>
|
||||
<BoundingBox maxy="8.20355" maxx="44.9015" miny="8.20346" CRS="EPSG:4326" minx="44.9014"/>
|
||||
<Style>
|
||||
<Name>default</Name>
|
||||
<Title>default</Title>
|
||||
<LegendURL>
|
||||
<Format>image/png</Format>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/dhont/3liz_dev/QGIS/qgis_rldhont/tests/testdata/qgis_server/test-project_inspire.qgs&&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetLegendGraphic&LAYER=testlayer èé&FORMAT=image/png&STYLE=default&SLD_VERSION=1.1.0"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server/test_project_inspire.qgs&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetLegendGraphic&LAYER=testlayer èé&FORMAT=image/png&STYLE=default&SLD_VERSION=1.1.0" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</LegendURL>
|
||||
</Style>
|
||||
</Layer>
|
||||
|
@ -1,8 +1,8 @@
|
||||
Content-Length: 6685
|
||||
Content-Length: 6939
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<WMS_Capabilities xmlns:sld="http://www.opengis.net/sld" version="1.3.0" xmlns="http://www.opengis.net/wms" xmlns:qgs="http://www.qgis.org/wms" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd http://www.qgis.org/wms http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgsSERVICE=WMS&REQUEST=GetSchemaExtension">
|
||||
<WMS_Capabilities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:qgs="http://www.qgis.org/wms" xmlns="http://www.opengis.net/wms" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd http://www.qgis.org/wms https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&SERVICE=WMS&REQUEST=GetSchemaExtension" version="1.3.0" xmlns:sld="http://www.opengis.net/sld">
|
||||
<Service>
|
||||
<Name>WMS</Name>
|
||||
<Title>QGIS TestProject</Title>
|
||||
@ -10,7 +10,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<KeywordList>
|
||||
<Keyword vocabulary="ISO">infoMapAccessService</Keyword>
|
||||
</KeywordList>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href=""/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
<ContactInformation>
|
||||
<ContactPersonPrimary>
|
||||
<ContactPerson>Alessandro Pasotti</ContactPerson>
|
||||
@ -30,7 +30,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -45,7 +45,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -59,7 +59,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -70,7 +70,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -80,7 +80,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -90,7 +90,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -102,7 +102,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -111,7 +111,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<Exception>
|
||||
<Format>XML</Format>
|
||||
</Exception>
|
||||
<sld:UserDefinedSymbolization UserStyle="1" RemoteWFS="0" SupportSLD="1" UserLayer="0" RemoteWCS="0" InlineFeature="0"/>
|
||||
<sld:UserDefinedSymbolization SupportSLD="1" RemoteWCS="0" UserLayer="0" InlineFeature="0" RemoteWFS="0" UserStyle="1"/>
|
||||
<WFSLayers>
|
||||
<WFSLayer name="testlayer èé"/>
|
||||
</WFSLayers>
|
||||
@ -127,8 +127,8 @@ Content-Type: text/xml; charset=utf-8
|
||||
<southBoundLatitude>44.9012</southBoundLatitude>
|
||||
<northBoundLatitude>44.9016</northBoundLatitude>
|
||||
</EX_GeographicBoundingBox>
|
||||
<BoundingBox CRS="EPSG:3857" minx="913171" maxx="913283" miny="5.60599e+06" maxy="5.60604e+06"/>
|
||||
<BoundingBox CRS="EPSG:4326" minx="44.9012" maxx="44.9016" miny="8.20315" maxy="8.20416"/>
|
||||
<BoundingBox maxy="5.60604e+06" maxx="913283" miny="5.60599e+06" CRS="EPSG:3857" minx="913171"/>
|
||||
<BoundingBox maxy="8.20416" maxx="44.9016" miny="8.20315" CRS="EPSG:4326" minx="44.9012"/>
|
||||
<TreeName>QGIS Test Project</TreeName>
|
||||
<Layer geometryType="Point" queryable="1" displayField="name" visible="1">
|
||||
<Name>testlayer èé</Name>
|
||||
@ -143,21 +143,21 @@ Content-Type: text/xml; charset=utf-8
|
||||
<southBoundLatitude>44.9014</southBoundLatitude>
|
||||
<northBoundLatitude>44.9015</northBoundLatitude>
|
||||
</EX_GeographicBoundingBox>
|
||||
<BoundingBox CRS="EPSG:3857" minx="913205" maxx="913215" miny="5.60601e+06" maxy="5.60603e+06"/>
|
||||
<BoundingBox CRS="EPSG:4326" minx="44.9014" maxx="44.9015" miny="8.20346" maxy="8.20355"/>
|
||||
<BoundingBox maxy="5.60603e+06" maxx="913215" miny="5.60601e+06" CRS="EPSG:3857" minx="913205"/>
|
||||
<BoundingBox maxy="8.20355" maxx="44.9015" miny="8.20346" CRS="EPSG:4326" minx="44.9014"/>
|
||||
<Style>
|
||||
<Name>default</Name>
|
||||
<Title>default</Title>
|
||||
<LegendURL>
|
||||
<Format>image/png</Format>
|
||||
<OnlineResource xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http:?MAP=/home/ale/dev/QGIS/tests/testdata/qgis_server/test-project.qgs&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetLegendGraphic&LAYER=testlayer èé&FORMAT=image/png&STYLE=default&SLD_VERSION=1.1.0"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&SERVICE=WMS&VERSION=1.3.0&REQUEST=GetLegendGraphic&LAYER=testlayer èé&FORMAT=image/png&STYLE=default&SLD_VERSION=1.1.0" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
</LegendURL>
|
||||
</Style>
|
||||
<TreeName>testlayer èé</TreeName>
|
||||
<Attributes>
|
||||
<Attribute typeName="Integer" comment="" type="int" editType="TextEdit" length="10" name="id" precision="0"/>
|
||||
<Attribute typeName="String" comment="" type="QString" editType="TextEdit" length="10" name="name" precision="0"/>
|
||||
<Attribute typeName="String" comment="" type="QString" editType="TextEdit" length="13" name="utf8nameè" precision="0"/>
|
||||
<Attribute precision="0" type="qlonglong" editType="" typeName="Integer64" name="id" comment="" length="10"/>
|
||||
<Attribute precision="0" type="QString" editType="" typeName="String" name="name" comment="" length="10"/>
|
||||
<Attribute precision="0" type="QString" editType="" typeName="String" name="utf8nameè" comment="" length="13"/>
|
||||
</Attributes>
|
||||
</Layer>
|
||||
</Layer>
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
Content-Length: 1676
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<CoverageDescription xmlns="http://www.opengis.net/wcs" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0.0" updateSequence="0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wcs http://schemas.opengis.net/wcs/1.0.0/describeCoverage.xsd" xmlns:gml="http://www.opengis.net/gml">
|
||||
<CoverageDescription xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gml="http://www.opengis.net/gml" xmlns="http://www.opengis.net/wcs" xsi:schemaLocation="http://www.opengis.net/wcs http://schemas.opengis.net/wcs/1.0.0/describeCoverage.xsd" version="1.0.0" xmlns:xlink="http://www.w3.org/1999/xlink" updateSequence="0">
|
||||
<CoverageOffering>
|
||||
<name>dem</name>
|
||||
<label>dem</label>
|
||||
@ -51,4 +51,4 @@ Content-Type: text/xml; charset=utf-8
|
||||
<formats>GeoTIFF</formats>
|
||||
</supportedFormats>
|
||||
</CoverageOffering>
|
||||
</CoverageDescription>
|
||||
</CoverageDescription>
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
Content-Length: 2506
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<WCS_Capabilities version="1.0.0" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="http://www.opengis.net/wcs http://schemas.opengis.net/wcs/1.0.0/wcsCapabilities.xsd" xmlns="http://www.opengis.net/wcs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" updateSequence="0" xmlns:gml="http://www.opengis.net/gml">
|
||||
<WCS_Capabilities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gml="http://www.opengis.net/gml" xmlns="http://www.opengis.net/wcs" xsi:schemaLocation="http://www.opengis.net/wcs http://schemas.opengis.net/wcs/1.0.0/wcsCapabilities.xsd" version="1.0.0" xmlns:xlink="http://www.w3.org/1999/xlink" updateSequence="0">
|
||||
<Service>
|
||||
<name>WCS</name>
|
||||
<label>QGIS Server test</label>
|
||||
@ -22,14 +22,14 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server_accesscontrol/project.qgs"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Post>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server_accesscontrol/project.qgs"/>
|
||||
</Post>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -38,14 +38,14 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server_accesscontrol/project.qgs"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Post>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server_accesscontrol/project.qgs"/>
|
||||
</Post>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -54,14 +54,14 @@ Content-Type: text/xml; charset=utf-8
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server_accesscontrol/project.qgs"/>
|
||||
</Get>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Post>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?"/>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server_accesscontrol/project.qgs"/>
|
||||
</Post>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
@ -78,4 +78,4 @@ Content-Type: text/xml; charset=utf-8
|
||||
</lonLatEnvelope>
|
||||
</CoverageOfferingBrief>
|
||||
</ContentMetadata>
|
||||
</WCS_Capabilities>
|
||||
</WCS_Capabilities>
|
||||
|
@ -1,14 +1,14 @@
|
||||
Content-Length: 913
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<schema xmlns:ogc="http://www.opengis.net/ogc" elementFormDefault="qualified" targetNamespace="http://www.qgis.org/gml" version="1.0" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml" xmlns:qgs="http://www.qgis.org/gml">
|
||||
<schema xmlns:gml="http://www.opengis.net/gml" targetNamespace="http://www.qgis.org/gml" xmlns:qgs="http://www.qgis.org/gml" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ogc="http://www.opengis.net/ogc" version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
||||
<import namespace="http://www.opengis.net/gml" schemaLocation="http://schemas.opengis.net/gml/2.1.2/feature.xsd"/>
|
||||
<element type="qgs:testlayerType" name="testlayer" substitutionGroup="gml:_Feature"/>
|
||||
<complexType name="testlayerType">
|
||||
<complexContent>
|
||||
<extension base="gml:AbstractFeatureType">
|
||||
<sequence>
|
||||
<element minOccurs="0" maxOccurs="1" type="gml:GeometryPropertyType" name="geometry"/>
|
||||
<element maxOccurs="1" type="gml:GeometryPropertyType" minOccurs="0" name="geometry"/>
|
||||
<element type="long" name="id"/>
|
||||
<element type="string" name="name"/>
|
||||
<element type="string" name="utf8nameè"/>
|
||||
|
@ -1,11 +1,11 @@
|
||||
Content-Length: 2781
|
||||
Content-Length: 3001
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<WFS_Capabilities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ogc="http://www.opengis.net/ogc" version="1.0.0" xmlns="http://www.opengis.net/wfs" updateSequence="0" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/WFS-capabilities.xsd" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows">
|
||||
<WFS_Capabilities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns="http://www.opengis.net/wfs" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/WFS-capabilities.xsd" xmlns:ogc="http://www.opengis.net/ogc" version="1.0.0" xmlns:xlink="http://www.w3.org/1999/xlink" updateSequence="0">
|
||||
<Service>
|
||||
<Name>WFS</Name>
|
||||
<Title>QGIS TestProject</Title>
|
||||
<Abstract>Some UTF8 text èòù</Abstract>
|
||||
<Abstract><![CDATA[Some UTF8 text èòù]]></Abstract>
|
||||
<OnlineResource/>
|
||||
</Service>
|
||||
<Capability>
|
||||
@ -13,12 +13,12 @@ Content-Type: text/xml; charset=utf-8
|
||||
<GetCapabilities>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get onlineResource="?"/>
|
||||
<Get onlineResource="?MAP=tests/testdata/qgis_server/test_project_wfs.qgs"/>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Post onlineResource="?"/>
|
||||
<Post onlineResource="?MAP=tests/testdata/qgis_server/test_project_wfs.qgs"/>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
</GetCapabilities>
|
||||
@ -28,12 +28,12 @@ Content-Type: text/xml; charset=utf-8
|
||||
</SchemaDescriptionLanguage>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get onlineResource="?"/>
|
||||
<Get onlineResource="?MAP=tests/testdata/qgis_server/test_project_wfs.qgs"/>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Post onlineResource="?"/>
|
||||
<Post onlineResource="?MAP=tests/testdata/qgis_server/test_project_wfs.qgs"/>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
</DescribeFeatureType>
|
||||
@ -45,19 +45,19 @@ Content-Type: text/xml; charset=utf-8
|
||||
</ResultFormat>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Get onlineResource="?"/>
|
||||
<Get onlineResource="?MAP=tests/testdata/qgis_server/test_project_wfs.qgs"/>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Post onlineResource="?"/>
|
||||
<Post onlineResource="?MAP=tests/testdata/qgis_server/test_project_wfs.qgs"/>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
</GetFeature>
|
||||
<Transaction>
|
||||
<DCPType>
|
||||
<HTTP>
|
||||
<Post onlineResource="?"/>
|
||||
<Post onlineResource="?MAP=tests/testdata/qgis_server/test_project_wfs.qgs"/>
|
||||
</HTTP>
|
||||
</DCPType>
|
||||
</Transaction>
|
||||
@ -72,7 +72,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<Title>A test vector layer</Title>
|
||||
<Abstract>A test vector layer with unicode òà</Abstract>
|
||||
<SRS>EPSG:4326</SRS>
|
||||
<LatLongBoundingBox maxx="8.20355" minx="8.20346" maxy="44.9015" miny="44.9014"/>
|
||||
<LatLongBoundingBox maxy="44.9015" maxx="8.20355" miny="44.9014" minx="8.20346"/>
|
||||
<Operations>
|
||||
<Query/>
|
||||
<Insert/>
|
||||
|
@ -1,8 +1,8 @@
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml http:?SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml ?MAP=tests/testdata/qgis_server/test_project_wfs.qgs&SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.2034593,44.90139483 8.203547,44.90148254</gml:coordinates>
|
||||
<gml:coordinates cs="," ts=" ">8.20345931,44.90139484 8.20354699,44.90148253</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<gml:featureMember>
|
||||
@ -14,7 +14,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml" cs="," ts=" ">8.20349634,44.90148253</coordinates>
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20349634,44.90148253</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>1</qgs:id>
|
||||
@ -31,7 +31,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml" cs="," ts=" ">8.20354699,44.90143568</coordinates>
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20354699,44.90143568</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>2</qgs:id>
|
||||
|
42
tests/testdata/qgis_server/wfs_getfeature_limit2_post.txt
vendored
Normal file
42
tests/testdata/qgis_server/wfs_getfeature_limit2_post.txt
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml ?MAP=tests/testdata/qgis_server/test_project_wfs.qgs&SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8,44 9,45</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<gml:featureMember>
|
||||
<qgs:testlayer fid="testlayer.0">
|
||||
<gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.20349634,44.90148253 8.20349634,44.90148253</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20349634,44.90148253</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>1</qgs:id>
|
||||
<qgs:name>one</qgs:name>
|
||||
<qgs:utf8nameè>one èé</qgs:utf8nameè>
|
||||
</qgs:testlayer>
|
||||
</gml:featureMember>
|
||||
<gml:featureMember>
|
||||
<qgs:testlayer fid="testlayer.1">
|
||||
<gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.20354699,44.90143568 8.20354699,44.90143568</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20354699,44.90143568</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>2</qgs:id>
|
||||
<qgs:name>two</qgs:name>
|
||||
<qgs:utf8nameè>two àò</qgs:utf8nameè>
|
||||
</qgs:testlayer>
|
||||
</gml:featureMember>
|
||||
</wfs:FeatureCollection>
|
@ -1,8 +1,8 @@
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml http:?SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml ?MAP=tests/testdata/qgis_server/test_project_wfs.qgs&SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.2034593,44.90139483 8.203547,44.90148254</gml:coordinates>
|
||||
<gml:coordinates cs="," ts=" ">8.20345931,44.90139484 8.20354699,44.90148253</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<gml:featureMember>
|
||||
@ -14,7 +14,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml" cs="," ts=" ">8.20349634,44.90148253</coordinates>
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20349634,44.90148253</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>1</qgs:id>
|
||||
@ -31,7 +31,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml" cs="," ts=" ">8.20354699,44.90143568</coordinates>
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20354699,44.90143568</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>2</qgs:id>
|
||||
@ -48,7 +48,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml" cs="," ts=" ">8.20345931,44.90139484</coordinates>
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20345931,44.90139484</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>3</qgs:id>
|
||||
|
59
tests/testdata/qgis_server/wfs_getfeature_nobbox_post.txt
vendored
Normal file
59
tests/testdata/qgis_server/wfs_getfeature_nobbox_post.txt
vendored
Normal file
@ -0,0 +1,59 @@
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml ?MAP=tests/testdata/qgis_server/test_project_wfs.qgs&SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8,44 9,45</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<gml:featureMember>
|
||||
<qgs:testlayer fid="testlayer.0">
|
||||
<gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.20349634,44.90148253 8.20349634,44.90148253</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20349634,44.90148253</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>1</qgs:id>
|
||||
<qgs:name>one</qgs:name>
|
||||
<qgs:utf8nameè>one èé</qgs:utf8nameè>
|
||||
</qgs:testlayer>
|
||||
</gml:featureMember>
|
||||
<gml:featureMember>
|
||||
<qgs:testlayer fid="testlayer.1">
|
||||
<gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.20354699,44.90143568 8.20354699,44.90143568</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20354699,44.90143568</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>2</qgs:id>
|
||||
<qgs:name>two</qgs:name>
|
||||
<qgs:utf8nameè>two àò</qgs:utf8nameè>
|
||||
</qgs:testlayer>
|
||||
</gml:featureMember>
|
||||
<gml:featureMember>
|
||||
<qgs:testlayer fid="testlayer.2">
|
||||
<gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.20345931,44.90139484 8.20345931,44.90139484</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20345931,44.90139484</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>3</qgs:id>
|
||||
<qgs:name>three</qgs:name>
|
||||
<qgs:utf8nameè>three èé↓</qgs:utf8nameè>
|
||||
</qgs:testlayer>
|
||||
</gml:featureMember>
|
||||
</wfs:FeatureCollection>
|
@ -1,8 +1,8 @@
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml http:?SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml ?MAP=tests/testdata/qgis_server/test_project_wfs.qgs&SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.2034593,44.90139483 8.203547,44.90148254</gml:coordinates>
|
||||
<gml:coordinates cs="," ts=" ">8.20345931,44.90139484 8.20354699,44.90148253</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<gml:featureMember>
|
||||
@ -14,7 +14,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml" cs="," ts=" ">8.20354699,44.90143568</coordinates>
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20354699,44.90143568</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>2</qgs:id>
|
||||
|
25
tests/testdata/qgis_server/wfs_getfeature_start1_limit1_post.txt
vendored
Normal file
25
tests/testdata/qgis_server/wfs_getfeature_start1_limit1_post.txt
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml ?MAP=tests/testdata/qgis_server/test_project_wfs.qgs&SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8,44 9,45</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<gml:featureMember>
|
||||
<qgs:testlayer fid="testlayer.1">
|
||||
<gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.20354699,44.90143568 8.20354699,44.90143568</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20354699,44.90143568</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>2</qgs:id>
|
||||
<qgs:name>two</qgs:name>
|
||||
<qgs:utf8nameè>two àò</qgs:utf8nameè>
|
||||
</qgs:testlayer>
|
||||
</gml:featureMember>
|
||||
</wfs:FeatureCollection>
|
@ -1,8 +1,8 @@
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml http:?SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml ?MAP=tests/testdata/qgis_server/test_project_wfs.qgs&SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.2034593,44.90139483 8.203547,44.90148254</gml:coordinates>
|
||||
<gml:coordinates cs="," ts=" ">8.20345931,44.90139484 8.20354699,44.90148253</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<gml:featureMember>
|
||||
@ -14,7 +14,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml" cs="," ts=" ">8.20345931,44.90139484</coordinates>
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20345931,44.90139484</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>3</qgs:id>
|
||||
|
25
tests/testdata/qgis_server/wfs_getfeature_startindex2_post.txt
vendored
Normal file
25
tests/testdata/qgis_server/wfs_getfeature_startindex2_post.txt
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:qgs="http://www.qgis.org/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/wfs.xsd http://www.qgis.org/gml ?MAP=tests/testdata/qgis_server/test_project_wfs.qgs&SERVICE=WFS&VERSION=1.0.0&REQUEST=DescribeFeatureType&TYPENAME=testlayer&OUTPUTFORMAT=XMLSCHEMA"><gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8,44 9,45</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<gml:featureMember>
|
||||
<qgs:testlayer fid="testlayer.2">
|
||||
<gml:boundedBy>
|
||||
<gml:Box srsName="EPSG:4326">
|
||||
<gml:coordinates cs="," ts=" ">8.20345931,44.90139484 8.20345931,44.90139484</gml:coordinates>
|
||||
</gml:Box>
|
||||
</gml:boundedBy>
|
||||
<qgs:geometry>
|
||||
<Point xmlns="http://www.opengis.net/gml" srsName="EPSG:4326">
|
||||
<coordinates xmlns="http://www.opengis.net/gml">8.20345931,44.90139484</coordinates>
|
||||
</Point>
|
||||
</qgs:geometry>
|
||||
<qgs:id>3</qgs:id>
|
||||
<qgs:name>three</qgs:name>
|
||||
<qgs:utf8nameè>three èé↓</qgs:utf8nameè>
|
||||
</qgs:testlayer>
|
||||
</gml:featureMember>
|
||||
</wfs:FeatureCollection>
|
@ -1,4 +1,4 @@
|
||||
Content-Length: 360
|
||||
Content-Length: 512
|
||||
Content-Type: text/html; charset=utf-8
|
||||
|
||||
<HEAD>
|
||||
|
@ -2,14 +2,14 @@ Content-Length: 577
|
||||
Content-Type: text/xml; charset=utf-8
|
||||
|
||||
<GetFeatureInfoResponse>
|
||||
<BoundingBox CRS="EPSG:3857" maxx="913214.67407005" minx="913214.67407005" maxy="5606017.87425818" miny="5606017.87425818"/>
|
||||
<BoundingBox maxy="5606017.87425818" maxx="913214.67407005" miny="5606017.87425818" CRS="EPSG:3857" minx="913214.67407005"/>
|
||||
<Layer name="testlayer èé">
|
||||
<Feature id="1">
|
||||
<Attribute value="2" name="id"/>
|
||||
<Attribute value="two" name="name"/>
|
||||
<Attribute value="two àò" name="utf8nameè"/>
|
||||
<BoundingBox CRS="EPSG:3857" maxx="913214.6741" minx="913214.6741" maxy="5606017.8743" miny="5606017.8743"/>
|
||||
<Attribute value="Point (913214.6741 5606017.8743)" type="derived" name="geometry"/>
|
||||
<BoundingBox maxy="5606017.8743" maxx="913214.6741" miny="5606017.8743" CRS="EPSG:3857" minx="913214.6741"/>
|
||||
<Attribute type="derived" value="Point (913214.6741 5606017.8743)" name="geometry"/>
|
||||
</Feature>
|
||||
</Layer>
|
||||
</GetFeatureInfoResponse>
|
||||
|
Loading…
x
Reference in New Issue
Block a user