mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
7cc2941053
2) create a new source set full of espresso tests 3) updated proguard-testing.pro 4) added test device numbers to .gitignore // FREEBIE
98 lines
4.3 KiB
Java
98 lines
4.3 KiB
Java
/**
|
|
* Copyright (C) 2015 Open Whisper Systems
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.thoughtcrime.securesms.preferences;
|
|
|
|
import android.test.suitebuilder.annotation.LargeTest;
|
|
|
|
import org.hamcrest.Matchers;
|
|
import org.thoughtcrime.securesms.ApplicationPreferencesActivity;
|
|
import org.thoughtcrime.securesms.ConversationListActivity;
|
|
import org.thoughtcrime.securesms.ApplicationPreferencesActivityActions;
|
|
import org.thoughtcrime.securesms.ConversationListActivityActions;
|
|
import org.thoughtcrime.securesms.TextSecureEspressoTestCase;
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
import static android.support.test.espresso.Espresso.onData;
|
|
import static android.support.test.espresso.assertion.ViewAssertions.matches;
|
|
import static android.support.test.espresso.matcher.PreferenceMatchers.withKey;
|
|
import static android.support.test.espresso.matcher.ViewMatchers.isChecked;
|
|
import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed;
|
|
import static android.support.test.espresso.matcher.ViewMatchers.isNotChecked;
|
|
import static org.thoughtcrime.securesms.EspressoUtil.waitOn;
|
|
|
|
@LargeTest
|
|
public class NotificationsPreferenceFragmentTest extends TextSecureEspressoTestCase<ConversationListActivity> {
|
|
|
|
public NotificationsPreferenceFragmentTest() {
|
|
super(ConversationListActivity.class);
|
|
}
|
|
|
|
private void checkAllPreferencesDisplayed() throws Exception {
|
|
onData(Matchers.<Object>allOf(withKey("pref_key_enable_notifications")))
|
|
.check(matches(isDisplayed()));
|
|
onData(Matchers.<Object>allOf(withKey("pref_key_ringtone")))
|
|
.check(matches(isDisplayed()));
|
|
onData(Matchers.<Object>allOf(withKey("pref_key_vibrate")))
|
|
.check(matches(isDisplayed()));
|
|
onData(Matchers.<Object>allOf(withKey("pref_led_color")))
|
|
.check(matches(isDisplayed()));
|
|
onData(Matchers.<Object>allOf(withKey("pref_led_blink")))
|
|
.check(matches(isDisplayed()));
|
|
onData(Matchers.<Object>allOf(withKey("pref_key_inthread_notifications")))
|
|
.check(matches(isDisplayed()));
|
|
onData(Matchers.<Object>allOf(withKey("pref_repeat_alerts")))
|
|
.check(matches(isDisplayed()));
|
|
}
|
|
|
|
private void checkViewsMatchPreferences() throws Exception {
|
|
if (TextSecurePreferences.isNotificationsEnabled(getContext())) {
|
|
isChecked().matches(onData(Matchers.<Object>allOf(withKey("pref_key_enable_notifications"))));
|
|
} else {
|
|
isNotChecked().matches(onData(Matchers.<Object>allOf(withKey("pref_key_enable_notifications"))));
|
|
}
|
|
|
|
if (TextSecurePreferences.isNotificationVibrateEnabled(getContext())) {
|
|
isChecked().matches(onData(Matchers.<Object>allOf(withKey("pref_key_vibrate"))));
|
|
} else {
|
|
isNotChecked().matches(onData(Matchers.<Object>allOf(withKey("pref_key_vibrate"))));
|
|
}
|
|
|
|
if (TextSecurePreferences.isInThreadNotifications(getContext())) {
|
|
isChecked().matches(onData(Matchers.<Object>allOf(withKey("pref_key_inthread_notifications"))));
|
|
} else {
|
|
isNotChecked().matches(onData(Matchers.<Object>allOf(withKey("pref_key_inthread_notifications"))));
|
|
}
|
|
}
|
|
|
|
private void clickNotificationsSettingAndCheckState() throws Exception {
|
|
loadActivity(ConversationListActivity.class, STATE_REGISTRATION_SKIPPED);
|
|
ConversationListActivityActions.clickSettings(getContext());
|
|
waitOn(ApplicationPreferencesActivity.class);
|
|
ApplicationPreferencesActivityActions.clickNotificationsSetting();
|
|
|
|
checkAllPreferencesDisplayed();
|
|
checkViewsMatchPreferences();
|
|
}
|
|
|
|
public void testEnableNotifications() throws Exception {
|
|
clickNotificationsSettingAndCheckState();
|
|
NotificationsPreferenceFragmentActions.clickEnableNotifications();
|
|
isChecked().matches(onData(Matchers.<Object>allOf(withKey("pref_key_enable_notifications"))));
|
|
}
|
|
|
|
}
|