summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/androidTest/java/com/mapbox/mapboxsdk/camera/ZoomTest.java
blob: f84bcaa2a0b9a058570300ec2c949697d2dc0103 (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
package com.mapbox.mapboxsdk.camera;

import android.app.Activity;
import android.support.test.espresso.UiController;
import android.support.test.espresso.ViewAction;
import android.support.test.rule.ActivityTestRule;
import android.view.View;

import com.mapbox.mapboxsdk.activity.BaseMapboxMapTest;
import com.mapbox.mapboxsdk.constants.MapboxConstants;
import com.mapbox.mapboxsdk.geometry.LatLng;
import com.mapbox.mapboxsdk.testapp.R;
import com.mapbox.mapboxsdk.testapp.activity.maplayout.DebugModeActivity;

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

import static android.support.test.espresso.Espresso.onView;
import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed;
import static android.support.test.espresso.matcher.ViewMatchers.withId;

public class ZoomTest extends BaseMapboxMapTest {

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

    @Test
    public void testZoom() throws Exception {
        onView(withId(R.id.mapView)).perform(new ZoomAction(MapboxConstants.MINIMUM_ZOOM, MapboxConstants.MAXIMUM_ZOOM));
    }

    @Override
    public Activity getActivity() {
        return rule.getActivity();
    }

    private class ZoomAction implements ViewAction {

        private float fromZoom;
        private float toZoom;

        public ZoomAction(float fromZoom, float toZoom) {
            this.fromZoom = fromZoom;
            this.toZoom = toZoom;
        }

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

        @Override
        public String getDescription() {
            return "zoomAction";
        }

        @Override
        public void perform(UiController uiController, View view) {
            // move camera above denver
            mapboxMap.moveCamera(CameraUpdateFactory.newCameraPosition(
                    new CameraPosition.Builder()
                            .target(new LatLng(39.749750, -104.949559))
                            .build()));

            uiController.loopMainThreadForAtLeast(500);

            for (float i = fromZoom; i < toZoom; i++) {
                mapboxMap.animateCamera(CameraUpdateFactory.zoomTo(i));
                uiController.loopMainThreadForAtLeast(200);
            }
        }
    }
}