use of com.microsoft.appcenter.http.HttpClientNetworkStateHandler in project AppCenter-SDK-Android by Microsoft.
the class DistributeCustomizationTest method mockForCustomizationTest.
private ReleaseDetails mockForCustomizationTest(boolean mandatory) throws Exception {
/* Mock http call. */
HttpClientNetworkStateHandler httpClient = mock(HttpClientNetworkStateHandler.class);
whenNew(HttpClientNetworkStateHandler.class).withAnyArguments().thenReturn(httpClient);
when(httpClient.callAsync(anyString(), anyString(), anyMapOf(String.class, String.class), any(HttpClient.CallTemplate.class), any(ServiceCallback.class))).thenAnswer(new Answer<ServiceCall>() {
@Override
public ServiceCall answer(InvocationOnMock invocation) throws Throwable {
((ServiceCallback) invocation.getArguments()[4]).onCallSucceeded("mock");
return mock(ServiceCall.class);
}
});
/* Mock data model. */
mockStatic(ReleaseDetails.class);
ReleaseDetails details = mock(ReleaseDetails.class);
when(details.getId()).thenReturn(1);
when(details.getVersion()).thenReturn(10);
when(details.getShortVersion()).thenReturn("2.3.4");
when(details.isMandatoryUpdate()).thenReturn(mandatory);
when(ReleaseDetails.parse(anyString())).thenReturn(details);
/* Mock update token. */
when(StorageHelper.PreferencesStorage.getString(PREFERENCE_KEY_UPDATE_TOKEN)).thenReturn("some token");
return details;
}
use of com.microsoft.appcenter.http.HttpClientNetworkStateHandler in project AppCenter-SDK-Android by Microsoft.
the class DistributeHttpTest method getCallTemplate.
private HttpClient.CallTemplate getCallTemplate(String appSecret, String apiToken) throws Exception {
/* Configure mock HTTP to get an instance of IngestionCallTemplate. */
Distribute.getInstance().onStarting(mAppCenterHandler);
Distribute.getInstance().onStarted(mContext, appSecret, mock(Channel.class));
final ServiceCall call = mock(ServiceCall.class);
final AtomicReference<HttpClient.CallTemplate> callTemplate = new AtomicReference<>();
mockStatic(NetworkStateHelper.class);
when(NetworkStateHelper.getSharedInstance(any(Context.class))).thenReturn(mock(NetworkStateHelper.class));
HttpClientNetworkStateHandler httpClient = mock(HttpClientNetworkStateHandler.class);
whenNew(HttpClientNetworkStateHandler.class).withAnyArguments().thenReturn(httpClient);
when(httpClient.callAsync(anyString(), anyString(), anyMapOf(String.class, String.class), any(HttpClient.CallTemplate.class), any(ServiceCallback.class))).then(new Answer<ServiceCall>() {
@Override
public ServiceCall answer(InvocationOnMock invocation) throws Throwable {
callTemplate.set((HttpClient.CallTemplate) invocation.getArguments()[3]);
return call;
}
});
Distribute.getInstance().getLatestReleaseDetails("mockGroup", apiToken);
return callTemplate.get();
}
use of com.microsoft.appcenter.http.HttpClientNetworkStateHandler in project AppCenter-SDK-Android by Microsoft.
the class DistributeWarnUnknownSourcesTest method setUpDialog.
@Before
public void setUpDialog() throws Exception {
/* Mock we already have redirection parameters. */
when(PreferencesStorage.getString(PREFERENCE_KEY_DISTRIBUTION_GROUP_ID)).thenReturn("some group");
when(PreferencesStorage.getString(PREFERENCE_KEY_UPDATE_TOKEN)).thenReturn("some token");
HttpClientNetworkStateHandler httpClient = mock(HttpClientNetworkStateHandler.class);
whenNew(HttpClientNetworkStateHandler.class).withAnyArguments().thenReturn(httpClient);
when(httpClient.callAsync(anyString(), anyString(), anyMapOf(String.class, String.class), any(HttpClient.CallTemplate.class), any(ServiceCallback.class))).thenAnswer(new Answer<ServiceCall>() {
@Override
public ServiceCall answer(InvocationOnMock invocation) throws Throwable {
((ServiceCallback) invocation.getArguments()[4]).onCallSucceeded("mock");
return mock(ServiceCall.class);
}
});
ReleaseDetails releaseDetails = mock(ReleaseDetails.class);
when(releaseDetails.getId()).thenReturn(4);
when(releaseDetails.getVersion()).thenReturn(7);
when(releaseDetails.isMandatoryUpdate()).thenReturn(mMandatoryUpdate);
when(ReleaseDetails.parse(anyString())).thenReturn(releaseDetails);
/* Trigger call. */
start();
Distribute.getInstance().onActivityResumed(mFirstActivity);
/* Mock second dialog. */
when(mDialogBuilder.create()).thenReturn(mUnknownSourcesDialog);
doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
when(mUnknownSourcesDialog.isShowing()).thenReturn(true);
return null;
}
}).when(mUnknownSourcesDialog).show();
doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
when(mUnknownSourcesDialog.isShowing()).thenReturn(false);
return null;
}
}).when(mUnknownSourcesDialog).hide();
/* Click on first dialog. */
ArgumentCaptor<DialogInterface.OnClickListener> clickListener = ArgumentCaptor.forClass(DialogInterface.OnClickListener.class);
verify(mDialogBuilder).setPositiveButton(eq(R.string.appcenter_distribute_update_dialog_download), clickListener.capture());
clickListener.getValue().onClick(mDialog, DialogInterface.BUTTON_POSITIVE);
when(mDialog.isShowing()).thenReturn(false);
/* Second should show. */
verify(mUnknownSourcesDialog).show();
}
use of com.microsoft.appcenter.http.HttpClientNetworkStateHandler in project AppCenter-SDK-Android by Microsoft.
the class AbstractDistributeAfterDownloadTest method setUpDownload.
void setUpDownload(boolean mandatoryUpdate) throws Exception {
/* Allow unknown sources. */
when(InstallerUtils.isUnknownSourcesEnabled(any(Context.class))).thenReturn(true);
/* Mock download manager. */
when(mContext.getSystemService(Context.DOWNLOAD_SERVICE)).thenReturn(mDownloadManager);
whenNew(DownloadManager.Request.class).withAnyArguments().thenReturn(mDownloadRequest);
when(mDownloadManager.enqueue(mDownloadRequest)).thenReturn(DOWNLOAD_ID);
/* Mock notification manager. */
when(mContext.getSystemService(NOTIFICATION_SERVICE)).thenReturn(mNotificationManager);
/* Mock updates to storage. */
doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
when(PreferencesStorage.getLong(invocation.getArguments()[0].toString(), INVALID_DOWNLOAD_IDENTIFIER)).thenReturn((Long) invocation.getArguments()[1]);
return null;
}
}).when(PreferencesStorage.class);
PreferencesStorage.putLong(eq(PREFERENCE_KEY_DOWNLOAD_ID), anyLong());
doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
when(PreferencesStorage.getLong(invocation.getArguments()[0].toString(), INVALID_DOWNLOAD_IDENTIFIER)).thenReturn(INVALID_DOWNLOAD_IDENTIFIER);
return null;
}
}).when(PreferencesStorage.class);
PreferencesStorage.remove(PREFERENCE_KEY_DOWNLOAD_ID);
doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
when(PreferencesStorage.getInt(invocation.getArguments()[0].toString(), DOWNLOAD_STATE_COMPLETED)).thenReturn((Integer) invocation.getArguments()[1]);
return null;
}
}).when(PreferencesStorage.class);
PreferencesStorage.putInt(eq(PREFERENCE_KEY_DOWNLOAD_STATE), anyInt());
doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
when(PreferencesStorage.getInt(invocation.getArguments()[0].toString(), DOWNLOAD_STATE_COMPLETED)).thenReturn(DOWNLOAD_STATE_COMPLETED);
return null;
}
}).when(PreferencesStorage.class);
PreferencesStorage.remove(PREFERENCE_KEY_DOWNLOAD_STATE);
doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
when(PreferencesStorage.getString(invocation.getArguments()[0].toString())).thenReturn(invocation.getArguments()[1].toString());
return null;
}
}).when(PreferencesStorage.class);
PreferencesStorage.putString(eq(PREFERENCE_KEY_RELEASE_DETAILS), anyString());
doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
when(PreferencesStorage.getString(invocation.getArguments()[0].toString())).thenReturn(null);
return null;
}
}).when(PreferencesStorage.class);
PreferencesStorage.remove(PREFERENCE_KEY_RELEASE_DETAILS);
/* Mock everything that triggers a download. */
when(PreferencesStorage.getString(PREFERENCE_KEY_DISTRIBUTION_GROUP_ID)).thenReturn("some group");
when(PreferencesStorage.getString(PREFERENCE_KEY_UPDATE_TOKEN)).thenReturn("some token");
HttpClientNetworkStateHandler httpClient = mock(HttpClientNetworkStateHandler.class);
whenNew(HttpClientNetworkStateHandler.class).withAnyArguments().thenReturn(httpClient);
when(httpClient.callAsync(anyString(), anyString(), anyMapOf(String.class, String.class), any(HttpClient.CallTemplate.class), any(ServiceCallback.class))).thenAnswer(new Answer<ServiceCall>() {
@Override
public ServiceCall answer(InvocationOnMock invocation) throws Throwable {
((ServiceCallback) invocation.getArguments()[4]).onCallSucceeded("mock");
return mock(ServiceCall.class);
}
});
ReleaseDetails releaseDetails = mock(ReleaseDetails.class);
when(releaseDetails.getId()).thenReturn(4);
when(releaseDetails.getVersion()).thenReturn(7);
when(releaseDetails.getDownloadUrl()).thenReturn(mDownloadUrl);
when(releaseDetails.isMandatoryUpdate()).thenReturn(mandatoryUpdate);
when(ReleaseDetails.parse(anyString())).thenReturn(releaseDetails);
mockStatic(AsyncTaskUtils.class);
start();
Distribute.getInstance().onActivityResumed(mActivity);
/* Mock download asyncTask. */
mDownloadBeforeSemaphore = new Semaphore(0);
mDownloadAfterSemaphore = new Semaphore(0);
mDownloadTask = new AtomicReference<>();
when(AsyncTaskUtils.execute(anyString(), argThat(new ArgumentMatcher<DownloadTask>() {
@Override
public boolean matches(Object argument) {
return argument instanceof DownloadTask;
}
}), Mockito.<Void>anyVararg())).then(new Answer<DownloadTask>() {
@Override
public DownloadTask answer(InvocationOnMock invocation) throws Throwable {
final DownloadTask task = spy((DownloadTask) invocation.getArguments()[1]);
mDownloadTask.set(task);
new Thread() {
@Override
public void run() {
mDownloadBeforeSemaphore.acquireUninterruptibly();
task.doInBackground(null);
mDownloadAfterSemaphore.release();
}
}.start();
return task;
}
});
/* Mock remove download async task. */
when(AsyncTaskUtils.execute(anyString(), argThat(new ArgumentMatcher<RemoveDownloadTask>() {
@Override
public boolean matches(Object argument) {
return argument instanceof RemoveDownloadTask;
}
}), Mockito.<Void>anyVararg())).then(new Answer<RemoveDownloadTask>() {
@Override
public RemoveDownloadTask answer(InvocationOnMock invocation) throws Throwable {
final RemoveDownloadTask task = (RemoveDownloadTask) invocation.getArguments()[1];
task.doInBackground();
return task;
}
});
/* Mock download completion async task. */
mCheckDownloadBeforeSemaphore = new Semaphore(0);
mCheckDownloadAfterSemaphore = new Semaphore(0);
mCompletionTask = new AtomicReference<>();
when(AsyncTaskUtils.execute(anyString(), argThat(sCheckCompleteTask), Mockito.<Void>anyVararg())).then(new Answer<CheckDownloadTask>() {
@Override
public CheckDownloadTask answer(InvocationOnMock invocation) throws Throwable {
final CheckDownloadTask task = spy((CheckDownloadTask) invocation.getArguments()[1]);
mCompletionTask.set(task);
new Thread() {
@Override
public void run() {
mCheckDownloadBeforeSemaphore.acquireUninterruptibly();
task.onPostExecute(task.doInBackground());
mCheckDownloadAfterSemaphore.release();
}
}.start();
return task;
}
});
/* Click on dialog. */
ArgumentCaptor<DialogInterface.OnClickListener> clickListener = ArgumentCaptor.forClass(DialogInterface.OnClickListener.class);
verify(mDialogBuilder).setPositiveButton(eq(R.string.appcenter_distribute_update_dialog_download), clickListener.capture());
clickListener.getValue().onClick(mDialog, DialogInterface.BUTTON_POSITIVE);
}
use of com.microsoft.appcenter.http.HttpClientNetworkStateHandler in project AppCenter-SDK-Android by Microsoft.
the class IngestionHttpTest method failedSerialization.
@Test
public void failedSerialization() throws Exception {
/* Build some payload. */
LogContainer container = new LogContainer();
Log log = mock(Log.class);
List<Log> logs = new ArrayList<>();
logs.add(log);
container.setLogs(logs);
LogSerializer serializer = mock(LogSerializer.class);
JSONException exception = new JSONException("mock");
when(serializer.serializeContainer(any(LogContainer.class))).thenThrow(exception);
/* Configure mock HTTP. */
HttpClientNetworkStateHandler httpClient = mock(HttpClientNetworkStateHandler.class);
whenNew(HttpClientNetworkStateHandler.class).withAnyArguments().thenReturn(httpClient);
final ServiceCall call = mock(ServiceCall.class);
final AtomicReference<HttpClient.CallTemplate> callTemplate = new AtomicReference<>();
when(httpClient.callAsync(anyString(), anyString(), anyMapOf(String.class, String.class), any(HttpClient.CallTemplate.class), any(ServiceCallback.class))).then(new Answer<ServiceCall>() {
@Override
public ServiceCall answer(InvocationOnMock invocation) throws Throwable {
callTemplate.set((HttpClient.CallTemplate) invocation.getArguments()[3]);
return call;
}
});
/* Test calling code. */
IngestionHttp ingestionHttp = new IngestionHttp(mock(Context.class), serializer);
ingestionHttp.setLogUrl("http://mock");
String appSecret = UUIDUtils.randomUUID().toString();
UUID installId = UUIDUtils.randomUUID();
ServiceCallback serviceCallback = mock(ServiceCallback.class);
assertEquals(call, ingestionHttp.sendAsync(appSecret, installId, container, serviceCallback));
/* Verify call to http client. */
HashMap<String, String> expectedHeaders = new HashMap<>();
expectedHeaders.put(IngestionHttp.APP_SECRET, appSecret);
expectedHeaders.put(IngestionHttp.INSTALL_ID, installId.toString());
verify(httpClient).callAsync(eq("http://mock/logs?api-version=1.0.0"), eq(METHOD_POST), eq(expectedHeaders), notNull(HttpClient.CallTemplate.class), eq(serviceCallback));
assertNotNull(callTemplate.get());
try {
callTemplate.get().buildRequestBody();
Assert.fail("Expected json exception");
} catch (JSONException ignored) {
}
/* Verify close. */
ingestionHttp.close();
verify(httpClient).close();
}
Aggregations