1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
import pytest
import owslib
from owslib.etree import etree
from owslib.wfs import WebFeatureService
from tests.utils import service_ok
WFS_SERVICE_URL = 'https://www.dov.vlaanderen.be/geoserver/wfs?request=GetCapabilities'
@pytest.fixture
def mp_wfs_110(monkeypatch):
"""Monkeypatch the call to the remote GetCapabilities request of WFS
version 1.1.0.
Parameters
----------
monkeypatch : pytest.fixture
PyTest monkeypatch fixture.
"""
def read(*args, **kwargs):
with open('tests/resources/wfs_dov_getcapabilities_110.xml', 'r') as f:
data = f.read()
if type(data) is not bytes:
data = data.encode('utf-8')
data = etree.fromstring(data)
return data
monkeypatch.setattr(
owslib.feature.common.WFSCapabilitiesReader, 'read', read)
@pytest.fixture()
def mp_remote_describefeaturetype(monkeypatch):
"""Monkeypatch the call to the remote DescribeFeatureType request.
Returns a standard DescribeFeatureType response.
Parameters
----------
monkeypatch : pytest.fixture
PyTest monkeypatch fixture.
"""
def __remote_describefeaturetype(*args, **kwargs):
with open('tests/resources/wfs_schema_dov_boringen.xml', 'r') as f:
data = f.read()
if type(data) is not bytes:
data = data.encode('utf-8')
data = etree.fromstring(data)
return data
monkeypatch.setattr(owslib.feature.schema,
'_get_remote_describefeaturetype',
__remote_describefeaturetype)
@pytest.fixture()
def mp_remote_describefeaturetype_typename_eq_attribute(monkeypatch):
"""Monkeypatch the call to the remote DescribeFeatureType request.
Returns a DescribeFeatureType response where the typeName equals one of
the attributes.
Parameters
----------
monkeypatch : pytest.fixture
PyTest monkeypatch fixture.
"""
def __remote_describefeaturetype(*args, **kwargs):
with open('tests/resources/wfs_schema_dov_hhz.xml', 'r') as f:
data = f.read()
if type(data) is not bytes:
data = data.encode('utf-8')
data = etree.fromstring(data)
return data
monkeypatch.setattr(owslib.feature.schema,
'_get_remote_describefeaturetype',
__remote_describefeaturetype)
class TestOnline(object):
"""Class grouping online tests for the WFS get_schema method."""
@pytest.mark.xfail
@pytest.mark.online
@pytest.mark.skipif(not service_ok(WFS_SERVICE_URL),
reason="WFS service is unreachable")
@pytest.mark.parametrize("wfs_version", ["1.1.0", "2.0.0"])
def test_get_schema(self, wfs_version):
"""Test the get_schema method for a standard schema."""
wfs = WebFeatureService(WFS_SERVICE_URL, version=wfs_version)
schema = wfs.get_schema('dov-pub:Boringen')
@pytest.mark.xfail
@pytest.mark.online
@pytest.mark.skipif(not service_ok(WFS_SERVICE_URL),
reason="WFS service is unreachable")
@pytest.mark.parametrize("wfs_version", ["1.1.0", "2.0.0"])
def test_schema_result(self, wfs_version):
"""Test whether the output from get_schema is a wellformed dictionary."""
wfs = WebFeatureService(WFS_SERVICE_URL, version=wfs_version)
schema = wfs.get_schema('dov-pub:Boringen')
assert isinstance(schema, dict)
assert 'properties' in schema or 'geometry' in schema
if 'geometry' in schema:
assert 'geometry_column' in schema
if 'properties' in schema:
assert isinstance(schema['properties'], dict)
assert 'required' in schema
assert isinstance(schema['required'], list)
class TestOffline(object):
"""Class grouping offline tests for the WFS get_schema method."""
def test_get_schema(self, mp_wfs_110, mp_remote_describefeaturetype):
"""Test the get_schema method for a standard schema.
Parameters
----------
mp_wfs_110 : pytest.fixture
Monkeypatch the call to the remote GetCapabilities request.
mp_remote_describefeaturetype : pytest.fixture
Monkeypatch the call to the remote DescribeFeatureType request.
"""
wfs110 = WebFeatureService(WFS_SERVICE_URL, version='1.1.0')
schema = wfs110.get_schema('dov-pub:Boringen')
def test_schema_result(self, mp_wfs_110, mp_remote_describefeaturetype):
"""Test whether the output from get_schema is a wellformed dictionary.
Parameters
----------
mp_wfs_110 : pytest.fixture
Monkeypatch the call to the remote GetCapabilities request.
mp_remote_describefeaturetype : pytest.fixture
Monkeypatch the call to the remote DescribeFeatureType request.
"""
wfs110 = WebFeatureService(WFS_SERVICE_URL, version='1.1.0')
schema = wfs110.get_schema('dov-pub:Boringen')
assert isinstance(schema, dict)
assert 'properties' in schema or 'geometry' in schema
if 'geometry' in schema:
assert 'geometry_column' in schema
if 'properties' in schema:
assert isinstance(schema['properties'], dict)
assert 'required' in schema
assert isinstance(schema['required'], list)
def test_get_schema_typename_eq_attribute(
self, mp_wfs_110,
mp_remote_describefeaturetype_typename_eq_attribute):
"""Test the get_schema method for a schema where the typeName equals
one of the attributes.
Parameters
----------
mp_wfs_110 : pytest.fixture
Monkeypatch the call to the remote GetCapabilities request.
mp_remote_describefeaturetype : pytest.fixture
Monkeypatch the call to the remote DescribeFeatureType
request.
"""
wfs110 = WebFeatureService(WFS_SERVICE_URL, version='1.1.0')
schema = wfs110.get_schema('gw_varia:hhz')
|