use of com.amazonaws.mobileconnectors.pinpoint.internal.core.system.MockSystem in project aws-sdk-android by aws-amplify.
the class AWSErsLocaleTestBase method setupForRepeatedTestCase.
@Override
public void setupForRepeatedTestCase() {
Context mockAndroidContext = new ContextWithPermissions(new Activity());
AWSCredentialsProvider provider = new AWSCredentialsProvider() {
AWSCredentials creds = new AnonymousAWSCredentials();
@Override
public AWSCredentials getCredentials() {
return creds;
}
@Override
public void refresh() {
}
};
mockConfiguration = mock(AndroidPreferencesConfiguration.class);
PinpointConfiguration options = new PinpointConfiguration(mockAndroidContext, UNIQUE_ID, Regions.US_EAST_1, ChannelType.GCM, provider);
context = new AnalyticsContextBuilder().withSdkInfo(SDK_NAME, SDK_VERSION).withUniqueIdValue(UNIQUE_ID).withContext(RuntimeEnvironment.application.getApplicationContext()).withSystem(new MockSystem("HELLO.world")).withConfiguration(mockConfiguration).build();
AnalyticsClient analyticsClient = new AnalyticsClient(context);
TargetingClient targetingClient = new TargetingClient(context);
context.setAnalyticsClient(analyticsClient);
context.setTargetingClient(targetingClient);
SessionClient isc = new SessionClient(context);
PinpointConfiguration config = new PinpointConfiguration(mockAndroidContext, UNIQUE_ID, Regions.US_EAST_1, ChannelType.GCM, provider);
instance = new PinpointManager(config);
}
use of com.amazonaws.mobileconnectors.pinpoint.internal.core.system.MockSystem in project aws-sdk-android by aws-amplify.
the class FCMNotificationClientTest method setup.
@Before
public void setup() {
MockitoAnnotations.initMocks(this);
final Context roboContext = RuntimeEnvironment.application.getApplicationContext();
spiedRoboContext = Mockito.spy(roboContext);
mockPinpointContext = new AnalyticsContextBuilder().withSystem(new MockSystem("JIMMY_CRACKED_CORN.and")).withConfiguration(mockConfiguration).withContext(spiedRoboContext).build();
analyticsClient = new AnalyticsClient(mockPinpointContext);
Whitebox.setInternalState(analyticsClient, "eventRecorder", mockEventRecorder);
when(mockConfiguration.optBoolean("isAnalyticsEnabled", true)).thenReturn(true);
when(mockPinpointContext.getAnalyticsClient()).thenReturn(analyticsClient);
// target.setSessionClient(new SessionClient(mockContext, mockEventClient, mockTargetingClient,
// new TestSessionStore(), false));
when(mockPinpointContext.getTargetingClient()).thenReturn(mockTargetingClient);
when(mockPinpointContext.getConfiguration()).thenReturn(mockConfiguration);
when(mockPinpointContext.getPinpointConfiguration()).thenReturn(mockPinpointConfiguration);
target = NotificationClient.createClient(mockPinpointContext, ChannelType.GCM);
}
use of com.amazonaws.mobileconnectors.pinpoint.internal.core.system.MockSystem in project aws-sdk-android by aws-amplify.
the class GCMNotificationClientTest method setup.
@Before
public void setup() {
MockitoAnnotations.initMocks(this);
Context roboContext = ApplicationProvider.getApplicationContext();
spiedRoboContext = Mockito.spy(roboContext);
mockPinpointContext = new AnalyticsContextBuilder().withSystem(new MockSystem("JIMMY_CRACKED_CORN.and")).withConfiguration(mockConfiguration).withContext(spiedRoboContext).build();
analyticsClient = new AnalyticsClient(mockPinpointContext);
Whitebox.setInternalState(analyticsClient, "eventRecorder", mockEventRecorder);
when(mockConfiguration.optBoolean("isAnalyticsEnabled", true)).thenReturn(true);
when(mockPinpointContext.getAnalyticsClient()).thenReturn(analyticsClient);
// target.setSessionClient(new SessionClient(mockContext, mockEventClient, mockTargetingClient,
// new TestSessionStore(), false));
when(mockPinpointContext.getTargetingClient()).thenReturn(mockTargetingClient);
when(mockPinpointContext.getConfiguration()).thenReturn(mockConfiguration);
when(mockPinpointContext.getPinpointConfiguration()).thenReturn(mockPinpointConfiguration);
target = NotificationClient.createClient(mockPinpointContext, ChannelType.GCM);
}
use of com.amazonaws.mobileconnectors.pinpoint.internal.core.system.MockSystem in project aws-sdk-android by aws-amplify.
the class SessionClientTest method setup.
@Before
public void setup() {
MockitoAnnotations.initMocks(this);
this.mockPinpointContext = new AnalyticsContextBuilder().withSdkInfo(SDK_NAME, SDK_VERSION).withUniqueIdValue(UNIQUE_ID).withConfiguration(mockConfiguration).withContext(RuntimeEnvironment.application.getApplicationContext()).withSystem(new MockSystem("SESSION_CLIENT.test")).build();
when(mockPinpointContext.getAnalyticsClient()).thenReturn(mockAnalyticsClient);
when(mockPinpointContext.getTargetingClient()).thenReturn(mockTargetingClient);
when(mockPinpointContext.getConfiguration()).thenReturn(mockConfiguration);
when(mockPinpointContext.getPinpointConfiguration()).thenReturn(mockPinpointConfiguration);
target = new SessionClient(mockPinpointContext);
System.out.print(target.toString());
}
use of com.amazonaws.mobileconnectors.pinpoint.internal.core.system.MockSystem in project aws-sdk-android by aws-amplify.
the class ADMNotificationClientTest method setup.
@Before
public void setup() {
MockitoAnnotations.initMocks(this);
final Context roboContext = RuntimeEnvironment.application.getApplicationContext();
spiedRoboContext = Mockito.spy(roboContext);
mockPinpointContext = new AnalyticsContextBuilder().withSystem(new MockSystem("JIMMY_CRACKED_CORN.and")).withConfiguration(mockConfiguration).withContext(spiedRoboContext).build();
analyticsClient = new AnalyticsClient(mockPinpointContext);
Whitebox.setInternalState(analyticsClient, "eventRecorder", mockEventRecorder);
when(mockConfiguration.optBoolean("isAnalyticsEnabled", true)).thenReturn(true);
when(mockPinpointContext.getAnalyticsClient()).thenReturn(analyticsClient);
// target.setSessionClient(new SessionClient(mockContext, mockEventClient, mockTargetingClient,
// new TestSessionStore(), false));
when(mockPinpointContext.getTargetingClient()).thenReturn(mockTargetingClient);
when(mockPinpointContext.getConfiguration()).thenReturn(mockConfiguration);
when(mockPinpointContext.getPinpointConfiguration()).thenReturn(mockPinpointConfiguration);
target = NotificationClient.createClient(mockPinpointContext, ChannelType.ADM);
}
Aggregations