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

import com.mapbox.mapboxsdk.camera.CameraPosition
import com.mapbox.mapboxsdk.camera.CameraUpdateFactory
import com.mapbox.mapboxsdk.geometry.LatLng
import com.mapbox.mapboxsdk.geometry.LatLngBounds
import com.mapbox.mapboxsdk.style.layers.TransitionOptions
import io.mockk.*
import junit.framework.Assert.assertEquals
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith
import org.robolectric.RobolectricTestRunner

@RunWith(RobolectricTestRunner::class)
class MapboxMapTest {

  private lateinit var mapboxMap: MapboxMap

  private lateinit var nativeMapView: NativeMapView

  private lateinit var transform: Transform

  private lateinit var cameraChangeDispatcher: CameraChangeDispatcher

  @Before
  fun setup() {
    cameraChangeDispatcher = spyk()
    nativeMapView = mockk(relaxed = true)
    transform = mockk(relaxed = true)
    mapboxMap = MapboxMap(nativeMapView, transform, mockk(relaxed = true), null, null, cameraChangeDispatcher)
    every { nativeMapView.isDestroyed } returns false
    every { nativeMapView.nativePtr } returns 5
    mapboxMap.injectLocationComponent(spyk())
    mapboxMap.setStyle(Style.MAPBOX_STREETS)
    mapboxMap.onFinishLoadingStyle()
  }

  @Test
  fun testTransitionOptions() {
    val expected = TransitionOptions(100, 200)
    mapboxMap.style?.transition = expected
    verify { nativeMapView.transitionOptions = expected }
  }

  @Test
  fun testMoveCamera() {
    val callback = mockk<MapboxMap.CancelableCallback>()
    val target = LatLng(1.0, 2.0)
    val expected = CameraPosition.Builder().target(target).build()
    val update = CameraUpdateFactory.newCameraPosition(expected)
    mapboxMap.moveCamera(update, callback)
    verify { transform.moveCamera(mapboxMap, update, callback) }
  }

  @Test
  fun testMinZoom() {
    mapboxMap.setMinZoomPreference(10.0)
    verify { transform.minZoom = 10.0 }
  }

  @Test
  fun testMaxZoom() {
    mapboxMap.setMaxZoomPreference(10.0)
    verify { transform.maxZoom = 10.0 }
  }

  @Test
  fun testFpsListener() {
    val fpsChangedListener = mockk<MapboxMap.OnFpsChangedListener>()
    mapboxMap.onFpsChangedListener = fpsChangedListener
    assertEquals("Listener should match", fpsChangedListener, mapboxMap.onFpsChangedListener)
  }

  @Test
  fun testTilePrefetch() {
    mapboxMap.prefetchesTiles = true
    verify { nativeMapView.prefetchTiles = true }
  }

  @Test
  fun testCameraForLatLngBounds() {
    val bounds = LatLngBounds.Builder().include(LatLng()).include(LatLng(1.0, 1.0)).build()
    mapboxMap.setLatLngBoundsForCameraTarget(bounds)
    verify { nativeMapView.setLatLngBounds(bounds) }
  }

  @Test(expected = IllegalArgumentException::class)
  fun testAnimateCameraChecksDurationPositive() {
    mapboxMap.animateCamera(CameraUpdateFactory.newLatLng(LatLng(30.0, 30.0)), 0, null)
  }

  @Test(expected = IllegalArgumentException::class)
  fun testEaseCameraChecksDurationPositive() {
    mapboxMap.easeCamera(CameraUpdateFactory.newLatLng(LatLng(30.0, 30.0)), 0, null)
  }

  @Test
  fun testGetNativeMapPtr() {
    assertEquals(5, mapboxMap.nativeMapPtr)
  }

  @Test
  fun testNativeMapIsNotCalledOnStateSave() {
    clearMocks(nativeMapView)
    mapboxMap.onSaveInstanceState(mockk(relaxed = true))
    verify { nativeMapView wasNot Called }
  }

  @Test
  fun testCameraChangeDispatcherCleared() {
    mapboxMap.onDestroy()
    verify { cameraChangeDispatcher.onDestroy() }
  }

  @Test
  fun testStyleClearedOnDestroy() {
    val style = mockk<Style>(relaxed = true)
    val builder = mockk<Style.Builder>(relaxed = true)
    every { builder.build(nativeMapView) } returns style
    mapboxMap.setStyle(builder)

    mapboxMap.onDestroy()
    verify(exactly = 1) { style.clear() }
  }
}