use of com.braintreepayments.testutils.TestConfigurationBuilder in project braintree_android by braintree.
the class BraintreeFragmentUnitTest method getBraintreeApiHttpClient_returnsExistingClientIfOneExists.
@Test
public void getBraintreeApiHttpClient_returnsExistingClientIfOneExists() throws Exception {
String configuration = new TestConfigurationBuilder().braintreeApi(new TestBraintreeApiConfigurationBuilder().accessToken("some-token").url("http://braintree-api.com")).build();
mockConfigurationManager(Configuration.fromJson(configuration));
BraintreeFragment fragment = BraintreeFragment.newInstance(mActivity, TOKENIZATION_KEY);
HttpClient client = fragment.getBraintreeApiHttpClient();
HttpClient client2 = fragment.getBraintreeApiHttpClient();
assertSame(client, client2);
}
use of com.braintreepayments.testutils.TestConfigurationBuilder in project braintree_android by braintree.
the class BraintreeFragmentUnitTest method getBraintreeApiHttpClient_returnsNull_whenNotPresent.
@Test
public void getBraintreeApiHttpClient_returnsNull_whenNotPresent() throws InvalidArgumentException, JSONException {
String configuration = new TestConfigurationBuilder().build();
mockConfigurationManager(Configuration.fromJson(configuration));
BraintreeFragment fragment = BraintreeFragment.newInstance(mActivity, TOKENIZATION_KEY);
assertNull(fragment.getBraintreeApiHttpClient());
}
use of com.braintreepayments.testutils.TestConfigurationBuilder in project braintree_android by braintree.
the class DataCollectorUnitTest method collectDeviceData_sendsAnalyticsEventsWhenSuccessful.
@Test
public void collectDeviceData_sendsAnalyticsEventsWhenSuccessful() throws InterruptedException {
final CountDownLatch latch = new CountDownLatch(1);
final BraintreeFragment fragment = new MockFragmentBuilder().configuration(new TestConfigurationBuilder().kount(new TestKountConfigurationBuilder().kountMerchantId("600000")).build()).build();
final com.kount.api.DataCollector mockDataCollector = mock(com.kount.api.DataCollector.class);
doAnswer(new Answer() {
@Override
public Object answer(InvocationOnMock invocation) throws Throwable {
((CompletionHandler) invocation.getArguments()[1]).completed((String) invocation.getArguments()[0]);
return null;
}
}).when(mockDataCollector).collectForSession(anyString(), any(CompletionHandler.class));
mockStatic(com.kount.api.DataCollector.class);
doAnswer(new Answer<Object>() {
@Override
public Object answer(InvocationOnMock invocation) throws Throwable {
return mockDataCollector;
}
}).when(com.kount.api.DataCollector.class);
com.kount.api.DataCollector.getInstance();
DataCollector.collectDeviceData(fragment, new BraintreeResponseListener<String>() {
@Override
public void onResponse(String s) {
verify(fragment).sendAnalyticsEvent("data-collector.kount.started");
verify(fragment).sendAnalyticsEvent("data-collector.kount.succeeded");
latch.countDown();
}
});
latch.await();
}
use of com.braintreepayments.testutils.TestConfigurationBuilder in project braintree_android by braintree.
the class VenmoUnitTest method authorizeAccount_postsExceptionWhenNotEnabled.
@Test
public void authorizeAccount_postsExceptionWhenNotEnabled() throws JSONException {
Configuration configuration = new TestConfigurationBuilder().buildConfiguration();
BraintreeFragment fragment = new MockFragmentBuilder().configuration(configuration).build();
Venmo.authorizeAccount(fragment, false);
ArgumentCaptor<AppSwitchNotAvailableException> captor = ArgumentCaptor.forClass(AppSwitchNotAvailableException.class);
verify(fragment).postCallback(captor.capture());
assertEquals("Venmo is not enabled", captor.getValue().getMessage());
}
use of com.braintreepayments.testutils.TestConfigurationBuilder in project braintree_android by braintree.
the class DataCollectorTest method collectDeviceData_withListener_usesDirectMerchantId.
@Test(timeout = 10000)
public void collectDeviceData_withListener_usesDirectMerchantId() throws InterruptedException {
String configuration = new TestConfigurationBuilder().kount(new TestKountConfigurationBuilder().kountMerchantId("600000")).build();
BraintreeFragment fragment = getFragmentWithConfiguration(mActivity, configuration);
DataCollector.collectDeviceData(fragment, "600001", new BraintreeResponseListener<String>() {
@Override
public void onResponse(String deviceData) {
try {
JSONObject json = new JSONObject(deviceData);
assertFalse(TextUtils.isEmpty(json.getString("device_session_id")));
assertEquals("600001", json.getString("fraud_merchant_id"));
assertNotNull(json.getString("correlation_id"));
} catch (JSONException e) {
fail(e.getMessage());
}
mCountDownLatch.countDown();
}
});
mCountDownLatch.await();
}
Aggregations