summaryrefslogtreecommitdiff
path: root/app/src/androidTest/java/se/leap/bitmaskclient/test/StartActivityDrawerTest.java
blob: 31247e0a2d835b5c25ab70dc6accc91a3582a2ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
package se.leap.bitmaskclient.test;

import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.support.test.InstrumentationRegistry;
import android.support.test.espresso.contrib.DrawerActions;
import android.support.test.rule.ActivityTestRule;
import android.support.test.runner.AndroidJUnit4;

import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;

import java.io.IOException;

import se.leap.bitmaskclient.BuildConfig;
import se.leap.bitmaskclient.MainActivity;
import se.leap.bitmaskclient.Provider;
import se.leap.bitmaskclient.R;
import se.leap.bitmaskclient.testutils.TestSetupHelper;

import static android.support.test.InstrumentationRegistry.getInstrumentation;
import static android.support.test.espresso.Espresso.onData;
import static android.support.test.espresso.Espresso.onView;
import static android.support.test.espresso.action.ViewActions.click;
import static android.support.test.espresso.assertion.ViewAssertions.matches;
import static android.support.test.espresso.contrib.DrawerMatchers.isClosed;
import static android.support.test.espresso.contrib.DrawerMatchers.isOpen;
import static android.support.test.espresso.matcher.RootMatchers.isDialog;
import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed;
import static android.support.test.espresso.matcher.ViewMatchers.withId;
import static android.support.test.espresso.matcher.ViewMatchers.withText;
import static org.hamcrest.Matchers.anything;
import static se.leap.bitmaskclient.Constants.FIRST_TIME_USER_DATE;
import static se.leap.bitmaskclient.Constants.LAST_DONATION_REMINDER_DATE;
import static se.leap.bitmaskclient.Constants.SHARED_PREFERENCES;
import static se.leap.bitmaskclient.MainActivity.ACTION_SHOW_VPN_FRAGMENT;
import static se.leap.bitmaskclient.R.id.aboutLayout;
import static se.leap.bitmaskclient.R.id.accountList;
import static se.leap.bitmaskclient.R.id.drawer_layout;
import static se.leap.bitmaskclient.R.id.eipServiceFragment;
import static se.leap.bitmaskclient.R.id.log_layout;
import static se.leap.bitmaskclient.R.id.provider_list_layout;
import static se.leap.bitmaskclient.R.id.settingsList;

/**
 * Created by cyberta on 19.01.18.
 */

@RunWith(AndroidJUnit4.class)
public class StartActivityDrawerTest {

    Intent intent;
    SharedPreferences preferences;
    SharedPreferences.Editor preferencesEditor;

    @Rule
    public ActivityTestRule<MainActivity> mActivityRule = new ActivityTestRule<>(
            MainActivity.class,
            true,
            false); // Activity is not launched immediately

    @Before
    public void setUp() throws IOException {
        intent = new Intent(ACTION_SHOW_VPN_FRAGMENT);
        Context context = getInstrumentation().getTargetContext();

        preferences = context.getSharedPreferences(SHARED_PREFERENCES, Context.MODE_PRIVATE);
        preferencesEditor = preferences.edit();
        preferencesEditor.putString(Provider.KEY, TestSetupHelper.getInputAsString(InstrumentationRegistry.getContext().getAssets().open("riseup.net.json")))
                .putString(Provider.CA_CERT, TestSetupHelper.getInputAsString(InstrumentationRegistry.getContext().getAssets().open("riseup.net.pem")))
                .putString(LAST_DONATION_REMINDER_DATE, null)
                .putString(FIRST_TIME_USER_DATE, null).commit();

    }


    @Test
    public void testDisplayDrawer_isOpenUntilUserManuallyOpendDrawerOnce() {
        preferencesEditor.putBoolean("navigation_drawer_learned", false).commit();
        mActivityRule.launchActivity(intent);
        onView(withId(drawer_layout)).check(matches(isOpen()));
        onView(withId(drawer_layout)).perform(DrawerActions.close());
        mActivityRule.finishActivity();

        mActivityRule.launchActivity(intent);
        onView(withId(drawer_layout)).check(matches(isOpen()));
        onView(withId(drawer_layout)).perform(DrawerActions.close());
        onView(withId(drawer_layout)).perform(DrawerActions.open());
        mActivityRule.finishActivity();

        mActivityRule.launchActivity(intent);
        onView(withId(drawer_layout)).check(matches(isClosed()));
    }

    @Test
    public void testClickProviderName_closeDrawerAndShowEipFragment() throws InterruptedException {
        preferencesEditor.putBoolean("navigation_drawer_learned", true).commit();
        mActivityRule.launchActivity(intent);
        onView(withId(drawer_layout)).check(matches(isClosed()));
        onView(withId(drawer_layout)).perform(DrawerActions.open());
        onView(withId(drawer_layout)).check(matches(isOpen()));
        onData(anything()).inAdapterView(withId(accountList)).atPosition(0).perform(click());
        onView(withId(drawer_layout)).check(matches(isClosed()));
        onView(withId(eipServiceFragment)).check(matches(isDisplayed()));
    }

    @Test
    public void testSaveBattery_closeDrawerAndShowSaveBatteryDialog() throws InterruptedException {
        preferencesEditor.putBoolean("navigation_drawer_learned", true).commit();
        mActivityRule.launchActivity(intent);
        onView(withId(drawer_layout)).check(matches(isClosed()));
        onView(withId(drawer_layout)).perform(DrawerActions.open());
        onView(withId(drawer_layout)).check(matches(isOpen()));
        onData(anything()).inAdapterView(withId(settingsList)).atPosition(0).perform(click());
        onView(withText(R.string.save_battery_message))
                .inRoot(isDialog())
                .check(matches(isDisplayed()));
    }

    @Test
    public void testAlwaysOnVPN_closeDrawerAndShowDialog() throws InterruptedException {
        preferencesEditor.putBoolean("navigation_drawer_learned", true).commit();
        mActivityRule.launchActivity(intent);
        onView(withId(drawer_layout)).check(matches(isClosed()));
        onView(withId(drawer_layout)).perform(DrawerActions.open());
        onView(withId(drawer_layout)).check(matches(isOpen()));
        onData(anything()).inAdapterView(withId(settingsList)).atPosition(1).perform(click());
        onView(withText(R.string.always_on_vpn_user_message))
                .inRoot(isDialog())
                .check(matches(isDisplayed()));
    }

    @Test
    public void testClickSwitchProvider_closeDrawerAndShowProviderListView() throws InterruptedException {
        if (BuildConfig.FLAVOR_branding.equals("custom")) {
            return;
        }
        preferencesEditor.putBoolean("navigation_drawer_learned", true).commit();
        mActivityRule.launchActivity(intent);
        onView(withId(drawer_layout)).check(matches(isClosed()));
        onView(withId(drawer_layout)).perform(DrawerActions.open());
        onView(withId(drawer_layout)).check(matches(isOpen()));

        onData(anything()).inAdapterView(withId(settingsList)).atPosition(2).perform(click());
        onView(withId(provider_list_layout)).check(matches(isDisplayed()));
    }

    @Test
    public void testClickLog_closeDrawerAndShowLogFragment() throws InterruptedException {
        preferencesEditor.putBoolean("navigation_drawer_learned", true).commit();
        mActivityRule.launchActivity(intent);
        onView(withId(drawer_layout)).check(matches(isClosed()));
        onView(withId(drawer_layout)).perform(DrawerActions.open());
        onView(withId(drawer_layout)).check(matches(isOpen()));

        onData(anything()).inAdapterView(withId(settingsList)).atPosition(getPositionBasedOnFlavor(2, 3)).perform(click());
        onView(withId(log_layout)).check(matches(isDisplayed()));
    }

    @Test
    public void testClickAbout_closeDrawerAndShowAboutFragment() throws InterruptedException {
        preferencesEditor.putBoolean("navigation_drawer_learned", true).commit();
        mActivityRule.launchActivity(intent);
        onView(withId(drawer_layout)).check(matches(isClosed()));
        onView(withId(drawer_layout)).perform(DrawerActions.open());
        onView(withId(drawer_layout)).check(matches(isOpen()));
        onData(anything()).inAdapterView(withId(settingsList)).atPosition(getPositionBasedOnFlavor(4,5)).perform(click());
        onView(withId(aboutLayout)).check(matches(isDisplayed()));
    }

    private int getPositionBasedOnFlavor(int custom, int defaultNumber) {
        if (BuildConfig.FLAVOR_branding.equals("custom")) {
            return custom;
        } else {
            return defaultNumber;
        }
    }
}