How to use performTestForCustomIniFile method of org.testcontainers.jdbc.AbstractJDBCDriverTest class

Best Testcontainers-java code snippet using org.testcontainers.jdbc.AbstractJDBCDriverTest.performTestForCustomIniFile

Source:AbstractJDBCDriverTest.java Github

copy

Full Screen

...53 performSimpleTestWithCharacterSet(jdbcUrl);54 performTestForCharacterEncodingForInitialScriptConnection(dataSource);55 }56 if (options.contains(Options.CustomIniFile)) {57 performTestForCustomIniFile(dataSource);58 }59 }60 }61 private void performSimpleTest(HikariDataSource dataSource) throws SQLException {62 String query = "SELECT 1";63 if (jdbcUrl.startsWith("jdbc:tc:db2:")) {64 query = "SELECT 1 FROM SYSIBM.SYSDUMMY1";65 }66 boolean result = new QueryRunner(dataSource, options.contains(Options.PmdKnownBroken)).query(query, rs -> {67 rs.next();68 int resultSetInt = rs.getInt(1);69 assertEquals("A basic SELECT query succeeds", 1, resultSetInt);70 return true;71 });72 assertTrue("The database returned a record as expected", result);73 }74 private void performTestForScriptedSchema(HikariDataSource dataSource) throws SQLException {75 boolean result = new QueryRunner(dataSource).query("SELECT foo FROM bar WHERE foo LIKE '%world'", rs -> {76 rs.next();77 String resultSetString = rs.getString(1);78 assertEquals("A basic SELECT query succeeds where the schema has been applied from a script", "hello world", resultSetString);79 return true;80 });81 assertTrue("The database returned a record as expected", result);82 }83 private void performTestForJDBCParamUsage(HikariDataSource dataSource) throws SQLException {84 boolean result = new QueryRunner(dataSource).query("select CURRENT_USER", rs -> {85 rs.next();86 String resultUser = rs.getString(1);87 // Not all databases (eg. Postgres) return @% at the end of user name. We just need to make sure the user name matches.88 if (resultUser.endsWith("@%")) {89 resultUser = resultUser.substring(0, resultUser.length() - 2);90 }91 assertEquals("User from query param is created.", "someuser", resultUser);92 return true;93 });94 assertTrue("The database returned a record as expected", result);95 String databaseQuery = "SELECT DATABASE()";96 // Postgres does not have Database() as a function97 String databaseType = ConnectionUrl.newInstance(jdbcUrl).getDatabaseType();98 if (databaseType.equalsIgnoreCase("postgresql") ||99 databaseType.equalsIgnoreCase("postgis") ||100 databaseType.equalsIgnoreCase("timescaledb")) {101 databaseQuery = "SELECT CURRENT_DATABASE()";102 }103 result = new QueryRunner(dataSource).query(databaseQuery, rs -> {104 rs.next();105 String resultDB = rs.getString(1);106 assertEquals("Database name from URL String is used.", "databasename", resultDB);107 return true;108 });109 assertTrue("The database returned a record as expected", result);110 }111 private void performTestForCharacterEncodingForInitialScriptConnection(HikariDataSource dataSource) throws SQLException {112 boolean result = new QueryRunner(dataSource).query("SELECT foo FROM bar WHERE foo LIKE '%мир'", rs -> {113 rs.next();114 String resultSetString = rs.getString(1);115 assertEquals("A SELECT query succeed and the correct charset has been applied for the init script", "привет мир", resultSetString);116 return true;117 });118 assertTrue("The database returned a record as expected", result);119 }120 /**121 * This method intentionally verifies encoding twice to ensure that the query string parameters are used when122 * Connections are created from cached containers.123 *124 * @param jdbcUrl125 * @throws SQLException126 */127 private void performSimpleTestWithCharacterSet(String jdbcUrl) throws SQLException {128 HikariDataSource datasource1 = verifyCharacterSet(jdbcUrl);129 HikariDataSource datasource2 = verifyCharacterSet(jdbcUrl);130 datasource1.close();131 datasource2.close();132 }133 private HikariDataSource verifyCharacterSet(String jdbcUrl) throws SQLException {134 HikariDataSource dataSource = getDataSource(jdbcUrl, 1);135 boolean result = new QueryRunner(dataSource).query("SHOW VARIABLES LIKE 'character\\_set\\_connection'", rs -> {136 rs.next();137 String resultSetString = rs.getString(2);138 assertTrue("Passing query parameters to set DB connection encoding is successful", resultSetString.startsWith("utf8"));139 return true;140 });141 assertTrue("The database returned a record as expected", result);142 return dataSource;143 }144 private void performTestForCustomIniFile(HikariDataSource dataSource) throws SQLException {145 assumeFalse(SystemUtils.IS_OS_WINDOWS);146 Statement statement = dataSource.getConnection().createStatement();147 statement.execute("SELECT @@GLOBAL.innodb_file_format");148 ResultSet resultSet = statement.getResultSet();149 assertTrue("The query returns a result", resultSet.next());150 String result = resultSet.getString(1);151 assertEquals("The InnoDB file format has been set by the ini file content", "Barracuda", result);152 }153 private HikariDataSource getDataSource(String jdbcUrl, int poolSize) {154 HikariConfig hikariConfig = new HikariConfig();155 hikariConfig.setJdbcUrl(jdbcUrl);156 hikariConfig.setConnectionTestQuery("SELECT 1");157 hikariConfig.setMinimumIdle(1);158 hikariConfig.setMaximumPoolSize(poolSize);...

Full Screen

Full Screen

performTestForCustomIniFile

Using AI Code Generation

copy

Full Screen

1package org.testcontainers.jdbc;2import org.junit.Test;3import org.testcontainers.containers.JdbcDatabaseContainer;4public class DriverTest extends AbstractJDBCDriverTest {5 protected JdbcDatabaseContainer createContainer() {6 return new MySQLContainer("mysql:5.7.22");7 }8 public void testCustomIniFile() {9 performTestForCustomIniFile();10 }11}12 2019-03-12 23:10:54.247 INFO 11680 --- [ main] o.t.jdbc.AbstractJDBCDriverTest : Starting DriverTest on DESKTOP-9B4C7F0 with PID 11680 (started by Arun in C:\Users\Arun\testcontainers)13 2019-03-12 23:10:54.251 INFO 11680 --- [ main] o.t.jdbc.AbstractJDBCDriverTest : Started DriverTest in 0.011 seconds (JVM running for 0.012)

Full Screen

Full Screen

performTestForCustomIniFile

Using AI Code Generation

copy

Full Screen

1File tempFile = File.createTempFile("testcontainers", ".ini");2tempFile.deleteOnExit();3try (FileOutputStream fos = new FileOutputStream(tempFile)) {4 fos.write(customIni.getBytes());5}6performTestForCustomIniFile(tempFile.getAbsolutePath(), "testcontainers");

Full Screen

Full Screen

performTestForCustomIniFile

Using AI Code Generation

copy

Full Screen

1 System.out.println("testing with custom ini file");2 performTestForCustomIniFile("custom.ini");3 System.out.println("testing with custom ini file completed");4 }5 private void performTestForCustomIniFile(String iniFileName) {6 URL resource = getClass().getClassLoader().getResource(iniFileName);7 if (resource == null) {8 throw new IllegalStateException("Unable to find " + iniFileName + " on the classpath");9 }10 String iniFilePath = resource.getPath();11 Driver driver = new Driver();12 Properties properties = new Properties();13 properties.setProperty("iniFilePath", iniFilePath);14 assertNotNull(connection);15 Statement statement = connection.createStatement();16 ResultSet resultSet = statement.executeQuery("SELECT 1 FROM SYSIBM.SYSDUMMY1");17 assertNotNull(resultSet);18 assertTrue(resultSet.next());19 resultSet.close();20 statement.close();21 connection.close();22 }23}

Full Screen

Full Screen

performTestForCustomIniFile

Using AI Code Generation

copy

Full Screen

1 public void testMySQL() throws Exception {2 performTestForCustomIniFile("mysql.ini");3 }4}5[ERROR] testMySQL(org.testcontainers.jdbc.MySQLDriverTest) Time elapsed: 0.005 s <<< ERROR!6 at org.testcontainers.jdbc.AbstractJDBCDriverTest.performTestForCustomIniFile(AbstractJDBCDriverTest.java:82)7 at org.testcontainers.jdbc.MySQLDriverTest.testMySQL(MySQLDriverTest.java:11)

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful