Search in sources :

Example 1 with AfterTagMigrationStep

use of com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterTagMigrationStep 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)

Example 2 with AfterTagMigrationStep

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

the class AfterTagMigrationStepTestCase method convertRawBeforeTag.

@Test
public void convertRawBeforeTag() {
    final AfterTagMigrationStep step = new AfterTagMigrationStep();
    step.setApplicationModel(appModel);
    Element element = getTestElement();
    step.execute(element, reportMock);
    assertProxyAndSourceElements(element, 1);
    assertExecuteNextElement((Element) element.getContent(0), 0);
}
Also used : Element(org.jdom2.Element) AfterTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterTagMigrationStep) Test(org.junit.Test)

Example 3 with AfterTagMigrationStep

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

the class AfterTagMigrationStepTestCase method convertBeforeTagWithContent.

@Test
public void convertBeforeTagWithContent() {
    final AfterTagMigrationStep step = new AfterTagMigrationStep();
    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, 2);
    assertExecuteNextElement((Element) element.getContent(0), 0);
    final Element source = (Element) element.getContent(0);
    final Element contentElement = (Element) source.getContent(1);
    assertThat(contentElement.getParentElement().getName(), is(SOURCE_TAG_NAME));
    assertThat(contentElement.getParentElement().getNamespacePrefix(), is(HTTP_POLICY_NAMESPACE_PREFIX));
    assertThat(contentElement.getValue(), is(GENERIC_TAG_VALUE));
    assertThat(contentElement.getNamespacesIntroduced().size(), is(1));
}
Also used : Element(org.jdom2.Element) AfterTagMigrationStep(com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterTagMigrationStep) Test(org.junit.Test)

Aggregations

AfterTagMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterTagMigrationStep)3 Element (org.jdom2.Element)2 Test (org.junit.Test)2 AfterExceptionTagMigrationStep (com.mulesoft.tools.migration.library.gateway.steps.policy.basicstructure.AfterExceptionTagMigrationStep)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