Skip to content

Commit bcd2d99

Browse files
committed
BasicNativeAndroidTest: Move gtest to a single flavor
The junit-gtest library will bring native test library and its c++ shared library into the final package. It's not easy to keep these necessary shared libraries into androidTest flavor only. So this CL adds a new flavor called nativeTest to include native test related libraries and run it with androidTest. For normal usage, we can use core flavor, the new default falvor without any native test related libraries. Signed-off-by: utzcoz <[email protected]>
1 parent 910bd7c commit bcd2d99

File tree

5 files changed

+59
-12
lines changed

5 files changed

+59
-12
lines changed

test_all.sh

+10-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,16 @@ for p in $(cat projects.conf); do
99
echo "====================================================================="
1010

1111
pushd $p > /dev/null # Silent pushd
12-
./gradlew $@ testDebug nexusOneApi30DebugAndroidTest --info | sed "s@^@$p @" # Prefix every line with directory
12+
13+
./gradlew $@ testDebug | sed "s@^@$p @" # Prefix every line with directory
14+
15+
if [ "$p" == "unit/BasicNativeAndroidTest" ]; then
16+
./gradlew $@ nexusOneApi30CoreDebugAndroidTest --info | sed "s@^@$p @" # Prefix every line with directory
17+
./gradlew $@ nexusOneApi30NativeTestDebugAndroidTest --info | sed "s@^@$p @"
18+
else
19+
./gradlew $@ nexusOneApi30DebugAndroidTest --info | sed "s@^@$p @" # Prefix every line with directory
20+
fi
21+
1322
code=${PIPESTATUS[0]}
1423
if [ "$code" -ne "0" ]; then
1524
exit $code

unit/BasicNativeAndroidTest/app/build.gradle

+25-5
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,28 @@ android {
1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
externalNativeBuild {
1919
cmake {
20-
arguments "-DANDROID_STL=c++_shared"
20+
arguments "-DANDROID_STL=c++_shared", "-DENABLE_NATIVE_TEST=OFF"
2121
}
2222
}
2323
}
24+
25+
flavorDimensions = ["default"]
26+
27+
productFlavors {
28+
core {
29+
dimension "default"
30+
applicationId = defaultConfig.applicationId
31+
}
32+
nativeTest {
33+
dimension "default"
34+
externalNativeBuild {
35+
cmake {
36+
arguments "-DENABLE_NATIVE_TEST=ON"
37+
}
38+
}
39+
}
40+
}
41+
2442
externalNativeBuild {
2543
cmake {
2644
path "src/main/cpp/CMakeLists.txt"
@@ -47,7 +65,8 @@ android {
4765
testOptions {
4866
managedDevices {
4967
devices {
50-
// run with ../gradlew nexusOneApi30DebugAndroidTest
68+
// run with ../gradlew nexusOneApi30CoreDebugAndroidTest without native tests
69+
// or ../gradlew nexusOneApi30NativeTestDebugAndroidTest with native tests
5170
nexusOneApi30(com.android.build.api.dsl.ManagedVirtualDevice) {
5271
// A lower resolution device is used here for better emulator performance
5372
device = "Nexus One"
@@ -62,9 +81,10 @@ android {
6281
}
6382

6483
dependencies {
65-
androidTestImplementation "junit:junit:$rootProject.junitVersion"
66-
implementation "androidx.test.ext:junit-gtest:$rootProject.junitGtestVersion"
67-
implementation "com.android.ndk.thirdparty:googletest:$rootProject.googletestVersion"
84+
nativeTestImplementation "androidx.test.ext:junit-gtest:$rootProject.junitGtestVersion"
85+
nativeTestImplementation "com.android.ndk.thirdparty:googletest:$rootProject.googletestVersion"
6886
androidTestImplementation "androidx.test:runner:$rootProject.runnerVersion"
6987
androidTestImplementation "androidx.test.ext:junit-ktx:$extJUnitVersion"
88+
androidTestImplementation "com.google.truth:truth:" + rootProject.truthVersion
89+
androidTestImplementation "junit:junit:$rootProject.junitVersion"
7090
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package com.example.android.testing.nativesample
2+
3+
import androidx.test.ext.junit.runners.AndroidJUnit4
4+
import androidx.test.platform.app.InstrumentationRegistry
5+
import com.google.common.truth.Truth.assertThat
6+
import org.junit.Test
7+
import org.junit.runner.RunWith
8+
9+
@RunWith(AndroidJUnit4::class)
10+
class DefaultInstrumentationTest {
11+
@Test
12+
fun useAppContext() {
13+
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
14+
assertThat(appContext.packageName).isEqualTo("com.example.android.testing.nativesample")
15+
}
16+
}

unit/BasicNativeAndroidTest/app/src/main/cpp/CMakeLists.txt

+8-6
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@ cmake_minimum_required(VERSION 3.10.2)
22

33
project(junit-gtest-example LANGUAGES CXX)
44

5-
find_package(googletest REQUIRED CONFIG)
6-
find_package(junit-gtest REQUIRED CONFIG)
7-
85
include_directories(include)
96

107
add_library(adder SHARED src/adder.cpp)
118

12-
add_library(adder-test SHARED test/adder_test.cpp)
9+
if (ENABLE_NATIVE_TEST)
10+
find_package(googletest REQUIRED CONFIG)
11+
find_package(junit-gtest REQUIRED CONFIG)
12+
13+
add_library(adder-test SHARED test/adder_test.cpp)
1314

14-
target_link_libraries(adder-test
15+
target_link_libraries(adder-test
1516
PRIVATE
1617
adder
1718
googletest::gtest
1819
junit-gtest::junit-gtest
19-
)
20+
)
21+
endif()

0 commit comments

Comments
 (0)