summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/androidTest/java/com/mapbox/mapboxsdk/testapp/maps/widgets/AttributionTest.java
blob: 1af957dac63c2b76d9214fb8600d571706032b73 (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
package com.mapbox.mapboxsdk.testapp.maps.widgets;

import android.app.Instrumentation;
import android.content.Intent;
import android.net.Uri;
import android.support.test.espresso.Espresso;
import android.support.test.espresso.UiController;
import android.support.test.espresso.ViewAction;
import android.support.test.espresso.intent.Intents;
import android.support.test.rule.ActivityTestRule;
import android.view.View;

import com.mapbox.mapboxsdk.maps.MapboxMap;
import com.mapbox.mapboxsdk.testapp.R;
import com.mapbox.mapboxsdk.testapp.activity.espresso.EspressoTestActivity;
import com.mapbox.mapboxsdk.testapp.utils.OnMapReadyIdlingResource;
import com.mapbox.mapboxsdk.testapp.utils.ViewUtils;

import org.hamcrest.Matcher;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;

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.intent.Intents.intended;
import static android.support.test.espresso.intent.Intents.intending;
import static android.support.test.espresso.intent.matcher.IntentMatchers.hasAction;
import static android.support.test.espresso.intent.matcher.IntentMatchers.hasData;
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.allOf;
import static org.hamcrest.core.IsNot.not;

public class AttributionTest {

    @Rule
    public final ActivityTestRule<EspressoTestActivity> rule = new ActivityTestRule<>(EspressoTestActivity.class);

    private OnMapReadyIdlingResource idlingResource;

    private String[] dialogTexts;
    private String[] dialogLinks;

    @Before
    public void beforeTest() {
        idlingResource = new OnMapReadyIdlingResource(rule.getActivity());
        Espresso.registerIdlingResources(idlingResource);
        Intents.init();
        dialogTexts = rule.getActivity().getResources().getStringArray(R.array.mapbox_attribution_names);
        dialogLinks = rule.getActivity().getResources().getStringArray(R.array.mapbox_attribution_links);
    }

    @Test
    public void testDisabled() {
        ViewUtils.checkViewIsDisplayed(R.id.mapView);
        MapboxMap mapboxMap = rule.getActivity().getMapboxMap();

        // Default
        onView(withId(R.id.attributionView)).check(matches(isDisplayed()));

        // Disabled
        onView(withId(R.id.attributionView))
                .perform(new DisableAction(mapboxMap))
                .check(matches(not(isDisplayed())));
    }

    @Test
    public void testMapboxLink() {
        ViewUtils.checkViewIsDisplayed(R.id.mapView);

        // click on View to open dialog
        onView(withId(R.id.attributionView)).perform(click());
        onView(withText(R.string.mapbox_attributionsDialogTitle)).check(matches(isDisplayed()));

        // click on link and validate browser opening
        Matcher<Intent> expectedIntent = allOf(hasAction(Intent.ACTION_VIEW), hasData(Uri.parse(dialogLinks[0])));
        intending(expectedIntent).respondWith(new Instrumentation.ActivityResult(0, null));
        onView(withText(dialogTexts[0])).perform(click());
        intended(expectedIntent);
    }

    @Test
    public void testOpenStreetMapLink() {
        ViewUtils.checkViewIsDisplayed(R.id.mapView);

        // click on View to open dialog
        onView(withId(R.id.attributionView)).perform(click());
        onView(withText(R.string.mapbox_attributionsDialogTitle)).check(matches(isDisplayed()));

        // click on link and validate browser opening
        Matcher<Intent> expectedIntent = allOf(hasAction(Intent.ACTION_VIEW), hasData(Uri.parse(dialogLinks[1])));
        intending(expectedIntent).respondWith(new Instrumentation.ActivityResult(0, null));
        onView(withText(dialogTexts[1])).perform(click());
    }

    @Test
    public void testImproveMapLink() {
        ViewUtils.checkViewIsDisplayed(R.id.mapView);

        // click on View to open dialog
        onView(withId(R.id.attributionView)).perform(click());
        onView(withText(R.string.mapbox_attributionsDialogTitle)).check(matches(isDisplayed()));

        // click on Mapbox link and validate browser opening
        Matcher<Intent> expectedIntent = allOf(hasAction(Intent.ACTION_VIEW), hasData(Uri.parse(dialogLinks[3])));
        intending(expectedIntent).respondWith(new Instrumentation.ActivityResult(0, null));
        onView(withText(dialogTexts[3])).perform(click());
    }

    @Test
    public void testTelemetryDialog() {
        ViewUtils.checkViewIsDisplayed(R.id.mapView);

        // click on View to open dialog
        onView(withId(R.id.attributionView)).perform(click());
        onView(withText(R.string.mapbox_attributionsDialogTitle)).check(matches(isDisplayed()));

        // click on item to open second dialog
        onView(withText(dialogTexts[3])).perform(click());
        onView(withText(R.string.mapbox_attributionTelemetryTitle)).check(matches(isDisplayed()));
    }

    @After
    public void afterTest() {
        Intents.release();
        Espresso.unregisterIdlingResources(idlingResource);
    }

    private class DisableAction implements ViewAction {

        private MapboxMap mapboxMap;

        DisableAction(MapboxMap map) {
            mapboxMap = map;
        }

        @Override
        public Matcher<View> getConstraints() {
            return isDisplayed();
        }

        @Override
        public String getDescription() {
            return getClass().getSimpleName();
        }

        @Override
        public void perform(UiController uiController, View view) {
            mapboxMap.getUiSettings().setAttributionEnabled(false);
        }
    }
}