Skip to content

Commit 4eebb0a

Browse files
Get informative errors in tests (#320)
* Get informative values comparison error message in tests * Enable debug logs * More info
1 parent c7396e7 commit 4eebb0a

File tree

7 files changed

+80
-7
lines changed

7 files changed

+80
-7
lines changed

MapboxSearch/base/src/main/java/com/mapbox/search/base/utils/extension/Expected.kt

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
package com.mapbox.search.base.utils.extension
22

3+
import androidx.annotation.RestrictTo
34
import com.mapbox.bindgen.Expected
45
import com.mapbox.bindgen.ExpectedFactory
56

7+
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP_PREFIX)
68
fun <E, V, V1> Expected<E, V>.flatMap(transformer: (V) -> Expected<E, V1>): Expected<E, V1> {
79
return if (isValue) {
810
transformer(requireNotNull(value))
@@ -11,6 +13,7 @@ fun <E, V, V1> Expected<E, V>.flatMap(transformer: (V) -> Expected<E, V1>): Expe
1113
}
1214
}
1315

16+
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP_PREFIX)
1417
suspend fun <E, V, V1> Expected<E, V>.suspendFlatMap(transformer: suspend (V) -> Expected<E, V1>): Expected<E, V1> {
1518
return if (isValue) {
1619
transformer(requireNotNull(value))
@@ -19,10 +22,22 @@ suspend fun <E, V, V1> Expected<E, V>.suspendFlatMap(transformer: suspend (V) ->
1922
}
2023
}
2124

22-
fun <E, V> Expected<E, V>.realToString(): String {
25+
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP_PREFIX)
26+
fun <E, V> Expected<E, V>.toPrettyString(): String {
2327
return if (isValue) {
2428
"Value: $value"
2529
} else {
2630
"Error: $error"
2731
}
2832
}
33+
34+
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP_PREFIX)
35+
fun <E, V> Expected<E, V>.equalsTo(e: Expected<E, V>): Boolean {
36+
return if (isValue && e.isValue) {
37+
value == e.value
38+
} else if (isError && e.isError) {
39+
error == e.error
40+
} else {
41+
false
42+
}
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package com.mapbox.search.common.tests
2+
3+
import com.mapbox.bindgen.Expected
4+
import org.junit.Assert.fail
5+
6+
private fun <E, V> Expected<E, V>.toPrettyString(): String {
7+
return if (isValue) {
8+
"Value: $value"
9+
} else {
10+
"Error: $error"
11+
}
12+
}
13+
14+
private fun <E, V> Expected<E, V>.equalsTo(e: Expected<E, V>): Boolean {
15+
return if (isValue && e.isValue) {
16+
value == e.value
17+
} else if (isError && e.isError) {
18+
error == e.error
19+
} else {
20+
false
21+
}
22+
}
23+
24+
fun <E, V> assertEqualsExpected(expected: Expected<E, V>, actual: Expected<E, V>) {
25+
if (!expected.equalsTo(actual)) {
26+
fail("Expected ${expected.toPrettyString()}, but was ${actual.toPrettyString()}")
27+
}
28+
}

MapboxSearch/discover/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ dependencies {
8484

8585
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_5_version"
8686
testImplementation "org.junit.jupiter:junit-jupiter-engine:$junit_5_version"
87-
8887
testImplementation project(":common-tests")
8988

9089
androidTestImplementation "androidx.test:runner:$androidx_test_runner_version"
9190
androidTestImplementation "androidx.test.ext:junit:$androidx_junit_version"
9291
androidTestImplementation "androidx.test.espresso:espresso-core:$espresso_core_version"
9392
androidTestImplementation "com.squareup.okhttp3:mockwebserver:$okhttp3_version"
93+
androidTestImplementation project(":common-tests")
9494
}

MapboxSearch/discover/src/androidTest/java/com/mapbox/search/discover/DiscoverIntegrationTest.kt

+15-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import android.app.Application
44
import android.content.Context
55
import androidx.test.ext.junit.runners.AndroidJUnit4
66
import androidx.test.platform.app.InstrumentationRegistry
7+
import com.mapbox.bindgen.ExpectedFactory
8+
import com.mapbox.common.LogConfiguration
9+
import com.mapbox.common.LoggingLevel
710
import com.mapbox.common.MapboxOptions
811
import com.mapbox.geojson.BoundingBox
912
import com.mapbox.geojson.Point
@@ -21,13 +24,15 @@ import com.mapbox.search.common.IsoLanguageCode
2124
import com.mapbox.search.common.RoutablePoint
2225
import com.mapbox.search.common.SearchRequestException
2326
import com.mapbox.search.common.concurrent.SearchSdkMainThreadWorker
27+
import com.mapbox.search.common.tests.assertEqualsExpected
2428
import com.mapbox.search.internal.bindgen.ApiType
2529
import kotlinx.coroutines.runBlocking
2630
import okhttp3.mockwebserver.MockResponse
2731
import okhttp3.mockwebserver.MockWebServer
2832
import org.junit.Assert.assertEquals
2933
import org.junit.Assert.assertTrue
3034
import org.junit.Before
35+
import org.junit.BeforeClass
3136
import org.junit.Test
3237
import org.junit.runner.RunWith
3338
import java.util.Locale
@@ -220,8 +225,10 @@ internal class DiscoverIntegrationTest {
220225
)
221226
}
222227

223-
assertTrue(response.isValue)
224-
assertEquals(0, requireNotNull(response.value).size)
228+
assertEqualsExpected(
229+
ExpectedFactory.createValue(emptyList()),
230+
response,
231+
)
225232
}
226233

227234
@Test
@@ -391,5 +398,11 @@ internal class DiscoverIntegrationTest {
391398
.setResponseCode(200)
392399
.setBody(readFileFromAssets(bodyContentPath))
393400
}
401+
402+
@BeforeClass
403+
@JvmStatic
404+
fun enableDebugLogs() {
405+
LogConfiguration.setLoggingLevel(LoggingLevel.DEBUG)
406+
}
394407
}
395408
}

MapboxSearch/place-autocomplete/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ dependencies {
8383

8484
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_5_version"
8585
testImplementation "org.junit.jupiter:junit-jupiter-engine:$junit_5_version"
86-
8786
testImplementation project(":common-tests")
8887

8988
androidTestImplementation "androidx.test:runner:$androidx_test_runner_version"
9089
androidTestImplementation "androidx.test.ext:junit:$androidx_junit_version"
9190
androidTestImplementation "androidx.test.espresso:espresso-core:$espresso_core_version"
9291
androidTestImplementation "com.squareup.okhttp3:mockwebserver:$okhttp3_version"
92+
androidTestImplementation project(':common-tests')
9393
}

MapboxSearch/place-autocomplete/src/androidTest/java/com/mapbox/search/autocomplete/PlaceAutocompleteIntegrationTest.kt

+15-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import android.app.Application
44
import android.content.Context
55
import androidx.test.ext.junit.runners.AndroidJUnit4
66
import androidx.test.platform.app.InstrumentationRegistry
7+
import com.mapbox.bindgen.ExpectedFactory
8+
import com.mapbox.common.LogConfiguration
9+
import com.mapbox.common.LoggingLevel
710
import com.mapbox.common.MapboxOptions
811
import com.mapbox.common.location.LocationProvider
912
import com.mapbox.geojson.BoundingBox
@@ -26,6 +29,7 @@ import com.mapbox.search.common.metadata.OpenHours
2629
import com.mapbox.search.common.metadata.OpenPeriod
2730
import com.mapbox.search.common.metadata.WeekDay
2831
import com.mapbox.search.common.metadata.WeekTimestamp
32+
import com.mapbox.search.common.tests.assertEqualsExpected
2933
import com.mapbox.search.internal.bindgen.ApiType
3034
import kotlinx.coroutines.runBlocking
3135
import okhttp3.mockwebserver.Dispatcher
@@ -38,6 +42,7 @@ import org.junit.Assert.assertEquals
3842
import org.junit.Assert.assertNotNull
3943
import org.junit.Assert.assertTrue
4044
import org.junit.Before
45+
import org.junit.BeforeClass
4146
import org.junit.Test
4247
import org.junit.runner.RunWith
4348
import java.io.IOException
@@ -137,8 +142,10 @@ internal class PlaceAutocompleteIntegrationTest {
137142
placeAutocomplete.suggestions(TEST_QUERY)
138143
}
139144

140-
assertTrue(response.isValue)
141-
assertTrue(requireNotNull(response.value).isEmpty())
145+
assertEqualsExpected(
146+
ExpectedFactory.createValue(emptyList()),
147+
response,
148+
)
142149
}
143150

144151
@Test
@@ -559,5 +566,11 @@ internal class PlaceAutocompleteIntegrationTest {
559566
.setResponseCode(200)
560567
.setBody(readFileFromAssets(bodyContentPath))
561568
}
569+
570+
@BeforeClass
571+
@JvmStatic
572+
fun enableDebugLogs() {
573+
LogConfiguration.setLoggingLevel(LoggingLevel.DEBUG)
574+
}
562575
}
563576
}

MapboxSearch/sample/src/main/java/com/mapbox/search/sample/SampleApplication.kt

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ import com.mapbox.common.HttpServiceFactory
1414
import com.mapbox.common.HttpServiceInterceptorInterface
1515
import com.mapbox.common.HttpServiceInterceptorRequestContinuation
1616
import com.mapbox.common.HttpServiceInterceptorResponseContinuation
17+
import com.mapbox.common.LogConfiguration
18+
import com.mapbox.common.LoggingLevel
1719

1820
open class SampleApplication : Application() {
1921

@@ -31,6 +33,8 @@ open class SampleApplication : Application() {
3133
return
3234
}
3335

36+
LogConfiguration.setLoggingLevel(LoggingLevel.DEBUG)
37+
3438
fun filter(url: String): Boolean {
3539
return !onlySearchLogs || SEARCH_ENDPOINTS_URL.any { url.startsWith(it) }
3640
}

0 commit comments

Comments
 (0)