1LOCAL_MODULE_CLASS := FAKE
2LOCAL_IS_HOST_MODULE := true
3LOCAL_DONT_CHECK_MODULE := true
4LOCAL_UNINSTALLABLE_MODULE := true
5LOCAL_BUILT_MODULE_STEM := test.fake
6
7# Construct the runtime classpath.
8classpath_jars := $(call java-lib-files, $(test_runtime_libraries), HOST)
9
10# Construct the list of test classes from the source file names.
11test_source_files := $(call find-files-in-subdirs, $(test_source_directory), "*Test.java", .)
12# Filter out tests that will not pass running under make.
13test_source_files := $(filter-out org/robolectric/shadows/SQLiteCursorTest.java, $(test_source_files))
14
15# Build the command that honors the test class filter, if any.
16test_filter_command := $(if $(ROBOTEST_FILTER),grep -E "$(ROBOTEST_FILTER)",)
17
18# Convert the test source file paths into package names by removing ".java" extension and replacing "/" with "."
19test_class_names := $(sort $(subst /,., $(basename $(test_source_files))))
20# Remove whitespace and sort the tests in alphabetical order.
21ifdef test_filter_command
22  test_class_names := $(sort $(shell echo '$(test_class_names)' | tr ' ' '\n' | $(test_filter_command)))
23endif
24
25include $(BUILD_SYSTEM)/base_rules.mk
26
27# Define rules that copy test resource files to the intermediates folder.
28intermediates := $(call local-intermediates-dir)
29copy_test_resource_files :=
30ifdef test_resources_directory
31  test_resources_target_path := $(intermediates)/src/test/resources
32  test_resource_files := $(call find-files-in-subdirs, $(test_resources_directory), "*" -and -type f, .)
33  copy_test_resource_file_pairs := $(foreach j, $(test_resource_files), $(test_resources_directory)/$(j):$(test_resources_target_path)/$(j))
34  copy_test_resource_files := $(call copy-many-files, $(copy_test_resource_file_pairs))
35endif
36
37# Define rules that copy android-all jars to the intermediates folder.
38local_android_all_source_jar := $(call java-lib-files,robolectric-host-android_all,HOST)
39android_all_source_dir := prebuilts/misc/common/robolectric/android-all
40android_all_target_dir := $(intermediates)/android-all
41copy_android_all_jar_pairs := \
42  $(android_all_source_dir)/android-all-4.1.2_r1-robolectric-r1.jar:$(android_all_target_dir)/android-all-4.1.2_r1-robolectric-r1.jar \
43  $(android_all_source_dir)/android-all-4.2.2_r1.2-robolectric-r1.jar:$(android_all_target_dir)/android-all-4.2.2_r1.2-robolectric-r1.jar \
44  $(android_all_source_dir)/android-all-4.3_r2-robolectric-r1.jar:$(android_all_target_dir)/android-all-4.3_r2-robolectric-r1.jar \
45  $(android_all_source_dir)/android-all-4.4_r1-robolectric-r2.jar:$(android_all_target_dir)/android-all-4.4_r1-robolectric-r2.jar \
46  $(android_all_source_dir)/android-all-5.0.2_r3-robolectric-r0.jar:$(android_all_target_dir)/android-all-5.0.2_r3-robolectric-r0.jar \
47  $(android_all_source_dir)/android-all-5.1.1_r9-robolectric-r2.jar:$(android_all_target_dir)/android-all-5.1.1_r9-robolectric-r2.jar \
48  $(android_all_source_dir)/android-all-6.0.1_r3-robolectric-r1.jar:$(android_all_target_dir)/android-all-6.0.1_r3-robolectric-r1.jar \
49  $(android_all_source_dir)/android-all-7.0.0_r1-robolectric-r1.jar:$(android_all_target_dir)/android-all-7.0.0_r1-robolectric-r1.jar \
50  $(android_all_source_dir)/android-all-7.1.0_r7-robolectric-r1.jar:$(android_all_target_dir)/android-all-7.1.0_r7-robolectric-r1.jar \
51  $(android_all_source_dir)/android-all-8.0.0_r4-robolectric-r1.jar:$(android_all_target_dir)/android-all-8.0.0_r4-robolectric-r1.jar \
52  $(android_all_source_dir)/android-all-8.1.0-robolectric-4611349.jar:$(android_all_target_dir)/android-all-8.1.0-robolectric-4611349.jar \
53  $(android_all_source_dir)/android-all-9-robolectric-4913185-2.jar:$(android_all_target_dir)/android-all-9-robolectric-4913185-2.jar \
54  $(android_all_source_dir)/android-all-9plus-robolectric-5616371.jar:$(android_all_target_dir)/android-all-9plus-robolectric-5616371.jar \
55  $(android_all_source_dir)/android-all-R-beta2-robolectric-6625208.jar:$(android_all_target_dir)/android-all-R-beta2-robolectric-6625208.jar \
56  $(local_android_all_source_jar):$(android_all_target_dir)/android-all-S-robolectric-r0.jar
57copy_android_all_jars := $(call copy-many-files, $(copy_android_all_jar_pairs))
58
59# If debugging the tests was requested, set up the JVM parameters to enable it.
60debug_test_args :=
61ifdef DEBUG_ROBOLECTRIC
62    # The arguments to the JVM needed to debug the tests.
63    # - server: wait for connection rather than connecting to a debugger
64    # - transport: how to accept debugger connections (sockets)
65    # - address: the host and port on which to accept debugger connections
66    # - suspend: do not execute any code until the debugger connects
67    debug_test_args := -Xdebug -agentlib:jdwp=server=y,transport=dt_socket,address=localhost:5005,suspend=y
68endif
69
70# Snapshot the variables so they cannot be polluted before the module is built.
71$(LOCAL_BUILT_MODULE): private_java := $(JAVA)
72$(LOCAL_BUILT_MODULE): private_debug_test_args := $(debug_test_args)
73$(LOCAL_BUILT_MODULE): private_test_base_dir := $(intermediates)
74$(LOCAL_BUILT_MODULE): private_test_class_names := $(test_class_names)
75$(LOCAL_BUILT_MODULE): private_host_jdk_tools_jar := $(HOST_JDK_TOOLS_JAR)
76$(LOCAL_BUILT_MODULE): private_android_all_dir := $(android_all_target_dir)
77$(LOCAL_BUILT_MODULE): private_classpath_jars := $(call normalize-path-list, $(classpath_jars))
78
79# Always re-run the tests, even if nothing has changed.
80# Until the build system has a dedicated "no cache" option, claim to write
81# a file that is never produced.
82$(LOCAL_BUILT_MODULE): private_nocache := $(LOCAL_BUILT_MODULE).nocache
83$(LOCAL_BUILT_MODULE): .KATI_IMPLICIT_OUTPUTS := $(LOCAL_BUILT_MODULE).nocache
84
85# Define the basic recipe for building this module to execute the tests.
86$(LOCAL_BUILT_MODULE): $(copy_test_resource_files) $(copy_android_all_jars) $(classpath_jars)
87	$(hide) rm -f "$(private_nocache)"
88	$(hide) $(private_java) \
89	  -Drobolectric.offline=true \
90	  -Drobolectric.resourcesMode=binary \
91	  -Drobolectric-tests.base-dir=$(private_test_base_dir) \
92	  -Drobolectric.dependency.dir=$(private_android_all_dir) \
93	  $(private_debug_test_args) \
94	  -cp $(private_host_jdk_tools_jar):$(private_test_base_dir):$(private_classpath_jars) \
95	  org.junit.runner.JUnitCore \
96	  $(private_test_class_names)
97