Package org.mule.java

Source Code of org.mule.java.JavaMunitTest

/*
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.java;

import static junit.framework.Assert.assertEquals;
import static org.mule.modules.interceptor.matchers.Matchers.contains;
import static org.mule.munit.common.mocking.Attribute.attribute;
import org.mule.api.MuleEvent;
import org.mule.api.MuleMessage;
import org.mule.modules.interceptor.processors.MuleMessageTransformer;
import org.mule.munit.runner.functional.FunctionalMunitSuite;

import java.io.File;
import java.util.HashMap;

import org.junit.Test;


public class JavaMunitTest extends FunctionalMunitSuite
{

    @Override
    protected String getConfigResources()
    {
        return "mule-config.xml";
    }

    @Test
    public void test() throws Exception
    {
        whenMessageProcessor("create.*")
                .ofNamespace("ji.*")
                .withAttributes(attribute("name").ofNamespace("doc").withValue("jiraMp"))
                .thenReturn(muleMessageWithPayload("expected"));

        Object payload = runFlow("callingJira", testEvent("something")).getMessage().getPayload();

        assertEquals("expected", payload);
    }

    @Test
    public void testMockingOfSubFlowRef() throws Exception
    {
        whenMessageProcessor("sub-flow")
                .withAttributes(attribute("name").withValue(contains("callingJiraSubFlow")))
                .thenReturn(muleMessageWithPayload("hello world"));

        assertEquals(runFlow("callingSubFlow", testEvent("something")).getMessage().getPayload(),"hello world");
    }

    @Test
    public void testMockingOfFlowRef() throws Exception
    {
        HashMap<String, Object> attributes = new HashMap<String, Object>();
        attributes.put("name", "callingJira");
        whenMessageProcessor("flow")
                .withAttributes(attribute("name").withValue(contains("callingJira")))
                .thenReturn(muleMessageWithPayload("hello world"));

        assertEquals(runFlow("callingFlow", testEvent("something")).getMessage().getPayload(), "hello world");
    }

    @Test
    public void mockingMessageProcessorWithTransformer() throws Exception
    {
        whenMessageProcessor("create.*")
                .ofNamespace("ji.*")
                .withAttributes(attribute("name").ofNamespace("doc").withValue("jiraMp"))
                .thenApply(new MuleMessageTransformer()
                {
                    @Override
                    public MuleMessage transform(MuleMessage original)
                    {
                        original.setPayload("transformerActing");
                        return original;
                    }
                });

        Object payload = runFlow("callingJira", testEvent("transformerActing")).getMessage().getPayload();

        assertEquals("transformerActing", payload);
    }

    @Test
    public void testUntilSuccessful() throws Exception
    {
        whenMessageProcessor("flow")
                .withAttributes(attribute("name").withValue("callingJira"))
                .thenReturn(muleMessageWithPayload("hello world"));


        MuleEvent muleEvent = runFlow("untilSuccessfulFlow", testEvent("something"));

        Thread.sleep(3000l);
        assertEquals("something", muleEvent.getMessage().getPayload());
        verifyCallOfMessageProcessor("flow").withAttributes(attribute("name").withValue("callingJira")).atLeastOnce();
    }



    @Test
    public void testSetMuleAppHome() throws Exception
    {

        Object payload = runFlow("setMuleAppHomeFlow", testEvent("something")).getMessage().getPayload();

        assertEquals(new File(getClass().getResource("/mule-config.xml").getPath()).getParentFile().getAbsolutePath(), payload);
    }

    @Test
    public void executeSubSFlowWithSetValue() throws Exception{

        MuleEvent event = testEvent("");
        event.setFlowVariable("uiUsername", "testPass");
        event.setFlowVariable("requestUsername", "testPass");

       runFlow("setValueFlow", event);

        assertEquals(true, event.getFlowVariable("areCredentialsValid"));
    }


}
TOP

Related Classes of org.mule.java.JavaMunitTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.