summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/test/java/com/mapbox/mapboxsdk/maps/MapPresenterTest.kt
blob: cd6bca353e9ebca67bd5055d52cb918f84a3388d (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
package com.mapbox.mapboxsdk.maps

import android.content.Context
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.Mockito.*
import org.mockito.junit.MockitoJUnitRunner

@RunWith(MockitoJUnitRunner::class)
class MapPresenterTest {
  private lateinit var mapPresenter: MapPresenter
  private lateinit var mapView: IMapView
  private lateinit var context: Context
  private lateinit var mapboxMapOptions: MapboxMapOptions
  private lateinit var mapChangeReceiver: MapChangeReceiver

  @Before
  fun setup() {
    mapView = mock(IMapView::class.java)
    context = mock(Context::class.java)
    mapChangeReceiver = mock(MapChangeReceiver::class.java)

    mapboxMapOptions = mock(MapboxMapOptions::class.java)
    doReturn(0xFFF0E9E1.toInt()).`when`(mapboxMapOptions).foregroundLoadColor
    doReturn(false).`when`(mapboxMapOptions).textureMode
    doReturn(null).`when`(mapboxMapOptions).localIdeographFontFamily
    doReturn(1f).`when`(mapboxMapOptions).pixelRatio

    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
  }

  @Test
  fun init_foregroundColorSet() {
    verify(mapView).setForegroundColor(0xFFF0E9E1.toInt())
  }

  @Test
  fun init_inflateInternalViews() {
    verify(mapView).inflateInternalViews()
  }

  @Test
  fun init_setViewOptions() {
    verify(mapView).setViewOptions()
  }

  @Test
  fun init_initializeTextureView() {
    reset(mapView)
    doReturn(true).`when`(mapboxMapOptions).textureMode
    doReturn(false).`when`(mapboxMapOptions).translucentTextureSurface
    doReturn(null).`when`(mapboxMapOptions).localIdeographFontFamily
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    verify(mapView).createTextureView(null, false)
  }

  @Test
  fun init_initializeTextureView_translucent() {
    reset(mapView)
    doReturn(true).`when`(mapboxMapOptions).textureMode
    doReturn(true).`when`(mapboxMapOptions).translucentTextureSurface
    doReturn(null).`when`(mapboxMapOptions).localIdeographFontFamily
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    verify(mapView).createTextureView(null, true)
  }

  @Test
  fun init_initializeTextureView_localFonts() {
    reset(mapView)
    doReturn(true).`when`(mapboxMapOptions).textureMode
    doReturn(true).`when`(mapboxMapOptions).translucentTextureSurface
    doReturn("comic-sans").`when`(mapboxMapOptions).localIdeographFontFamily
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    verify(mapView).createTextureView("comic-sans", true)
  }

  @Test
  fun init_initializeSurfaceView() {
    reset(mapView)
    doReturn(false).`when`(mapboxMapOptions).textureMode
    doReturn(null).`when`(mapboxMapOptions).localIdeographFontFamily
    doReturn(false).`when`(mapboxMapOptions).renderSurfaceOnTop
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    verify(mapView).createSurfaceView(null, false)
  }

  @Test
  fun init_initializeSurfaceView_LocalFonts() {
    reset(mapView)
    doReturn(false).`when`(mapboxMapOptions).textureMode
    doReturn("comic-sans").`when`(mapboxMapOptions).localIdeographFontFamily
    doReturn(true).`when`(mapboxMapOptions).renderSurfaceOnTop
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    verify(mapView).createSurfaceView("comic-sans", true)
  }

  @Test
  fun init_initializeNativeMapView() {
    reset(mapView)
    doReturn(false).`when`(mapboxMapOptions).crossSourceCollisions
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    verify(mapView).createNativeMapView(1f, false, mapChangeReceiver)
  }

  @Test
  fun init_initializeNativeMapView_pixelDensity() {
    reset(mapView)
    doReturn(false).`when`(mapboxMapOptions).crossSourceCollisions
    doReturn(0.5f).`when`(mapboxMapOptions).pixelRatio
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    verify(mapView).createNativeMapView(0.5f, false, mapChangeReceiver)
  }

  @Test
  fun init_initializeNativeMapView_crossSourceCollisions() {
    reset(mapView)
    doReturn(true).`when`(mapboxMapOptions).crossSourceCollisions
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    verify(mapView).createNativeMapView(1f, true, mapChangeReceiver)
  }

  @Test
  fun init_order_texture() {
    reset(mapView)
    doReturn(true).`when`(mapboxMapOptions).textureMode
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    val orderVerifier = inOrder(mapView)
    orderVerifier.verify(mapView).setForegroundColor(anyInt())
    orderVerifier.verify(mapView).inflateInternalViews()
    orderVerifier.verify(mapView).setViewOptions()
    orderVerifier.verify(mapView).createTextureView(null, false)
    orderVerifier.verify(mapView).createNativeMapView(anyFloat(), anyBoolean(), any(MapChangeReceiver::class.java))
  }

  @Test
  fun init_order_surface() {
    reset(mapView)
    doReturn(false).`when`(mapboxMapOptions).textureMode
    mapPresenter = MapPresenterImpl(mapView, context, mapboxMapOptions, mapChangeReceiver)
    val orderVerifier = inOrder(mapView)
    orderVerifier.verify(mapView).setForegroundColor(anyInt())
    orderVerifier.verify(mapView).inflateInternalViews()
    orderVerifier.verify(mapView).setViewOptions()
    orderVerifier.verify(mapView).createSurfaceView(null, false)
    orderVerifier.verify(mapView).createNativeMapView(anyFloat(), anyBoolean(), any(MapChangeReceiver::class.java))
  }
}