use of org.apache.axis2.context.ConfigurationContext in project wso2-synapse by wso2.
the class LocalEntryDeployerTest method testUpdate.
/**
* Test updating a local entry
*
* @throws Exception
*/
@Test
public void testUpdate() throws Exception {
String inputXML = "<localEntry key=\"TestEntry\" xmlns=\"http://ws.apache.org/ns/synapse\">0.1</localEntry>";
OMElement inputElement = AXIOMUtil.stringToOM(inputXML);
LocalEntryDeployer localEntryDeployer = new LocalEntryDeployer();
SynapseConfiguration synapseConfiguration = new SynapseConfiguration();
AxisConfiguration axisConfiguration = synapseConfiguration.getAxisConfiguration();
ConfigurationContext cfgCtx = new ConfigurationContext(axisConfiguration);
SynapseEnvironment synapseEnvironment = new Axis2SynapseEnvironment(cfgCtx, synapseConfiguration);
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_ENV, synapseEnvironment));
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_CONFIG, synapseConfiguration));
cfgCtx.setAxisConfiguration(axisConfiguration);
localEntryDeployer.init(cfgCtx);
localEntryDeployer.deploySynapseArtifact(inputElement, "sampleFile", null);
String inputUpdateXML = "<localEntry key=\"TestEntryUpdated\" xmlns=\"http://ws.apache.org/ns/synapse\">0.1</localEntry>";
OMElement updatedElement = AXIOMUtil.stringToOM(inputUpdateXML);
String response = localEntryDeployer.updateSynapseArtifact(updatedElement, "sampleUpdateFile", "TestEntry", null);
Assert.assertEquals("Local Entry not updated!", "TestEntryUpdated", response);
}
use of org.apache.axis2.context.ConfigurationContext in project wso2-synapse by wso2.
the class LocalEntryDeployerTest method testUndeploy.
/**
* Test undeploying a local entry
*
* @throws Exception
*/
@Test
public void testUndeploy() throws Exception {
String inputXML = "<localEntry key=\"TestEntry\" xmlns=\"http://ws.apache.org/ns/synapse\">0.1</localEntry>";
OMElement inputElement = AXIOMUtil.stringToOM(inputXML);
LocalEntryDeployer localEntryDeployer = new LocalEntryDeployer();
SynapseConfiguration synapseConfiguration = new SynapseConfiguration();
AxisConfiguration axisConfiguration = synapseConfiguration.getAxisConfiguration();
ConfigurationContext cfgCtx = new ConfigurationContext(axisConfiguration);
SynapseEnvironment synapseEnvironment = new Axis2SynapseEnvironment(cfgCtx, synapseConfiguration);
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_ENV, synapseEnvironment));
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_CONFIG, synapseConfiguration));
cfgCtx.setAxisConfiguration(axisConfiguration);
localEntryDeployer.init(cfgCtx);
localEntryDeployer.deploySynapseArtifact(inputElement, "sampleFile", null);
Assert.assertNotNull("Local Entry not deployed!", synapseConfiguration.getEntry("TestEntry"));
localEntryDeployer.undeploySynapseArtifact("TestEntry");
Assert.assertNull("Local Entry cannot be undeployed", synapseConfiguration.getEntry("TestEntry"));
}
use of org.apache.axis2.context.ConfigurationContext in project wso2-synapse by wso2.
the class LocalEntryDeployerTest method testDeploy.
/**
* Testing the deployment of a local entry
*
* @throws Exception
*/
@Test
public void testDeploy() throws Exception {
String inputXML = "<localEntry key=\"TestEntry\" xmlns=\"http://ws.apache.org/ns/synapse\">0.1</localEntry>";
OMElement inputElement = AXIOMUtil.stringToOM(inputXML);
LocalEntryDeployer localEntryDeployer = new LocalEntryDeployer();
SynapseConfiguration synapseConfiguration = new SynapseConfiguration();
AxisConfiguration axisConfiguration = synapseConfiguration.getAxisConfiguration();
ConfigurationContext cfgCtx = new ConfigurationContext(axisConfiguration);
SynapseEnvironment synapseEnvironment = new Axis2SynapseEnvironment(cfgCtx, synapseConfiguration);
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_ENV, synapseEnvironment));
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_CONFIG, synapseConfiguration));
cfgCtx.setAxisConfiguration(axisConfiguration);
localEntryDeployer.init(cfgCtx);
String response = localEntryDeployer.deploySynapseArtifact(inputElement, "sampleFile", null);
Assert.assertEquals("Local Entry not deployed!", "TestEntry", response);
}
use of org.apache.axis2.context.ConfigurationContext in project wso2-synapse by wso2.
the class PriorityExecutorDeployerTest method testDeploy.
/**
* Testing the deployment of an endpoint
*
* @throws Exception
*/
@Test
public void testDeploy() throws Exception {
String inputXML = "<priority-executor name=\"TestExec\" xmlns=\"http://ws.apache.org/ns/synapse\">" + " <queues>" + " <queue size=\"100\" priority=\"1\"/>" + " <queue size=\"100\" priority=\"10\"/>" + " </queues>" + " </priority-executor>";
OMElement inputElement = AXIOMUtil.stringToOM(inputXML);
PriorityExecutorDeployer priorityExecutorDeployer = new PriorityExecutorDeployer();
SynapseConfiguration synapseConfiguration = new SynapseConfiguration();
AxisConfiguration axisConfiguration = synapseConfiguration.getAxisConfiguration();
ConfigurationContext cfgCtx = new ConfigurationContext(axisConfiguration);
SynapseEnvironment synapseEnvironment = new Axis2SynapseEnvironment(cfgCtx, synapseConfiguration);
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_ENV, synapseEnvironment));
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_CONFIG, synapseConfiguration));
cfgCtx.setAxisConfiguration(axisConfiguration);
priorityExecutorDeployer.init(cfgCtx);
String response = priorityExecutorDeployer.deploySynapseArtifact(inputElement, "sampleFile", null);
Assert.assertEquals("Priority executor not deployed!", "TestExec", response);
}
use of org.apache.axis2.context.ConfigurationContext in project wso2-synapse by wso2.
the class SequenceDeployerTest method testUndeploy.
/**
* Test undeploying a sequence
*
* @throws Exception
*/
@Test
public void testUndeploy() throws Exception {
String inputXML = "<sequence name=\"TestSequence\" xmlns=\"http://ws.apache.org/ns/synapse\">" + " <log/>" + " </sequence>";
OMElement inputElement = AXIOMUtil.stringToOM(inputXML);
SequenceDeployer sequenceDeployer = new SequenceDeployer();
SynapseConfiguration synapseConfiguration = new SynapseConfiguration();
AxisConfiguration axisConfiguration = synapseConfiguration.getAxisConfiguration();
ConfigurationContext cfgCtx = new ConfigurationContext(axisConfiguration);
SynapseEnvironment synapseEnvironment = new Axis2SynapseEnvironment(cfgCtx, synapseConfiguration);
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_ENV, synapseEnvironment));
axisConfiguration.addParameter(new Parameter(SynapseConstants.SYNAPSE_CONFIG, synapseConfiguration));
cfgCtx.setAxisConfiguration(axisConfiguration);
sequenceDeployer.init(cfgCtx);
sequenceDeployer.deploySynapseArtifact(inputElement, "sampleFile", new Properties());
Assert.assertNotNull("Sequence not deployed!", synapseConfiguration.getSequence("TestSequence"));
sequenceDeployer.undeploySynapseArtifact("TestSequence");
Assert.assertNull("Sequence cannot be undeployed", synapseConfiguration.getSequence("TestSequence"));
}
Aggregations