diff --git a/compose/scripts/testAndroidInEmulator.sh b/compose/scripts/testAndroidInEmulator.sh new file mode 100755 index 0000000000..498323df3d --- /dev/null +++ b/compose/scripts/testAndroidInEmulator.sh @@ -0,0 +1,99 @@ +#!/bin/bash + +echo "First need to start android emulator or connect device" + +cd "$(dirname "$0")" +cd ../frameworks/support + +export JAVA_TOOLS_JAR="$PWD/../../external/tools.jar" +export ALLOW_PUBLIC_REPOS=1 +export ANDROIDX_PROJECTS=COMPOSE + +select CURRENT_TASK in \ + ":compose:animation:animation-core:animation-core-samples:connectedDebugAndroidTest" \ + ":compose:animation:animation-core:connectedDebugAndroidTest" \ + ":compose:animation:animation-graphics:animation-graphics-samples:connectedDebugAndroidTest" \ + ":compose:animation:animation-graphics:connectedDebugAndroidTest" \ + ":compose:animation:animation:animation-samples:connectedDebugAndroidTest" \ + ":compose:animation:animation:connectedDebugAndroidTest" \ + ":compose:animation:animation:integration-tests:animation-demos:connectedDebugAndroidTest" \ + ":compose:benchmark-utils:connectedDebugAndroidTest" \ + ":compose:compiler:compiler-hosted:integration-tests:connectedDebugAndroidTest" \ + ":compose:foundation:foundation-layout:connectedDebugAndroidTest" \ + ":compose:foundation:foundation-layout:foundation-layout-samples:connectedDebugAndroidTest" \ + ":compose:foundation:foundation-layout:integration-tests:foundation-layout-demos:connectedDebugAndroidTest" \ + ":compose:foundation:foundation:connectedDebugAndroidTest" \ + ":compose:foundation:foundation:foundation-samples:connectedDebugAndroidTest" \ + ":compose:foundation:foundation:integration-tests:foundation-demos:connectedDebugAndroidTest" \ + ":compose:integration-tests:demos:common:connectedDebugAndroidTest" \ + ":compose:integration-tests:demos:connectedDebugAndroidTest" \ + ":compose:integration-tests:docs-snippets:connectedDebugAndroidTest" \ + ":compose:integration-tests:macrobenchmark-target:connectedDebugAndroidTest" \ + ":compose:integration-tests:macrobenchmark:connectedDebugAndroidTest" \ + ":compose:integration-tests:material-catalog:connectedDebugAndroidTest" \ + ":compose:material3:material3-window-size-class:connectedDebugAndroidTest" \ + ":compose:material3:material3-window-size-class:material3-window-size-class-samples:connectedDebugAndroidTest" \ + ":compose:material3:material3:connectedDebugAndroidTest" \ + ":compose:material3:material3:integration-tests:material3-catalog:connectedDebugAndroidTest" \ + ":compose:material3:material3:integration-tests:material3-demos:connectedDebugAndroidTest" \ + ":compose:material3:material3:material3-samples:connectedDebugAndroidTest" \ + ":compose:material:material-icons-core:connectedDebugAndroidTest" \ + ":compose:material:material-icons-core:material-icons-core-samples:connectedDebugAndroidTest" \ + ":compose:material:material-icons-extended-filled:connectedDebugAndroidTest" \ + ":compose:material:material-icons-extended-outlined:connectedDebugAndroidTest" \ + ":compose:material:material-icons-extended-rounded:connectedDebugAndroidTest" \ + ":compose:material:material-icons-extended-sharp:connectedDebugAndroidTest" \ + ":compose:material:material-icons-extended-twotone:connectedDebugAndroidTest" \ + ":compose:material:material-icons-extended:connectedDebugAndroidTest" \ + ":compose:material:material-ripple:connectedDebugAndroidTest" \ + ":compose:material:material:connectedDebugAndroidTest" \ + ":compose:material:material:integration-tests:material-catalog:connectedDebugAndroidTest" \ + ":compose:material:material:integration-tests:material-demos:connectedDebugAndroidTest" \ + ":compose:material:material:material-samples:connectedDebugAndroidTest" \ + ":compose:runtime:runtime-livedata:connectedDebugAndroidTest" \ + ":compose:runtime:runtime-livedata:runtime-livedata-samples:connectedDebugAndroidTest" \ + ":compose:runtime:runtime-rxjava2:connectedDebugAndroidTest" \ + ":compose:runtime:runtime-rxjava2:runtime-rxjava2-samples:connectedDebugAndroidTest" \ + ":compose:runtime:runtime-rxjava3:connectedDebugAndroidTest" \ + ":compose:runtime:runtime-rxjava3:runtime-rxjava3-samples:connectedDebugAndroidTest" \ + ":compose:runtime:runtime-saveable:connectedDebugAndroidTest" \ + ":compose:runtime:runtime-saveable:runtime-saveable-samples:connectedDebugAndroidTest" \ + ":compose:runtime:runtime:connectedDebugAndroidTest" \ + ":compose:runtime:runtime:integration-tests:connectedDebugAndroidTest" \ + ":compose:runtime:runtime:runtime-samples:connectedDebugAndroidTest" \ + ":compose:test-utils:connectedDebugAndroidTest" \ + ":compose:ui:ui-android-stubs:connectedDebugAndroidTest" \ + ":compose:ui:ui-geometry:connectedDebugAndroidTest" \ + ":compose:ui:ui-graphics:connectedDebugAndroidTest" \ + ":compose:ui:ui-graphics:ui-graphics-benchmark:test:connectedDebugAndroidTest" \ + ":compose:ui:ui-graphics:ui-graphics-samples:connectedDebugAndroidTest" \ + ":compose:ui:ui-inspection:connectedDebugAndroidTest" \ + ":compose:ui:ui-test-font:connectedDebugAndroidTest" \ + ":compose:ui:ui-test-junit4:connectedDebugAndroidTest" \ + ":compose:ui:ui-test-manifest:connectedDebugAndroidTest" \ + ":compose:ui:ui-test-manifest:integration-tests:testapp:connectedDebugAndroidTest" \ + ":compose:ui:ui-test:connectedDebugAndroidTest" \ + ":compose:ui:ui-test:ui-test-samples:connectedDebugAndroidTest" \ + ":compose:ui:ui-text-google-fonts:connectedDebugAndroidTest" \ + ":compose:ui:ui-text:connectedDebugAndroidTest" \ + ":compose:ui:ui-text:ui-text-samples:connectedDebugAndroidTest" \ + ":compose:ui:ui-tooling-data:connectedDebugAndroidTest" \ + ":compose:ui:ui-tooling-preview:connectedDebugAndroidTest" \ + ":compose:ui:ui-tooling:connectedDebugAndroidTest" \ + ":compose:ui:ui-unit:connectedDebugAndroidTest" \ + ":compose:ui:ui-unit:ui-unit-samples:connectedDebugAndroidTest" \ + ":compose:ui:ui-util:connectedDebugAndroidTest" \ + ":compose:ui:ui-viewbinding:connectedDebugAndroidTest" \ + ":compose:ui:ui-viewbinding:ui-viewbinding-samples:connectedDebugAndroidTest" \ + ":compose:ui:ui:connectedDebugAndroidTest" \ + ":compose:ui:ui:integration-tests:ui-demos:connectedDebugAndroidTest" \ + ":compose:ui:ui:ui-samples:connectedDebugAndroidTest" +do + ../../gradlew -i --no-daemon \ + -Pandroidx.compose.multiplatformEnabled=false \ + -Pjetbrains.compose.jsCompilerTestsEnabled=false \ + -Pandroidx.validateProjectStructure=false \ + -Pkotlin.compiler.execution.strategy="in-process" \ + $CURRENT_TASK + break +done diff --git a/compose/scripts/testAndroidUnit.sh b/compose/scripts/testAndroidUnit.sh new file mode 100755 index 0000000000..e4d3b82f74 --- /dev/null +++ b/compose/scripts/testAndroidUnit.sh @@ -0,0 +1,102 @@ +#!/bin/bash + +cd "$(dirname "$0")" +cd ../frameworks/support + +export JAVA_TOOLS_JAR="$PWD/../../external/tools.jar" +export ALLOW_PUBLIC_REPOS=1 +export ANDROIDX_PROJECTS=COMPOSE + +../../gradlew --no-daemon \ + -Pandroidx.compose.multiplatformEnabled=false \ + -Pjetbrains.compose.jsCompilerTestsEnabled=false \ + -Pandroidx.validateProjectStructure=false \ + -Pkotlin.compiler.execution.strategy="in-process" \ + :compose:animation:animation-core:animation-core-benchmark:testDebugUnitTest \ + :compose:animation:animation-core:animation-core-samples:testDebugUnitTest \ + :compose:animation:animation-core:testDebugUnitTest \ + :compose:animation:animation-graphics:animation-graphics-samples:testDebugUnitTest \ + :compose:animation:animation-graphics:testDebugUnitTest \ + :compose:animation:animation:animation-samples:testDebugUnitTest \ + :compose:animation:animation:integration-tests:animation-demos:testDebugUnitTest \ + :compose:animation:animation:testDebugUnitTest \ + :compose:benchmark-utils:benchmark-utils-benchmark:testDebugUnitTest \ + :compose:benchmark-utils:testDebugUnitTest \ + :compose:foundation:foundation-benchmark:testDebugUnitTest \ + :compose:foundation:foundation-layout:foundation-layout-benchmark:testDebugUnitTest \ + :compose:foundation:foundation-layout:foundation-layout-samples:testDebugUnitTest \ + :compose:foundation:foundation-layout:integration-tests:foundation-layout-demos:testDebugUnitTest \ + :compose:foundation:foundation-layout:testDebugUnitTest \ + :compose:foundation:foundation:foundation-samples:testDebugUnitTest \ + :compose:foundation:foundation:integration-tests:foundation-demos:testDebugUnitTest \ + :compose:foundation:foundation:testDebugUnitTest \ + :compose:integration-tests:demos:common:testDebugUnitTest \ + :compose:integration-tests:demos:testDebugUnitTest \ + :compose:integration-tests:docs-snippets:testDebugUnitTest \ + :compose:integration-tests:macrobenchmark-target:testDebugUnitTest \ + :compose:integration-tests:macrobenchmark:testDebugUnitTest \ + :compose:integration-tests:material-catalog:testDebugUnitTest \ + :compose:material3:material3-window-size-class:material3-window-size-class-samples:testDebugUnitTest \ + :compose:material3:material3-window-size-class:testDebugUnitTest \ + :compose:material3:material3:integration-tests:material3-catalog:testDebugUnitTest \ + :compose:material3:material3:integration-tests:material3-demos:testDebugUnitTest \ + :compose:material3:material3:material3-samples:testDebugUnitTest \ + :compose:material3:material3:testDebugUnitTest \ + :compose:material:material-benchmark:testDebugUnitTest \ + :compose:material:material-icons-core:material-icons-core-samples:testDebugUnitTest \ + :compose:material:material-icons-core:testDebugUnitTest \ + :compose:material:material-icons-extended-filled:testDebugUnitTest \ + :compose:material:material-icons-extended-outlined:testDebugUnitTest \ + :compose:material:material-icons-extended-rounded:testDebugUnitTest \ + :compose:material:material-icons-extended-sharp:testDebugUnitTest \ + :compose:material:material-icons-extended-twotone:testDebugUnitTest \ + :compose:material:material-icons-extended:testDebugUnitTest \ + :compose:material:material-ripple:testDebugUnitTest \ + :compose:material:material:integration-tests:material-catalog:testDebugUnitTest \ + :compose:material:material:integration-tests:material-demos:testDebugUnitTest \ + :compose:material:material:material-samples:testDebugUnitTest \ + :compose:material:material:testDebugUnitTest \ + :compose:runtime:runtime-livedata:runtime-livedata-samples:testDebugUnitTest \ + :compose:runtime:runtime-livedata:testDebugUnitTest \ + :compose:runtime:runtime-rxjava2:runtime-rxjava2-samples:testDebugUnitTest \ + :compose:runtime:runtime-rxjava2:testDebugUnitTest \ + :compose:runtime:runtime-rxjava3:runtime-rxjava3-samples:testDebugUnitTest \ + :compose:runtime:runtime-rxjava3:testDebugUnitTest \ + :compose:runtime:runtime-saveable:runtime-saveable-samples:testDebugUnitTest \ + :compose:runtime:runtime-saveable:testDebugUnitTest \ + :compose:runtime:runtime:benchmark:testDebugUnitTest \ + :compose:runtime:runtime:integration-tests:testDebugUnitTest \ + :compose:runtime:runtime:runtime-samples:testDebugUnitTest \ + :compose:runtime:runtime:testDebugUnitTest \ + :compose:test-utils:testDebugUnitTest \ + :compose:ui:ui-android-stubs:testDebugUnitTest \ + :compose:ui:ui-benchmark:testDebugUnitTest \ + :compose:ui:ui-geometry:testDebugUnitTest \ + :compose:ui:ui-graphics:testDebugUnitTest \ + :compose:ui:ui-graphics:ui-graphics-benchmark:test:testDebugUnitTest \ + :compose:ui:ui-graphics:ui-graphics-benchmark:testDebugUnitTest \ + :compose:ui:ui-graphics:ui-graphics-samples:testDebugUnitTest \ + :compose:ui:ui-inspection:testDebugUnitTest \ + :compose:ui:ui-test-font:testDebugUnitTest \ + :compose:ui:ui-test-manifest:integration-tests:testapp:testDebugUnitTest \ + :compose:ui:ui-test-manifest:testDebugUnitTest \ + :compose:ui:ui-test:ui-test-samples:testDebugUnitTest \ + :compose:ui:ui-text-google-fonts:testDebugUnitTest \ + :compose:ui:ui-text:testDebugUnitTest \ + :compose:ui:ui-text:ui-text-benchmark:testDebugUnitTest \ + :compose:ui:ui-text:ui-text-samples:testDebugUnitTest \ + :compose:ui:ui-tooling-data:testDebugUnitTest \ + :compose:ui:ui-tooling-preview:testDebugUnitTest \ + :compose:ui:ui-tooling:testDebugUnitTest \ + :compose:ui:ui-unit:testDebugUnitTest \ + :compose:ui:ui-unit:ui-unit-samples:testDebugUnitTest \ + :compose:ui:ui-util:testDebugUnitTest \ + :compose:ui:ui-viewbinding:testDebugUnitTest \ + :compose:ui:ui-viewbinding:ui-viewbinding-samples:testDebugUnitTest \ + :compose:ui:ui:integration-tests:ui-demos:testDebugUnitTest \ + :compose:ui:ui:ui-samples:testDebugUnitTest + +# :compose:compiler:compiler-hosted:integration-tests:testDebugUnitTest \ TODO Compile with errors +# :compose:ui:ui:testDebugUnitTest \ TODO missing .robolectric +# :compose:ui:ui-test-junit4:testDebugUnitTest \ TODO missing robolectric +# :compose:ui:ui-test:testDebugUnitTest \ TODO missing robolectric