Added test for feed settings screen
This commit is contained in:
parent
1c1780a26f
commit
ecf53e31a5
|
@ -0,0 +1,79 @@
|
|||
package de.test.antennapod.ui;
|
||||
|
||||
import android.content.Intent;
|
||||
import androidx.test.espresso.intent.rule.IntentsTestRule;
|
||||
import androidx.test.platform.app.InstrumentationRegistry;
|
||||
import androidx.test.runner.AndroidJUnit4;
|
||||
import de.danoeh.antennapod.R;
|
||||
import de.danoeh.antennapod.activity.MainActivity;
|
||||
import de.danoeh.antennapod.core.feed.Feed;
|
||||
import de.test.antennapod.EspressoTestUtils;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
import static androidx.test.espresso.Espresso.onView;
|
||||
import static androidx.test.espresso.action.ViewActions.click;
|
||||
import static androidx.test.espresso.matcher.ViewMatchers.isDescendantOfA;
|
||||
import static androidx.test.espresso.matcher.ViewMatchers.isDisplayed;
|
||||
import static androidx.test.espresso.matcher.ViewMatchers.isRoot;
|
||||
import static androidx.test.espresso.matcher.ViewMatchers.withId;
|
||||
import static androidx.test.espresso.matcher.ViewMatchers.withText;
|
||||
import static de.test.antennapod.EspressoTestUtils.clickPreference;
|
||||
import static de.test.antennapod.EspressoTestUtils.waitForView;
|
||||
import static org.hamcrest.Matchers.allOf;
|
||||
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class FeedSettingsTest {
|
||||
private UITestUtils uiTestUtils;
|
||||
private Feed feed;
|
||||
|
||||
@Rule
|
||||
public IntentsTestRule<MainActivity> activityRule = new IntentsTestRule<>(MainActivity.class, false, false);
|
||||
|
||||
@Before
|
||||
public void setUp() throws Exception {
|
||||
uiTestUtils = new UITestUtils(InstrumentationRegistry.getInstrumentation().getTargetContext());
|
||||
uiTestUtils.setup();
|
||||
|
||||
EspressoTestUtils.clearPreferences();
|
||||
EspressoTestUtils.clearDatabase();
|
||||
|
||||
uiTestUtils.addLocalFeedData(false);
|
||||
feed = uiTestUtils.hostedFeeds.get(0);
|
||||
Intent intent = new Intent(InstrumentationRegistry.getInstrumentation().getTargetContext(), MainActivity.class);
|
||||
intent.putExtra(MainActivity.EXTRA_FEED_ID, feed.getId());
|
||||
activityRule.launchActivity(intent);
|
||||
}
|
||||
|
||||
@After
|
||||
public void tearDown() throws Exception {
|
||||
uiTestUtils.tearDown();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testClickFeedSettings() {
|
||||
onView(isRoot()).perform(waitForView(allOf(isDescendantOfA(withId(R.id.appBar)),
|
||||
withText(feed.getTitle()), isDisplayed()), 1000));
|
||||
onView(withId(R.id.butShowSettings)).perform(click());
|
||||
|
||||
clickPreference(R.string.keep_updated);
|
||||
|
||||
clickPreference(R.string.authentication_label);
|
||||
onView(withText(R.string.cancel_label)).perform(click());
|
||||
|
||||
clickPreference(R.string.playback_speed);
|
||||
onView(withText(R.string.cancel_label)).perform(click());
|
||||
|
||||
clickPreference(R.string.pref_feed_skip);
|
||||
onView(withText(R.string.cancel_label)).perform(click());
|
||||
|
||||
clickPreference(R.string.auto_delete_label);
|
||||
onView(withText(R.string.cancel_label)).perform(click());
|
||||
|
||||
clickPreference(R.string.feed_volume_reduction);
|
||||
onView(withText(R.string.cancel_label)).perform(click());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue