use of org.apache.synapse.api.Resource in project wso2-synapse by wso2.
the class ResourceFactory method createResource.
public static Resource createResource(OMElement resourceElt, Properties properties) {
Resource resource = new Resource();
configureURLMappings(resource, resourceElt);
configureSequences(resource, resourceElt, properties);
configureFilters(resource, resourceElt);
InboundApiUtils.addBindsTo(resource, resourceElt);
return resource;
}
use of org.apache.synapse.api.Resource in project wso2-synapse by wso2.
the class URLMappingBasedDispatcherTest method testExactMatchBasedDispatch.
public void testExactMatchBasedDispatch() throws Exception {
API api = new API("TestAPI", "/test");
Resource resource = new Resource();
resource.setDispatcherHelper(new URLMappingHelper("/foo/bar"));
resource.setInSequence(getTestSequence(PROP_NAME, PROP_VALUE));
api.addResource(resource);
SynapseConfiguration synapseConfig = new SynapseConfiguration();
synapseConfig.addAPI(api.getName(), api);
RESTRequestHandler handler = new RESTRequestHandler();
MessageContext synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar", "GET");
handler.process(synCtx);
assertEquals(PROP_VALUE, synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar/", "GET");
handler.process(synCtx);
assertEquals(PROP_VALUE, synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar?a=5", "GET");
handler.process(synCtx);
assertEquals(PROP_VALUE, synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar?a=5&name=test", "GET");
handler.process(synCtx);
assertEquals(PROP_VALUE, synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo", "GET");
handler.process(synCtx);
assertNull(synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar/index.html", "GET");
handler.process(synCtx);
assertNull(synCtx.getProperty(PROP_NAME));
}
use of org.apache.synapse.api.Resource in project wso2-synapse by wso2.
the class URLMappingBasedDispatcherTest method testMultipleResourceDispatch.
public void testMultipleResourceDispatch() throws Exception {
API api = new API("TestAPI", "/test");
Resource resource1 = new Resource();
resource1.setDispatcherHelper(new URLMappingHelper("/foo/*"));
resource1.setInSequence(getTestSequence(PROP_NAME, "resource1"));
Resource resource2 = new Resource();
resource2.setDispatcherHelper(new URLMappingHelper("/foo/bar/*"));
resource2.setInSequence(getTestSequence(PROP_NAME, "resource2"));
Resource resource3 = new Resource();
resource3.setDispatcherHelper(new URLMappingHelper("*.jsp"));
resource3.setInSequence(getTestSequence(PROP_NAME, "resource3"));
api.addResource(resource1);
api.addResource(resource2);
api.addResource(resource3);
SynapseConfiguration synapseConfig = new SynapseConfiguration();
synapseConfig.addAPI(api.getName(), api);
RESTRequestHandler handler = new RESTRequestHandler();
MessageContext synCtx = getMessageContext(synapseConfig, false, "/test/foo/", "GET");
handler.process(synCtx);
assertEquals("resource1", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/index.html?a=5", "GET");
handler.process(synCtx);
assertEquals("resource1", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/bars", "GET");
handler.process(synCtx);
assertEquals("resource1", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/index.jsp", "GET");
handler.process(synCtx);
assertEquals("resource1", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar/", "GET");
handler.process(synCtx);
assertEquals("resource2", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar/index.html?a=5", "GET");
handler.process(synCtx);
assertEquals("resource2", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar/hello", "GET");
handler.process(synCtx);
assertEquals("resource2", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar/index.jsp", "GET");
handler.process(synCtx);
assertEquals("resource2", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/index.jsp", "GET");
handler.process(synCtx);
assertEquals("resource3", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/hello/index.jsp?a=5", "GET");
handler.process(synCtx);
assertEquals("resource3", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foolish/bars/index.jsp", "GET");
handler.process(synCtx);
assertEquals("resource3", synCtx.getProperty(PROP_NAME));
synCtx = getMessageContext(synapseConfig, false, "/test/foolish/index.html", "GET");
handler.process(synCtx);
assertNull(synCtx.getProperty(PROP_NAME));
}
use of org.apache.synapse.api.Resource in project wso2-synapse by wso2.
the class URLMappingBasedDispatcherTest method testResponseDispatch.
public void testResponseDispatch() throws Exception {
API api = new API("TestAPI", "/test");
Resource resource = new Resource();
resource.setDispatcherHelper(new URLMappingHelper("/foo/bar/*"));
resource.setOutSequence(getTestSequence(PROP_NAME, PROP_VALUE));
api.addResource(resource);
SynapseConfiguration synapseConfig = new SynapseConfiguration();
synapseConfig.addAPI(api.getName(), api);
RESTRequestHandler handler = new RESTRequestHandler();
MessageContext synCtx = getMessageContext(synapseConfig, false, "/test/foo/bar", "GET");
synCtx.setProperty(RESTConstants.SYNAPSE_REST_API, api.getName());
synCtx.setProperty(SynapseConstants.ARTIFACT_NAME, SynapseConstants.FAIL_SAFE_MODE_API + api.getName());
synCtx.setResponse(true);
handler.process(synCtx);
assertNull(synCtx.getProperty(PROP_NAME));
synCtx.setProperty(RESTConstants.SYNAPSE_RESOURCE, resource.getName());
handler.process(synCtx);
assertEquals(PROP_VALUE, synCtx.getProperty(PROP_NAME));
}
Aggregations