Description
In SOLR-9893 I disabled all tests on Java 9 that use EasyMock, because Easymock is not compatible with Java 9 (it uses outdated cglib version that does not work with Jigsaw module system). To me the project seems dead (no releases since more than 2 years).
Mockito latest version is compatible to Java 9 because it no longer uses cglib and the more modern and powerful Byte-Buddy lib; SOLR-9893 updated to it.
I found this about more or less "automated rewrite" of EasyMock tests to Mockito:
- https://wiki.magnolia-cms.com/display/DEV/Converting+Easymock-Tests+to+Mockito
- A script doing this: https://gist.github.com/stefanbirkner/1095194/904909cc229b6acb55c18f529e396089129e20e9
It is not many tests, so this would be a great cleanup:
- core/src/test/org/apache/solr/cloud/ClusterStateTest.java
- core/src/test/org/apache/solr/cloud/OverseerCollectionConfigSetProcessorTest.java
- core/src/test/org/apache/solr/core/BlobRepositoryMockingTest.java
- core/src/test/org/apache/solr/core/CoreSorterTest.java
- core/src/test/org/apache/solr/security/TestPKIAuthenticationPlugin.java
- core/src/test/org/apache/solr/servlet/SolrRequestParserTest.java
- solrj/src/test/org/apache/solr/client/solrj/impl/CloudSolrClientCacheTest.java
There is one special case:
- contrib/dataimporthandler/src/test/org/apache/solr/handler/dataimport/TestJdbcDataSource.java
I am not sure how to convert this one, because it uses some strange system properties and a handler that intercepts some EasyMock stuff. I may need help to convert that one!
After this is resolved we can remove the following dependencies from Solr:
- cglib-nodep
- easymock
Attachments
Attachments
Issue Links
- is related to
-
SOLR-10235 fix last TestJdbcDataSource / mock issue with java9
- Closed
- relates to
-
SOLR-9893 EasyMock/Mockito no longer works with Java 9 b148+
- Resolved