Search in sources :

Example 1 with ScrobbledTracksClient

use of com.github.hakko.musiccabinet.ws.lastfm.ScrobbledTracksClient in project musiccabinet by hakko.

the class ScrobbledTracksServiceTest method getScrobbledTracksClient.

@SuppressWarnings("unchecked")
private ScrobbledTracksClient getScrobbledTracksClient() throws IOException {
    // create a HistoryDao that allows all calls
    WebserviceHistoryService historyService = mock(WebserviceHistoryService.class);
    when(historyService.isWebserviceInvocationAllowed(Mockito.any(WebserviceInvocation.class))).thenReturn(true);
    // create a HTTP client that always returns sampled scrobbled tracks from last.fm
    HttpClient httpClient = mock(HttpClient.class);
    ClientConnectionManager connectionManager = mock(ClientConnectionManager.class);
    when(httpClient.getConnectionManager()).thenReturn(connectionManager);
    String httpResponse = new ResourceUtil(SCROBBLED_TRACKS).getContent();
    when(httpClient.execute(Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class))).thenReturn(httpResponse);
    // create a client out of the components above
    ScrobbledTracksClient stClient = new ScrobbledTracksClient();
    stClient.setWebserviceHistoryService(historyService);
    stClient.setHttpClient(httpClient);
    // create a throttling service that allows calls at any rate
    ThrottleService throttleService = mock(ThrottleService.class);
    stClient.setThrottleService(throttleService);
    return stClient;
}
Also used : HttpUriRequest(org.apache.http.client.methods.HttpUriRequest) ResourceUtil(com.github.hakko.musiccabinet.util.ResourceUtil) ResponseHandler(org.apache.http.client.ResponseHandler) HttpClient(org.apache.http.client.HttpClient) ThrottleService(com.github.hakko.musiccabinet.service.lastfm.ThrottleService) WebserviceInvocation(com.github.hakko.musiccabinet.domain.model.library.WebserviceInvocation) ScrobbledTracksClient(com.github.hakko.musiccabinet.ws.lastfm.ScrobbledTracksClient) ClientConnectionManager(org.apache.http.conn.ClientConnectionManager)

Example 2 with ScrobbledTracksClient

use of com.github.hakko.musiccabinet.ws.lastfm.ScrobbledTracksClient in project musiccabinet by hakko.

the class ScrobbledTracksServiceTest method updatesScrobbledTracks.

@Test
public void updatesScrobbledTracks() throws IOException, ApplicationException {
    ScrobbledTracksClient scrobbledTracksClient = getScrobbledTracksClient();
    scrobbledTracksService.setScrobbledTracksClient(scrobbledTracksClient);
    scrobbledTracksService.updateSearchIndex();
}
Also used : ScrobbledTracksClient(com.github.hakko.musiccabinet.ws.lastfm.ScrobbledTracksClient) Test(org.junit.Test)

Aggregations

ScrobbledTracksClient (com.github.hakko.musiccabinet.ws.lastfm.ScrobbledTracksClient)2 WebserviceInvocation (com.github.hakko.musiccabinet.domain.model.library.WebserviceInvocation)1 ThrottleService (com.github.hakko.musiccabinet.service.lastfm.ThrottleService)1 ResourceUtil (com.github.hakko.musiccabinet.util.ResourceUtil)1 HttpClient (org.apache.http.client.HttpClient)1 ResponseHandler (org.apache.http.client.ResponseHandler)1 HttpUriRequest (org.apache.http.client.methods.HttpUriRequest)1 ClientConnectionManager (org.apache.http.conn.ClientConnectionManager)1 Test (org.junit.Test)1