summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/androidTest/java/com/mapbox/mapboxsdk/testapp/annotations/PolygonTest.java
blob: 24b9b3bf015d43eb79e5cda219f0c4aeb29d0ece (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
package com.mapbox.mapboxsdk.testapp.annotations;

import android.graphics.Color;
import android.support.test.espresso.Espresso;
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.annotations.Polygon;
import com.mapbox.mapboxsdk.annotations.PolygonOptions;
import com.mapbox.mapboxsdk.geometry.LatLng;
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.Ignore;
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;
import static org.junit.Assert.assertEquals;

public class PolygonTest {

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

  private OnMapReadyIdlingResource idlingResource;
  private Polygon polygon;

  @Before
  public void registerIdlingResource() {
    idlingResource = new OnMapReadyIdlingResource(rule.getActivity());
    Espresso.registerIdlingResources(idlingResource);
  }

  @Test
  @Ignore
  /** native crash **/
  public void addPolygonTest() {
    ViewUtils.checkViewIsDisplayed(R.id.mapView);
    final MapboxMap mapboxMap = rule.getActivity().getMapboxMap();
    LatLng latLngOne = new LatLng();
    LatLng latLngTwo = new LatLng(1, 0);
    LatLng latLngThree = new LatLng(1, 1);

    assertEquals("Polygons should be empty", 0, mapboxMap.getPolygons().size());

    final PolygonOptions options = new PolygonOptions();
    options.strokeColor(Color.BLUE);
    options.fillColor(Color.RED);
    options.add(latLngOne);
    options.add(latLngTwo);
    options.add(latLngThree);

    onView(withId(R.id.mapView)).perform(new AddPolygonAction(mapboxMap, options));

    assertEquals("Polygons should be 1", 1, mapboxMap.getPolygons().size());
    assertEquals("Polygon id should be 0", 0, polygon.getId());
    assertEquals("Polygon points size should match", 3, polygon.getPoints().size());
    assertEquals("Polygon stroke color should match", Color.BLUE, polygon.getStrokeColor());
    assertEquals("Polygon target should match", Color.RED, polygon.getFillColor());
    mapboxMap.clear();
    assertEquals("Polygons should be empty", 0, mapboxMap.getPolygons().size());
  }

  private class AddPolygonAction implements ViewAction {

    private MapboxMap mapboxMap;
    private PolygonOptions options;

    AddPolygonAction(MapboxMap map, PolygonOptions polygonOptions) {
      mapboxMap = map;
      options = polygonOptions;
    }

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

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

    @Override
    public void perform(UiController uiController, View view) {
      polygon = mapboxMap.addPolygon(options);
    }
  }

  @After
  public void unregisterIdlingResource() {
    Espresso.unregisterIdlingResources(idlingResource);
  }
}