use of com.onesignal.MockOSSharedPreferences in project OneSignal-Android-SDK by OneSignal.
the class LocationIntegrationTests method beforeEachTest.
@Before
public void beforeEachTest() throws Exception {
blankActivityController = Robolectric.buildActivity(BlankActivity.class).create();
blankActivity = blankActivityController.get();
time = new MockOSTimeImpl();
trackerFactory = new OSTrackerFactory(new MockOSSharedPreferences(), new MockOSLog(), time);
sessionManager = new MockSessionManager(OneSignal_getSessionListener(), trackerFactory, new MockOSLog());
dbHelper = new MockOneSignalDBHelper(ApplicationProvider.getApplicationContext());
TestHelpers.setupTestWorkManager(blankActivity);
cleanUp();
OneSignal_setTime(time);
}
use of com.onesignal.MockOSSharedPreferences in project OneSignal-Android-SDK by OneSignal.
the class OutcomeEventIntegrationTests method testOnV2OutcomeNameSentWithMeasureOncePerSession_whenSendingMultipleUniqueOutcomes_inUnattributedSession.
@Test
public void testOnV2OutcomeNameSentWithMeasureOncePerSession_whenSendingMultipleUniqueOutcomes_inUnattributedSession() throws Exception {
// Enable IAM v2
preferences = new MockOSSharedPreferences();
trackerFactory = new OSTrackerFactory(preferences, logger, time);
sessionManager = new MockSessionManager(sessionListener, trackerFactory, logger);
preferences.saveBool(preferences.getPreferencesName(), preferences.getOutcomesV2KeyName(), true);
OneSignal_setSharedPreferences(preferences);
OneSignalInit();
threadAndTaskWait();
// Make sure session is UNATTRIBUTED
assertNotificationChannelUnattributedInfluence();
// Send unique outcome event
OneSignal.sendUniqueOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Check measure end point was most recent request and contains received notification
assertMeasureOnV2AtIndex(2, ONESIGNAL_OUTCOME_NAME, null, null, null, null);
// Only 3 requests have been made
assertRestCalls(3);
// Send unique outcome event
OneSignal.sendUniqueOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Make still only 3 requests have been made
assertRestCalls(3);
// Background app
pauseActivity(blankActivityController);
// Wait 31 seconds to start new session
time.advanceSystemTimeBy(31);
// Foreground app
blankActivityController.resume();
threadAndTaskWait();
// Send unique outcome event
OneSignal.sendUniqueOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Make sure session is UNATTRIBUTED
assertNotificationChannelUnattributedInfluence();
// Check measure end point was most recent request and contains received notification
assertMeasureOnV2AtIndex(4, ONESIGNAL_OUTCOME_NAME, null, null, null, null);
}
use of com.onesignal.MockOSSharedPreferences in project OneSignal-Android-SDK by OneSignal.
the class OutcomeEventIntegrationTests method testOnV2UniqueOutcomeMeasureOnlySentOncePerNotification_whenSendingMultipleUniqueOutcomes_inIndirectSessions.
@Test
@Config(shadows = { ShadowGenerateNotification.class })
public void testOnV2UniqueOutcomeMeasureOnlySentOncePerNotification_whenSendingMultipleUniqueOutcomes_inIndirectSessions() throws Exception {
// Enable IAM v2
preferences = new MockOSSharedPreferences();
trackerFactory = new OSTrackerFactory(preferences, logger, time);
sessionManager = new MockSessionManager(sessionListener, trackerFactory, logger);
preferences.saveBool(preferences.getPreferencesName(), preferences.getOutcomesV2KeyName(), true);
OneSignal_setSharedPreferences(preferences);
foregroundAppAfterReceivingNotification();
// Check notificationIds equal indirectNotificationIds from OSSessionManager
JSONArray notificationIds = new JSONArray().put(ONESIGNAL_NOTIFICATION_ID + "1");
assertEquals(notificationIds, trackerFactory.getNotificationChannelTracker().getIndirectIds());
// Make sure session is INDIRECT
assertNotificationChannelIndirectInfluence(1);
// Send unique outcome event
OneSignal.sendUniqueOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Check measure end point was most recent request and contains received notification
assertMeasureOnV2AtIndex(2, ONESIGNAL_OUTCOME_NAME, null, null, new JSONArray(), notificationIds);
// Only 3 requests have been made
assertRestCalls(3);
// Send unique outcome event
OneSignal.sendUniqueOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Make still only 3 requests have been made
assertRestCalls(3);
// Background app
pauseActivity(blankActivityController);
// Receive notification
Bundle bundle = getBaseNotifBundle(ONESIGNAL_NOTIFICATION_ID + "2");
FCMBroadcastReceiver_onReceived_withBundle(blankActivity, bundle);
// Wait 31 seconds to start new session
time.advanceSystemTimeBy(31);
// Foreground app will start a new session upgrade
blankActivityController.resume();
threadAndTaskWait();
// Send unique outcome event
OneSignal.sendUniqueOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Check notificationIds are not equal indirectNotificationIds from OSSessionManager
notificationIds.put(ONESIGNAL_NOTIFICATION_ID + "2");
assertEquals(notificationIds, trackerFactory.getNotificationChannelTracker().getIndirectIds());
// Make sure session is INDIRECT
assertNotificationChannelIndirectInfluence(2);
// Check measure end point was most recent request and contains received notification
assertMeasureOnV2AtIndex(4, ONESIGNAL_OUTCOME_NAME, null, null, new JSONArray(), new JSONArray().put(ONESIGNAL_NOTIFICATION_ID + "2"));
}
use of com.onesignal.MockOSSharedPreferences in project OneSignal-Android-SDK by OneSignal.
the class OutcomeEventUnitTests method beforeEachTest.
// Before each test
@Before
public void beforeEachTest() throws Exception {
outcomeEvents = null;
MockOSTimeImpl time = new MockOSTimeImpl();
dbHelper = new MockOneSignalDBHelper(ApplicationProvider.getApplicationContext());
// Mock on a custom HashMap in order to not use custom context
preferences = new MockOSSharedPreferences();
trackerFactory = new OSTrackerFactory(preferences, logWrapper, time);
sessionManager = new MockSessionManager(sessionListener, trackerFactory, logWrapper);
service = new MockOneSignalAPIClient();
OSOutcomeEventsFactory factory = new OSOutcomeEventsFactory(logWrapper, service, dbHelper, preferences);
controller = new MockOutcomeEventsController(sessionManager, factory);
TestHelpers.beforeTestInitAndCleanup();
repository = factory.getRepository();
trackerFactory.saveInfluenceParams(new OneSignalPackagePrivateHelper.RemoteOutcomeParams());
OneSignal.setAppId(APP_ID);
}
use of com.onesignal.MockOSSharedPreferences in project OneSignal-Android-SDK by OneSignal.
the class MainOneSignalClassRunner method beforeEachTest.
@Before
public void beforeEachTest() throws Exception {
blankActivityController = Robolectric.buildActivity(BlankActivity.class).create();
blankActivity = blankActivityController.get();
time = new MockOSTimeImpl();
trackerFactory = new OSTrackerFactory(new MockOSSharedPreferences(), new MockOSLog(), time);
sessionManager = new MockSessionManager(OneSignal_getSessionListener(), trackerFactory, new MockOSLog());
dbHelper = new MockOneSignalDBHelper(ApplicationProvider.getApplicationContext());
TestHelpers.setupTestWorkManager(blankActivity);
cleanUp();
OneSignal_setTime(time);
}
Aggregations