Skip to content

Commit 2cf8f74

Browse files
committed
test server rendering debian buster bug #18988
1 parent 30692fa commit 2cf8f74

File tree

4 files changed

+1487
-969
lines changed

4 files changed

+1487
-969
lines changed

tests/src/python/test_qgsserver_wms_getmap.py

+18
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,24 @@ def test_wms_getmap_basic(self):
185185
r, h = self._result(self._execute_request(qs))
186186
self._img_diff_error(r, h, "WMS_GetMap_Basic4")
187187

188+
def test_wms_getmap_complex_labeling(self):
189+
qs = "?" + "&".join(["%s=%s" % i for i in list({
190+
"MAP": urllib.parse.quote(self.projectPath),
191+
"SERVICE": "WMS",
192+
"VERSION": "1.1.1",
193+
"REQUEST": "GetMap",
194+
"LAYERS": "pointlabel",
195+
"STYLES": "",
196+
"FORMAT": "image/png",
197+
"BBOX": "-16817707,-4710778,5696513,14587125",
198+
"HEIGHT": "500",
199+
"WIDTH": "500",
200+
"CRS": "EPSG:3857"
201+
}.items())])
202+
203+
r, h = self._result(self._execute_request(qs))
204+
self._img_diff_error(r, h, "WMS_GetMap_Labeling_Complex")
205+
188206
def test_wms_getmap_context_rendering(self):
189207
project = os.path.join(self.testdata_path, "test_project_render_context.qgs")
190208
qs = "?" + "&".join(["%s=%s" % i for i in list({
Binary file not shown.

0 commit comments

Comments
 (0)