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

import android.support.test.espresso.UiController;
import android.support.test.espresso.ViewAction;
import android.view.View;

import com.mapbox.mapboxsdk.annotations.Marker;
import com.mapbox.mapboxsdk.geometry.LatLng;
import com.mapbox.mapboxsdk.maps.MapboxMap;
import com.mapbox.mapboxsdk.testapp.R;
import com.mapbox.mapboxsdk.testapp.activity.BaseActivityTest;
import com.mapbox.mapboxsdk.testapp.activity.annotation.MarkerViewActivity;
import com.mapbox.mapboxsdk.testapp.activity.espresso.EspressoTestActivity;
import com.mapbox.mapboxsdk.testapp.model.annotations.TextMarkerViewOptions;
import com.mapbox.mapboxsdk.testapp.utils.TestConstants;

import org.hamcrest.Matcher;
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;
import static org.junit.Assert.assertEquals;

public class MarkerViewTest extends BaseActivityTest {

  private Marker marker;

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

  @Test
  @Ignore
  public void addMarkerViewTest() {
    validateTestSetup();
    assertEquals("Markers should be empty", 0, mapboxMap.getMarkers().size());

    TextMarkerViewOptions options = new TextMarkerViewOptions();
    options.text(TestConstants.TEXT_MARKER_TEXT);
    options.position(new LatLng());
    options.snippet(TestConstants.TEXT_MARKER_SNIPPET);
    options.title(TestConstants.TEXT_MARKER_TITLE);

    onView(withId(R.id.mapView)).perform(new AddTextMarkerViewAction(mapboxMap, options));
    assertEquals("Markers sze should be 1, ", 1, mapboxMap.getMarkers().size());
    assertEquals("Marker id should be 0", 0, marker.getId());
    assertEquals("Marker target should match", new LatLng(), marker.getPosition());
    assertEquals("Marker snippet should match", TestConstants.TEXT_MARKER_SNIPPET, marker.getSnippet());
    assertEquals("Marker target should match", TestConstants.TEXT_MARKER_TITLE, marker.getTitle());
    onView(withText(TestConstants.TEXT_MARKER_TEXT)).check(matches(isDisplayed()));
  }

  @Test
  @Ignore
  public void showInfoWindowTest() {
    validateTestSetup();

    final TextMarkerViewOptions options = new TextMarkerViewOptions();
    options.position(new LatLng());
    options.text(TestConstants.TEXT_MARKER_TEXT);
    options.snippet(TestConstants.TEXT_MARKER_SNIPPET);
    options.title(TestConstants.TEXT_MARKER_TITLE);

    onView(withId(R.id.mapView)).perform(new AddTextMarkerViewAction(mapboxMap, options));
    onView(withText(TestConstants.TEXT_MARKER_TEXT)).check(matches(isDisplayed()));
    onView(withId(R.id.mapView)).perform(new ShowInfoWindowAction(mapboxMap));
    onView(withText(TestConstants.TEXT_MARKER_TITLE)).check(matches(isDisplayed()));
    onView(withText(TestConstants.TEXT_MARKER_SNIPPET)).check(matches(isDisplayed()));
  }

  private class AddTextMarkerViewAction implements ViewAction {

    private MapboxMap mapboxMap;
    private TextMarkerViewOptions options;

    AddTextMarkerViewAction(MapboxMap map, TextMarkerViewOptions markerOptions) {
      mapboxMap = map;
      options = markerOptions;
    }

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

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

    @Override
    public void perform(UiController uiController, View view) {
      mapboxMap.getMarkerViewManager().addMarkerViewAdapter(
        new MarkerViewActivity.TextAdapter(view.getContext(), mapboxMap));
      marker = mapboxMap.addMarker(options);
      uiController.loopMainThreadForAtLeast(250);
    }
  }

  private class ShowInfoWindowAction implements ViewAction {

    private MapboxMap mapboxMap;

    ShowInfoWindowAction(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.selectMarker(marker);
      uiController.loopMainThreadForAtLeast(250);
    }
  }
}