Package com.alibaba.druid.bvt.pool

Source Code of com.alibaba.druid.bvt.pool.DiscardTest

package com.alibaba.druid.bvt.pool;

import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
import java.util.concurrent.CountDownLatch;

import org.junit.Assert;
import junit.framework.TestCase;

import com.alibaba.druid.mock.MockDriver;
import com.alibaba.druid.mock.MockStatementBase;
import com.alibaba.druid.pool.DruidDataSource;
import com.alibaba.druid.pool.vendor.MySqlExceptionSorter;
import com.alibaba.druid.util.JdbcUtils;

public class DiscardTest extends TestCase {

    private DruidDataSource  dataSource;

    private MockDriver       driver;

    private volatile boolean failed = false;

    protected void setUp() throws Exception {
        driver = new MockDriver() {

            public ResultSet executeQuery(MockStatementBase stmt, String sql) throws SQLException {
                if (failed) {
                    throw new SQLException("", "", 1040);
                }
                return super.executeQuery(stmt, sql);
            }

            public Connection connect(String url, Properties info) throws SQLException {
                while (failed) {
                    try {
                        Thread.sleep(1);
                    } catch (InterruptedException e) {
                        throw new SQLException(e.getMessage(), e);
                    }
                }

                return super.connect(url, info);
            }
        };

        dataSource = new DruidDataSource();
        dataSource.setUrl("jdbc:mock:xxx");
        dataSource.setTestOnBorrow(false);
        dataSource.setDriver(driver);
        dataSource.setDbType("mysql");
        dataSource.setMinIdle(1);
        dataSource.setMaxActive(1);
        dataSource.setFilters("log4j");
        dataSource.setExceptionSorter(new MySqlExceptionSorter());
    }

    protected void tearDown() throws Exception {
        dataSource.close();
    }

    public void test_db_fail() throws Exception {
        exec();

        final int THREAD_COUNT = 10;
        final CountDownLatch endLatch = new CountDownLatch(THREAD_COUNT);

        Thread[] threads = new Thread[THREAD_COUNT];

        {
            Exception error = null;

            Connection conn = dataSource.getConnection();
            Statement stmt = conn.createStatement();

            for (int i = 0; i < THREAD_COUNT; ++i) {
                threads[i] = new Thread() {

                    public void run() {
                        try {
                            exec();
                        } finally {
                            endLatch.countDown();
                        }
                    }
                };
                threads[i].start();
            }

            this.failed = true;
            try {
                ResultSet rs = stmt.executeQuery("select 1");
                rs.close();
            } catch (SQLException e) {
                error = e;
            }

            stmt.close();
            conn.close();

            Assert.assertNotNull(error);
        }
       
        this.failed = false;

        endLatch.await();
    }

    private void exec() {
        Connection conn = null;
        Statement stmt = null;
        ResultSet rs = null;

        try {
            conn = dataSource.getConnection();
            stmt = conn.createStatement();
            rs = stmt.executeQuery("select 1");
        } catch (Exception ex) {
            ex.printStackTrace();
        } finally {
            JdbcUtils.close(rs);
            JdbcUtils.close(stmt);
            JdbcUtils.close(conn);
        }
    }
}
TOP

Related Classes of com.alibaba.druid.bvt.pool.DiscardTest

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.