Package org.apache.servicemix.jbi.audit.jdbc

Source Code of org.apache.servicemix.jbi.audit.jdbc.JdbcAuditorTest

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.servicemix.jbi.audit.jdbc;

import org.apache.servicemix.jbi.audit.jdbc.JdbcAuditor;
import org.apache.servicemix.jbi.container.JBIContainer;
import org.apache.servicemix.jbi.jaxp.StringSource;
import org.apache.servicemix.tck.ReceiverComponent;
import org.apache.servicemix.tck.SenderComponent;
import org.hsqldb.jdbc.jdbcDataSource;

import javax.jbi.messaging.ExchangeStatus;
import javax.jbi.messaging.InOnly;
import javax.jbi.messaging.MessageExchange;
import javax.sql.DataSource;

import java.sql.Connection;

import junit.framework.TestCase;


public class JdbcAuditorTest extends TestCase {

    private DataSource dataSource;
    private Connection connection;
    private JBIContainer jbi;
   
   
    protected void setUp() throws Exception {
        jdbcDataSource ds = new jdbcDataSource();
        ds.setDatabase("jdbc:hsqldb:mem:aname");
        ds.setUser("sa");
        dataSource = ds;
        connection = dataSource.getConnection();
        jbi = new JBIContainer();
        jbi.setFlowName("st");
        jbi.setEmbedded(true);
        jbi.init();
    }
   
    protected void tearDown() throws Exception {
        if (jbi != null) {
            jbi.shutDown();
        }
        if (connection != null) {
            connection.close();
        }
    }
   
   
    public void testInsertUpdate() throws Exception {
        jbi.start();
        SenderComponent sender = new SenderComponent();
        ReceiverComponent receiver = new ReceiverComponent();
        jbi.activateComponent(sender, "sender");
        jbi.activateComponent(receiver, "receiver");
       
        JdbcAuditor auditor = new JdbcAuditor();
        auditor.setContainer(jbi);
        auditor.setDataSource(dataSource);
        auditor.afterPropertiesSet();
       
        InOnly inonly = sender.createInOnlyExchange(ReceiverComponent.SERVICE, null, null);
        inonly.setInMessage(inonly.createMessage());
        inonly.getInMessage().setContent(new StringSource("<hello>world</hello>"));
        sender.send(inonly);
       
        int nbMessages = auditor.getExchangeCount();
        assertEquals(1, nbMessages);
        MessageExchange[] exchanges = auditor.getExchangesByRange(0, 1);
        assertNotNull(exchanges);
        assertEquals(1, exchanges.length);
        assertEquals(ExchangeStatus.DONE, exchanges[0].getStatus());
       
        auditor.resendExchange(exchanges[0]);

        nbMessages = auditor.getExchangeCount();
        assertEquals(2, nbMessages);
        MessageExchange exchange = auditor.getExchangeByIndex(1);
        assertNotNull(exchange);
        assertEquals(ExchangeStatus.DONE, exchange.getStatus());
       
        /*
        PreparedStatement st = connection.prepareStatement("SELECT EXCHANGE FROM SM_AUDIT WHERE ID = ?");
        try {
            st.setString(1, inonly.getExchangeId());
            ResultSet rs = st.executeQuery();
            assertTrue(rs.next());
            byte[] data = rs.getBytes(1);
            ObjectInputStream ois = new ObjectInputStream(new ByteArrayInputStream(data));
            Object obj = ois.readObject();
            assertNotNull(obj);
            assertTrue(obj instanceof ExchangePacket);
            assertEquals(ExchangeStatus.DONE, ((ExchangePacket) obj).getStatus());
        } finally {
            st.close();
        }
        */
       
    }
   
}
TOP

Related Classes of org.apache.servicemix.jbi.audit.jdbc.JdbcAuditorTest

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.