blob: 756716bc677c520ce99cd58d3b664e6b8a5e9c71 [file] [log] [blame]
/**
* 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.camel.component.mybatis;
import java.sql.Connection;
import java.sql.Statement;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.After;
import org.junit.Before;
/**
* @version
*/
public abstract class MyBatisTestSupport extends CamelTestSupport {
protected boolean createTestData() {
return true;
}
@Override
@Before
public void setUp() throws Exception {
super.setUp();
// lets create the database...
Connection connection = createConnection();
Statement statement = connection.createStatement();
statement.execute("create table ACCOUNT ( ACC_ID INTEGER , ACC_FIRST_NAME VARCHAR(255), ACC_LAST_NAME VARCHAR(255), ACC_EMAIL VARCHAR(255) )");
connection.close();
if (createTestData()) {
Account account = new Account();
account.setId(123);
account.setFirstName("James");
account.setLastName("Strachan");
account.setEmailAddress("TryGuessing@gmail.com");
template.sendBody("mybatis:insertAccount?statementType=Insert", account);
account = new Account();
account.setId(456);
account.setFirstName("Claus");
account.setLastName("Ibsen");
account.setEmailAddress("Noname@gmail.com");
template.sendBody("mybatis:insertAccount?statementType=Insert", account);
}
}
@Override
@After
public void tearDown() throws Exception {
Connection connection = createConnection();
Statement statement = connection.createStatement();
statement.execute("drop table ACCOUNT");
connection.close();
super.tearDown();
}
private Connection createConnection() throws Exception {
MyBatisEndpoint endpoint = resolveMandatoryEndpoint("mybatis:Account", MyBatisEndpoint.class);
return endpoint.getSqlSessionFactory().getConfiguration().getEnvironment().getDataSource().getConnection();
}
}