Created
February 6, 2019 01:35
-
-
Save ahmedahamid/01eea1260b6c1000f4a41c1b381f710b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tests run: 279, Failures: 2, Errors: 0, Skipped: 236, Time elapsed: 17.924 sec <<< FAILURE! - in TestSuite | |
setUp(com.github.shyiko.mysql.binlog.BinaryLogClientGTIDIntegrationTest) Time elapsed: 0.759 sec <<< FAILURE! | |
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure | |
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) | |
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) | |
at java.lang.reflect.Constructor.newInstance(Constructor.java:423) | |
at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) | |
at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1117) | |
at com.mysql.jdbc.MysqlIO.readPacket(MysqlIO.java:668) | |
at com.mysql.jdbc.MysqlIO.doHandshake(MysqlIO.java:1078) | |
at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2397) | |
at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2430) | |
at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2215) | |
at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:813) | |
at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:47) | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) | |
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) | |
at java.lang.reflect.Constructor.newInstance(Constructor.java:423) | |
at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) | |
at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:399) | |
at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:334) | |
at java.sql.DriverManager.getConnection(DriverManager.java:664) | |
at java.sql.DriverManager.getConnection(DriverManager.java:247) | |
at com.github.shyiko.mysql.binlog.BinaryLogClientIntegrationTest$MySQLConnection.connect(BinaryLogClientIntegrationTest.java:1065) | |
at com.github.shyiko.mysql.binlog.BinaryLogClientIntegrationTest$MySQLConnection.<init>(BinaryLogClientIntegrationTest.java:1061) | |
at com.github.shyiko.mysql.binlog.BinaryLogClientIntegrationTest.setUp(BinaryLogClientIntegrationTest.java:121) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:498) | |
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:84) | |
at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:564) | |
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:213) | |
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:138) | |
at org.testng.internal.TestMethodWorker.invokeBeforeClassMethods(TestMethodWorker.java:175) | |
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:107) | |
at org.testng.TestRunner.privateRun(TestRunner.java:767) | |
at org.testng.TestRunner.run(TestRunner.java:617) | |
at org.testng.SuiteRunner.runTest(SuiteRunner.java:334) | |
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329) | |
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291) | |
at org.testng.SuiteRunner.run(SuiteRunner.java:240) | |
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) | |
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) | |
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1224) | |
at org.testng.TestNG.runSuitesLocally(TestNG.java:1149) | |
at org.testng.TestNG.run(TestNG.java:1057) | |
at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:69) | |
at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeMulti(TestNGDirectoryTestSuite.java:181) | |
at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestNGDirectoryTestSuite.java:99) | |
at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:113) | |
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) | |
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) | |
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) | |
Caused by: java.io.EOFException: Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. | |
at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3017) | |
at com.mysql.jdbc.MysqlIO.readPacket(MysqlIO.java:592) | |
at com.mysql.jdbc.MysqlIO.doHandshake(MysqlIO.java:1078) | |
at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2397) | |
at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2430) | |
at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2215) | |
at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:813) | |
at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:47) | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) | |
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) | |
at java.lang.reflect.Constructor.newInstance(Constructor.java:423) | |
at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) | |
at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:399) | |
at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:334) | |
at java.sql.DriverManager.getConnection(DriverManager.java:664) | |
at java.sql.DriverManager.getConnection(DriverManager.java:247) | |
at com.github.shyiko.mysql.binlog.BinaryLogClientIntegrationTest$MySQLConnection.connect(BinaryLogClientIntegrationTest.java:1065) | |
at com.github.shyiko.mysql.binlog.BinaryLogClientIntegrationTest$MySQLConnection.<init>(BinaryLogClientIntegrationTest.java:1061) | |
at com.github.shyiko.mysql.binlog.BinaryLogClientIntegrationTest.setUp(BinaryLogClientIntegrationTest.java:121) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:498) | |
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:84) | |
at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:564) | |
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:213) | |
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:138) | |
at org.testng.internal.TestMethodWorker.invokeBeforeClassMethods(TestMethodWorker.java:175) | |
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:107) | |
at org.testng.TestRunner.privateRun(TestRunner.java:767) | |
at org.testng.TestRunner.run(TestRunner.java:617) | |
at org.testng.SuiteRunner.runTest(SuiteRunner.java:334) | |
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329) | |
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291) | |
at org.testng.SuiteRunner.run(SuiteRunner.java:240) | |
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) | |
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) | |
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1224) | |
at org.testng.TestNG.runSuitesLocally(TestNG.java:1149) | |
at org.testng.TestNG.run(TestNG.java:1057) | |
at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:69) | |
at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeMulti(TestNGDirectoryTestSuite.java:181) | |
at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestNGDirectoryTestSuite.java:99) | |
at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:113) | |
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) | |
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) | |
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) | |
disableGTID(com.github.shyiko.mysql.binlog.BinaryLogClientGTIDIntegrationTest) Time elapsed: 0.02 sec <<< FAILURE! | |
java.lang.NullPointerException: null | |
at com.github.shyiko.mysql.binlog.BinaryLogClientGTIDIntegrationTest.disableGTID(BinaryLogClientGTIDIntegrationTest.java:63) | |
Results : | |
Failed tests: | |
BinaryLogClientGTIDIntegrationTest>BinaryLogClientIntegrationTest.setUp:121 » Communications | |
BinaryLogClientGTIDIntegrationTest.disableGTID:63 NullPointer | |
Tests run: 279, Failures: 2, Errors: 0, Skipped: 236 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment