forked from 52North/WPS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add integration test for metadata annotation in WPS4R, closes 52North…
- Loading branch information
Daniel Nüst
committed
Mar 6, 2015
1 parent
303f91b
commit 6c5d2f9
Showing
3 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
############################################################################### | ||
# wps.des: id = test.metadata, title = Test script, abstract = empty test | ||
# script for checking metadata links in process descriptions; | ||
|
||
# wps.in: id = input, title = dummy input, | ||
# type = string, value = test, minOccurs = 0, maxOccurs = 1; | ||
|
||
# wps.metadata: title = A test title for: a metadata link, href = http://test.url/metadata; | ||
# wps.metadata: title = Another link, href = http://link.to/metadata; | ||
|
||
# wps.out: id = output, type = string, title = dummy output; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
52n-wps-webapp/src/test/resources/R/DescribeProcessTestMetadata.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<wps:DescribeProcess service="WPS" version="1.0.0" | ||
xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:ows="http://www.opengis.net/ows/1.1" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsDescribeProcess_request.xsd"> | ||
<ows:Identifier>org.n52.wps.server.r.test.metadata</ows:Identifier> | ||
</wps:DescribeProcess> |