Search in sources :

Example 1 with AfterExceptionTagMigrationStep

use of com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterExceptionTagMigrationStep in project mule-migration-assistant by mulesoft.

the class AfterExceptionMigrationStepTestCase method convertBeforeTagWithContent.

@Test
public void convertBeforeTagWithContent() {
    final AfterExceptionTagMigrationStep step = new AfterExceptionTagMigrationStep();
    step.setApplicationModel(appModel);
    Element element = getTestElement().addContent(new Element(GENERIC_TAG_NAME).setText(GENERIC_TAG_VALUE).setAttribute(GENERIC_TAG_ATTRIBUTE_NAME, GENERIC_TAG_ATTRIBUTE_VALUE));
    step.execute(element, reportMock);
    assertProxyAndSourceElements(element, 1);
    final Element source = (Element) element.getContent(0);
    final Element tryElement = (Element) source.getContent(0);
    assertThat(tryElement.getName(), is(TRY_TAG_NAME));
    assertThat(tryElement.getContent().size(), is(2));
    assertExecuteNextElement(tryElement, 0);
    assertErrorHandlerElement(tryElement, 1);
    final Element errorHandlerElement = (Element) tryElement.getContent(1);
    final Element onErrorContinueElement = (Element) errorHandlerElement.getContent(0);
    final Element contentElement = (Element) onErrorContinueElement.getContent(0);
    assertThat(contentElement.getParentElement().getName(), is(ON_ERROR_CONTINUE_TAG_NAME));
    assertThat(contentElement.getValue(), is(GENERIC_TAG_VALUE));
}
Also used : AfterExceptionTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterExceptionTagMigrationStep) Element(org.jdom2.Element) Test(org.junit.Test)

Example 2 with AfterExceptionTagMigrationStep

use of com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterExceptionTagMigrationStep in project mule-migration-assistant by mulesoft.

the class AfterExceptionMigrationStepTestCase method convertRawBeforeTag.

@Test
public void convertRawBeforeTag() {
    final AfterExceptionTagMigrationStep step = new AfterExceptionTagMigrationStep();
    step.setApplicationModel(appModel);
    Element element = getTestElement();
    step.execute(element, reportMock);
    assertProxyAndSourceElements(element, 1);
    final Element source = (Element) element.getContent(0);
    final Element tryElement = (Element) source.getContent(0);
    assertThat(tryElement.getName(), is(TRY_TAG_NAME));
    assertThat(tryElement.getContent().size(), is(2));
    assertExecuteNextElement(tryElement, 0);
    assertErrorHandlerElement(tryElement, 0);
}
Also used : AfterExceptionTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterExceptionTagMigrationStep) Element(org.jdom2.Element) Test(org.junit.Test)

Example 3 with AfterExceptionTagMigrationStep

use of com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterExceptionTagMigrationStep in project mule-migration-assistant by mulesoft.

the class BasicStructureMigrationTask method getSteps.

@Override
public List<MigrationStep> getSteps() {
    PolicyFileRenameMigrationStep policyFileRenameMigrationStep = new PolicyFileRenameMigrationStep();
    policyFileRenameMigrationStep.setApplicationModel(getApplicationModel());
    List<MigrationStep> steps = new ArrayList<>();
    steps.add(new PolicyTagMigrationStep());
    steps.add(new BeforeTagMigrationStep());
    steps.add(new AfterTagMigrationStep());
    steps.add(new BeforeExceptionTagMigrationStep());
    steps.add(new AfterExceptionTagMigrationStep());
    steps.add(new PointcutTagMigrationStep());
    steps.add(new DataTagMigrationStep());
    steps.add(new CleanupAttributesMigrationStep());
    steps.add(policyFileRenameMigrationStep);
    return steps;
}
Also used : BeforeExceptionTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.BeforeExceptionTagMigrationStep) AfterExceptionTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterExceptionTagMigrationStep) BeforeTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.BeforeTagMigrationStep) AfterExceptionTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterExceptionTagMigrationStep) PolicyFileRenameMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.PolicyFileRenameMigrationStep) AfterTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterTagMigrationStep) PointcutTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.PointcutTagMigrationStep) BeforeTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.BeforeTagMigrationStep) BeforeExceptionTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.BeforeExceptionTagMigrationStep) PolicyTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.PolicyTagMigrationStep) CleanupAttributesMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.CleanupAttributesMigrationStep) MigrationStep(com.mulesoft.tools.migration.step.MigrationStep) DataTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.DataTagMigrationStep) ArrayList(java.util.ArrayList) DataTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.DataTagMigrationStep) PolicyFileRenameMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.PolicyFileRenameMigrationStep) PolicyTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.PolicyTagMigrationStep) AfterTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterTagMigrationStep) CleanupAttributesMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.CleanupAttributesMigrationStep) PointcutTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.PointcutTagMigrationStep)

Aggregations

AfterExceptionTagMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterExceptionTagMigrationStep)3 Element (org.jdom2.Element)2 Test (org.junit.Test)2 AfterTagMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterTagMigrationStep)1 BeforeExceptionTagMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.BeforeExceptionTagMigrationStep)1 BeforeTagMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.BeforeTagMigrationStep)1 CleanupAttributesMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.CleanupAttributesMigrationStep)1 DataTagMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.DataTagMigrationStep)1 PointcutTagMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.PointcutTagMigrationStep)1 PolicyFileRenameMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.PolicyFileRenameMigrationStep)1 PolicyTagMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.PolicyTagMigrationStep)1 MigrationStep (com.mulesoft.tools.migration.step.MigrationStep)1 ArrayList (java.util.ArrayList)1