-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3850 from chathuranga-jayanath-99/integration-tes…
…t-for-handling-new-resource-key Add tests to verify the handling of the new resource file key.
- Loading branch information
Showing
5 changed files
with
173 additions
and
0 deletions.
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
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
43 changes: 43 additions & 0 deletions
43
.../test/resources/artifacts/ESB/server/registry/governance/mi-resources/xslt/transform.xslt
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,43 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
|
||
<!-- | ||
~ Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com) All Rights Reserved. | ||
~ | ||
~ WSO2 LLC. licenses this file to you under the Apache License, | ||
~ Version 2.0 (the "License"); you may not use this file except | ||
~ in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, | ||
~ software distributed under the License is distributed on an | ||
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
~ KIND, either express or implied. See the License for the | ||
~ specific language governing permissions and limitations | ||
~ under the License. | ||
~ | ||
--> | ||
<xsl:stylesheet version="2.0" | ||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
xmlns:fn="http://www.w3.org/2005/02/xpath-functions" | ||
xmlns:m0="http://services.samples" | ||
exclude-result-prefixes="m0 fn"> | ||
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/> | ||
|
||
<xsl:template match="/"> | ||
<xsl:apply-templates select="//m0:CheckPriceRequest"/> | ||
</xsl:template> | ||
|
||
<xsl:template match="m0:CheckPriceRequest"> | ||
|
||
<m:getQuote xmlns:m="http://services.samples"> | ||
<m:request> | ||
<m:symbol> | ||
<xsl:value-of select="m0:Code"/> | ||
</m:symbol> | ||
</m:request> | ||
</m:getQuote> | ||
|
||
</xsl:template> | ||
</xsl:stylesheet> |
45 changes: 45 additions & 0 deletions
45
.../resources/artifacts/ESB/server/registry/governance/mi-resources/xslt/transform_back.xslt
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,45 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
|
||
<!-- | ||
~ Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com) All Rights Reserved. | ||
~ | ||
~ WSO2 LLC. licenses this file to you under the Apache License, | ||
~ Version 2.0 (the "License"); you may not use this file except | ||
~ in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, | ||
~ software distributed under the License is distributed on an | ||
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
~ KIND, either express or implied. See the License for the | ||
~ specific language governing permissions and limitations | ||
~ under the License. | ||
~ | ||
--> | ||
<xsl:stylesheet version="2.0" | ||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
xmlns:fn="http://www.w3.org/2005/02/xpath-functions" | ||
xmlns:m0="http://services.samples" | ||
xmlns:ax21="http://services.samples/xsd" | ||
exclude-result-prefixes="m0 ax21 fn"> | ||
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/> | ||
|
||
<xsl:template match="/"> | ||
<xsl:apply-templates select="//m0:return"/> | ||
</xsl:template> | ||
|
||
<xsl:template match="m0:return"> | ||
|
||
<m:CheckPriceResponse xmlns:m="http://services.samples/xsd"> | ||
<m:Code> | ||
<xsl:value-of select="ax21:symbol"/> | ||
</m:Code> | ||
<m:Price> | ||
<xsl:value-of select="ax21:last"/> | ||
</m:Price> | ||
</m:CheckPriceResponse> | ||
|
||
</xsl:template> | ||
</xsl:stylesheet> |
60 changes: 60 additions & 0 deletions
60
...ory/deployment/server/synapse-configs/default/proxy-services/xsltInResourcesTestProxy.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,60 @@ | ||
<!-- | ||
~ Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com) All Rights Reserved. | ||
~ | ||
~ WSO2 LLC. licenses this file to you under the Apache License, | ||
~ Version 2.0 (the "License"); you may not use this file except | ||
~ in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, | ||
~ software distributed under the License is distributed on an | ||
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
~ KIND, either express or implied. See the License for the | ||
~ specific language governing permissions and limitations | ||
~ under the License. | ||
~ | ||
--> | ||
|
||
<proxy xmlns="http://ws.apache.org/ns/synapse" name="xsltInResourcesTestProxy" transports="https http" | ||
startOnLoad="true" trace="disable"> | ||
<description/> | ||
<target> | ||
<inSequence> | ||
<log level="custom"> | ||
<property name="text" value="---------Request Message------------"/> | ||
</log> | ||
<log level="full"/> | ||
<xslt key="resources:xslt/transform.xslt"/> | ||
<log level="custom"> | ||
<property name="text" value="---------Transformed Request Message------------"/> | ||
</log> | ||
<log level="full"/> | ||
<send> | ||
<endpoint key="StockQuote_9000_EP"/> | ||
</send> | ||
</inSequence> | ||
<outSequence> | ||
<log level="custom"> | ||
<property name="text" value="---------Response Message------------"/> | ||
</log> | ||
<log level="full"/> | ||
<xslt key="resources:xslt/transform_back.xslt"/> | ||
<log level="custom"> | ||
<property name="text" value="---------Transformed Response Message------------"/> | ||
</log> | ||
<log level="full"/> | ||
<send/> | ||
</outSequence> | ||
<faultSequence> | ||
<makefault> | ||
<code xmlns:tns="http://schemas.xmlsoap.org/soap/envelope/" value="tns:Server"/> | ||
<reason xmlns:ns3="http://org.apache.synapse/xsd" | ||
expression="get-property('ERROR_MESSAGE')"/> | ||
</makefault> | ||
<header name="To" expression="get-property('ReplyTo')"/> | ||
<send/> | ||
</faultSequence> | ||
</target> | ||
</proxy> |