summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/androidTest/java/com/mapbox/mapboxsdk/testapp/feature/QueryRenderedFeaturesPropertiesTest.java
blob: 6e446ceda9a710b1d24f90dd14db74b87348e0bd (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
package com.mapbox.mapboxsdk.testapp.feature;

import android.graphics.PointF;
import android.support.test.espresso.ViewAction;
import android.support.test.espresso.action.GeneralClickAction;
import android.support.test.espresso.action.Press;
import android.support.test.espresso.action.Tap;

import com.mapbox.mapboxsdk.geometry.LatLng;
import com.mapbox.mapboxsdk.testapp.R;
import com.mapbox.mapboxsdk.testapp.activity.BaseActivityTest;
import com.mapbox.mapboxsdk.testapp.activity.feature.QueryRenderedFeaturesPropertiesActivity;

import org.junit.Ignore;
import org.junit.Test;

import static android.support.test.espresso.Espresso.onView;
import static android.support.test.espresso.assertion.ViewAssertions.matches;
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;

/**
 * Instrumentation test to validate if clicking center of screen returns the correct features.
 */
public class QueryRenderedFeaturesPropertiesTest extends BaseActivityTest {

  @Override
  protected Class getActivityClass() {
    return QueryRenderedFeaturesPropertiesActivity.class;
  }

  @Test
  @Ignore
  public void testCountFeatures() {
    LatLng centerScreen = mapboxMap.getCameraPosition().target;
    PointF centerPixel = mapboxMap.getProjection().toScreenLocation(centerScreen);
    onView(withId(R.id.mapView)).perform(clickXY(centerPixel.x, centerPixel.y));
    onView(withText("Found 4 features")).check(matches(isDisplayed()));
  }

  private static ViewAction clickXY(final float x, final float y) {
    return new GeneralClickAction(
      Tap.SINGLE,
      view -> {
        final int[] screenPos = new int[2];
        view.getLocationOnScreen(screenPos);
        final float screenX = screenPos[0] + x;
        final float screenY = screenPos[1] + y;
        return new float[] {screenX, screenY};
      },
      Press.FINGER);
  }
}