You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We detected a bug in test deletedFeatureIsRetired.
The test deletedFeatureIsRetired requests the last version of a feature after having deleted it. The parameter version="LAST" is used for that.
The problem is that the test does not request the last version as version="LAST" is set after the request has already been sent.
Line 243 - 245 of VersioningTests [1] are relevant:
ResourceId qryId = new ResourceId(gmlId);
rsp = this.wfsClient.GetFeatureVersion(qryId, typeName);
qryId.setVersion(FES2.VersionAction.LAST.name());
Submit a transaction request to delete a feature instance; the response must report totalDeleted=1 (and the server updates its status--a client cannot do this directly)
Submit a query to retrieve the LAST version in the version chain
The second request is filtering the version chain, the last member of which should be "retired" because the feature was previously deleted. The version chain should end up looking like this in the simplest case:
We detected a bug in test deletedFeatureIsRetired.
The test deletedFeatureIsRetired requests the last version of a feature after having deleted it. The parameter version="LAST" is used for that.
The problem is that the test does not request the last version as version="LAST" is set after the request has already been sent.
Line 243 - 245 of VersioningTests [1] are relevant:
[1] org.opengis.cite.iso19142.versioning.VersioningTests
The text was updated successfully, but these errors were encountered: