opengeospatial / ets-wcs20

Executable Test Suite for WCS 2.0.1
Other
1 stars 2 forks source link

Improve check for Coverage GML Profile #125

Open bpross-52n opened 11 months ago

bpross-52n commented 11 months ago

Is your feature request related to a problem? Please describe. The check for the Coverage GML Profile (see here) is checking for equality. If a profile identifier has blanks at the beginning or start (e.g.: http://www.opengis.net/spec/GMLCOV/1.0/conf/gml </ows:Profile>) this is not recognized. Now a number of tests are not executed and thus set to passed. Check here and here. Deep down in the report logs there will be a message: The server does not support the gml coverage. Which it does.

Describe the solution you'd like The equality check here should be changed to a contains to cover blanks.

Describe alternatives you've considered If no blanks are to be allowed in the profile identifiers: Check for identifiers containing blanks and report an error if any blanks are found.