Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Unite test failing - for com.day.commons.httpclient

Avatar

Level 4

Hi All,

 

We have upgraded our AEM version from 6.2 to 6.5.6. While updating our codebase we observed that our unit test cases are failing for com.day.commons.httpclient class showing below error : 

java.lang.NoClassDefFoundError: com/day/commons/httpclient/impl/ProxyWrapper

at org.apache.commons.httpclient.HttpState.<init>(HttpState.java:114)
at org.apache.commons.httpclient.HttpClient.<init>(HttpClient.java:183)
at org.apache.commons.httpclient.HttpClient.<init>(HttpClient.java:97)

 

Unite test code looks like below : 

@Test
public void provideHttpClient_singleton() {

Injector injector = Guice.createInjector(peaberryRssClientModule);

HttpClient httpClientA = injector.getInstance(HttpClient.class);
HttpClient httpClientB = injector.getInstance(HttpClient.class);

assertEquals(httpClientA, httpClientB);

}

 

I assume that Uber 6.5 jar provide httpclient version of 4.5.2 and due to which it it giving error for HttpState(which is deprecated list of AEM 6.5). Any quick solution to fix this?

6 Replies

Avatar

Community Advisor

It is better to rewrite http client code to newer version of apache.http(4.x).

How about your regular class functionality?

Avatar

Level 4
Hi Suresh, Thank you for your comment. My regular classes looks to be working fine with import org.apache.commons.httpclient.HttpClient. It is just an issue with my unit test cases which are failing currently.

Avatar

Community Advisor
If the issue only with Unit tests, can't you ignore for this class?, if not, the only option is to update the depricated classes

Avatar

Level 4
Hi Suresh, for now we have added the Ignore annotation only but we would be happy to fix this. Issue is I am not sure why it is only breaking in unit test only. Also we are hesitant to modify any regular code just to fix unit test.

Avatar

Level 1

Hi Ashish is the issue fixed, please let me know as i am facing similar issue

 

Avatar

Level 1

can you please suggest if you are able to find the fix for same ?