use of com.onesignal.MockOSSharedPreferences in project OneSignal-Android-SDK by OneSignal.
the class OutcomeEventIntegrationTests method testOnV2CorrectOutcomeSent_fromNotificationOpenedHandler.
@Test
public void testOnV2CorrectOutcomeSent_fromNotificationOpenedHandler() 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);
// Init OneSignal with a custom opened handler
OneSignalInit(new OneSignal.OSNotificationOpenedHandler() {
@Override
public void notificationOpened(OSNotificationOpenedResult result) {
OneSignal.sendOutcome(ONESIGNAL_OUTCOME_NAME);
}
});
threadAndTaskWait();
// Background app
pauseActivity(blankActivityController);
// Receive and open a notification
OneSignal_handleNotificationOpen(blankActivity, new JSONArray("[{ \"alert\": \"Test Msg\", \"custom\": { \"i\": \"UUID\" } }]"), false, ONESIGNAL_NOTIFICATION_ID);
threadAndTaskWait();
// Foreground the application
blankActivityController.resume();
threadAndTaskWait();
JSONArray notificationIds = new JSONArray();
notificationIds.put(ONESIGNAL_NOTIFICATION_ID);
// Make sure a measure request is made with the correct session and notifications
assertMeasureOnV2AtIndex(3, ONESIGNAL_OUTCOME_NAME, new JSONArray(), notificationIds, null, null);
}
use of com.onesignal.MockOSSharedPreferences in project OneSignal-Android-SDK by OneSignal.
the class OutcomeEventIntegrationTests method testSendOutcomesFailWhenRequiresUserPrivacyConsent.
@Test
public void testSendOutcomesFailWhenRequiresUserPrivacyConsent() 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();
assertRestCalls(2);
OneSignal.setRequiresUserPrivacyConsent(true);
// Make sure session is UNATTRIBUTED
assertNotificationChannelUnattributedInfluence();
// Send unique outcome event
OneSignal.sendUniqueOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Check that the task has been queued until consent is given
assertRestCalls(2);
// Send outcome event
OneSignal.sendOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Ensure still only 2 requests have been made
assertRestCalls(2);
OneSignal.provideUserConsent(true);
threadAndTaskWait();
// Send unique outcome event
OneSignal.sendUniqueOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Send outcome event
OneSignal.sendOutcome(ONESIGNAL_OUTCOME_NAME);
threadAndTaskWait();
// Make sure session is UNATTRIBUTED
assertNotificationChannelUnattributedInfluence();
// Check measure end point was most recent request and contains received notification
assertMeasureOnV2AtIndex(3, ONESIGNAL_OUTCOME_NAME, null, null, null, null);
}
use of com.onesignal.MockOSSharedPreferences in project OneSignal-Android-SDK by OneSignal.
the class OutcomeEventV2UnitTests method beforeEachTest.
// Before each test
@Before
public void beforeEachTest() throws Exception {
outcomeEvents = null;
dbHelper = new MockOneSignalDBHelper(ApplicationProvider.getApplicationContext());
// Mock on a custom HashMap in order to not use custom context
preferences = new MockOSSharedPreferences();
// Save v2 flag
String v2Name = preferences.getOutcomesV2KeyName();
preferences.saveBool(preferences.getPreferencesName(), v2Name, true);
MockOSTimeImpl time = new MockOSTimeImpl();
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 SessionManagerUnitTests method beforeEachTest.
// Before each test
@Before
public void beforeEachTest() throws Exception {
MockOSLog logger = new MockOSLog();
MockOSTimeImpl time = new MockOSTimeImpl();
preferences = new MockOSSharedPreferences();
trackerFactory = new OSTrackerFactory(preferences, logger, time);
sessionManager = new MockSessionManager(sessionListener, trackerFactory, logger);
TestHelpers.beforeTestInitAndCleanup();
}
use of com.onesignal.MockOSSharedPreferences in project OneSignal-Android-SDK by OneSignal.
the class InAppMessageIntegrationTests method testInAppMessageClickActionOutcomeV2.
@Test
public void testInAppMessageClickActionOutcomeV2() throws Exception {
// Enable IAM v2
preferences = new MockOSSharedPreferences();
preferences.saveBool(preferences.getPreferencesName(), preferences.getOutcomesV2KeyName(), true);
trackerFactory = new OSTrackerFactory(preferences, new MockOSLog(), time);
sessionManager = new MockSessionManager(OneSignal_getSessionListener(), trackerFactory, new MockOSLog());
OneSignal_setSharedPreferences(preferences);
OneSignal_setTrackerFactory(trackerFactory);
OneSignal_setSessionManager(sessionManager);
// 1. Init OneSignal
OneSignalInit();
threadAndTaskWait();
// Enable influence outcomes
trackerFactory.saveInfluenceParams(new OneSignalPackagePrivateHelper.RemoteOutcomeParams());
// 2. Create an IAM
final OSTestInAppMessageInternal message = InAppMessagingHelpers.buildTestMessageWithSingleTrigger(OSTriggerKind.SESSION_TIME, null, OSTestTrigger.OSTriggerOperator.NOT_EXISTS.toString(), null);
final JSONArray outcomes = new JSONArray();
outcomes.put(new JSONObject() {
{
put("name", IAM_OUTCOME_NAME);
}
});
JSONObject action = new JSONObject() {
{
put("id", IAM_CLICK_ID);
put("outcomes", outcomes);
}
};
OneSignalPackagePrivateHelper.onMessageActionOccurredOnMessage(message, action);
// 3. Ensure outcome is sent
assertMeasureOnV2AtIndex(3, "outcome_name", new JSONArray().put(message.getMessageId()), new JSONArray(), null, null);
}
Aggregations