Package org.mule.example.loanbroker

Source Code of org.mule.example.loanbroker.LoanBrokerSyncTestCase

/*
* 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.example.loanbroker;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

import org.mule.api.MuleMessage;
import org.mule.api.client.MuleClient;
import org.mule.tck.junit4.FunctionalTestCase;
import org.mule.tck.junit4.rule.DynamicPort;
import org.mule.transport.NullPayload;
import org.mule.transport.http.HttpConstants;

import java.util.Map;

import org.apache.commons.collections.map.SingletonMap;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;

public class LoanBrokerSyncTestCase extends FunctionalTestCase
{
  @Rule
  public DynamicPort loanBrokerSyncPort = new DynamicPort("loan.broker.sync.port");
 
  @Rule
  public DynamicPort lookupCustomerCreditProfilePort = new DynamicPort("lookup.customer.credit.profile.port");
 
  @Rule
  public DynamicPort bank1Port = new DynamicPort("bank.1.port");
 
  @Rule
  public DynamicPort bank2Port = new DynamicPort("bank.2.port");
 
  @Rule
  public DynamicPort bank3Port = new DynamicPort("bank.3.port");
 
  @Rule
  public DynamicPort bank4Port = new DynamicPort("bank.4.port");
 
  @Rule
  public DynamicPort bank5Port = new DynamicPort("bank.5.port");
 
    @Override
    protected String getConfigFile()
    {
        return "mule-config.xml";
    }

    @Test
    public void testDefaultLoanBrokerRequest() throws Exception
    {
        MuleClient client = muleContext.getClient();

        @SuppressWarnings("unchecked")
        Map<String, Object> props = new SingletonMap("http.method", HttpConstants.METHOD_GET);

        MuleMessage result = client.send("http://localhost:" + loanBrokerSyncPort.getNumber() + "?name=Muley&amount=20000&term=48&ssn=1234", null, props);
        assertNotNull("Result is null", result);
        assertFalse("Result is null", result.getPayload() instanceof NullPayload);
        assertNull(result.getExceptionPayload());
        assertTrue("Unexpected response string", result.getPayloadAsString().matches("Bank #\\d, rate: \\d\\.(\\d)*$"));
    }

    @Test
    public void testIncompleteLoanBrokerRequest() throws Exception
    {
        MuleClient client = muleContext.getClient();

        @SuppressWarnings("unchecked")
        Map<String, Object> props = new SingletonMap("http.method", HttpConstants.METHOD_GET);

        MuleMessage result = client.send("http://localhost:" + loanBrokerSyncPort.getNumber() + "?amount=1234", null, props);
        assertEquals("Error: incomplete request", result.getPayloadAsString());
    }

    @Test
    public void testWrongLoanBrokerRequest() throws Exception
    {
        MuleClient client = muleContext.getClient();

        @SuppressWarnings("unchecked")
        Map<String, Object> props = new SingletonMap("http.method", HttpConstants.METHOD_GET);

        MuleMessage result = client.send("http://localhost:" + loanBrokerSyncPort.getNumber() + "?name=Muley&term=48&ssn=1234&amount=abcd", null, props);
        assertEquals("Error processing loan request", result.getPayloadAsString());
    }
}
TOP

Related Classes of org.mule.example.loanbroker.LoanBrokerSyncTestCase

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.