Upgrade to Pro — share decks privately, control downloads, hide ads and more …

CIでAndroidUIテストの様子を録画してみた

 CIでAndroidUIテストの様子を録画してみた

Mobile勉強会 Wantedly × チームラボ #5
https://wantedly.connpass.com/event/244011/

mkeeda

May 17, 2022
Tweet

More Decks by mkeeda

Other Decks in Programming

Transcript

  1. About me • mkeeda (向井⽥ ⼀平) • Twitter: @mr_mkeeda •

    Github: @mkeeda • Android Engineer at Cybozu, Inc 2
  2. Androidデバイス画⾯収録の基本 • 録画開始 • adb shell screenrecord <ファイルパス> • ※ファイルパスはAndroidデバイスのパス

    • 録画停⽌ • Ctrl + C (mac は Command + C) • 録画ファイル取得 • adb pull <録画ファイルのパス> <ローカルデバイスの保存先パス> 5
  3. テストケースごとに録画してみる • ScreenRecordRule を作る • “record_<テストメソッド名>.mp4” というファイル名で保存する 6 @RunWith(AndroidJUnit4::class) class

    SampleUiTest { @get:Rule var activityRule: ActivityScenarioRule<LoginActivity> = ActivityScenarioRule(LoginActivity::class.java) @get:Rule var screenRecordRule = ScreenRecordRule() @Test fun test() { // run test } }
  4. テストコードから adb コマンドを実⾏ • UiAutomation.executeShellCommand(String command) を使う • ローカルマシンで adb

    shell <command> をするのと同等 7 val uiAutomation = InstrumentationRegistry.getInstrumentation().uiAutomation // ࿥ը։࢝ uiAutomation.executeShellCommand("screenrecord /sdcard/record.mp4") // ࿥ըऴྃ (Ctrl + C) ϓϩηεID͕ඞཁ uiAutomation.executeShellCommand("kill -SIGINT $screenRecordProcessId")
  5. screenrecord のプロセスを得る 8 fun executeCommand(cmd: String): String { val parcelFileDescriptor

    = uiAutomation.executeShellCommand(cmd) return ParcelFileDescriptor.AutoCloseInputStream(parcelFileDescriptor).use { inputStream -> inputStream.readBytes().toString(Charset.defaultCharset()) } } fun findProcessIds(processName: String): List<Int> { return executeCommand(cmd = "pidof $processName") .trim() .split(Regex("\\s+")) .filter { it.isNotEmpty() } .map { it.toInt() } } val screenRecordProcessIds = findProcessIds(processName = "screenrecord")
  6. ScreenRecordRule 9 class ScreenRecordRule : TestWatcher() { private val shell

    = Shell() private var screenRecordProcessIds: List<Int> = emptyList() override fun starting(description: Description) { shell.executeCommand(cmd = "screenrecord /sdcard/record_${description.methodName}.mp4", awaitOutput = false) screenRecordProcessIds = shell.findProcessIds(processName = "screenrecord") } override fun finished(description: Description) { // গ͠஗Ԇ͔ͤͯ͞Βऴྃͤ͞ͳ͍ͱ࠷ޙ·Ͱ࿥ըͰ͖ͳ͍ͱ͖͕͋ͬͨͷͰ࢓ํͳ͘ Thread.sleep(5000) // ͢΂ͯͷscreenrecordϓϩηεΛࢭΊΔ // 1σόΠεͰ࣮ߦ͍ͯ͠Ε͹ଞͷςετέʔεͷ࿥ըΛࢭΊͯ͠·͏Մೳੑ͸௿͍͸ͣ screenRecordProcessIds.forEach { pid -> shell.executeCommand(cmd = "kill -SIGINT $pid", awaitOutput = false) } } }
  7. Github Actionsでの録画データの回収 • テストが失敗したときだけ録画をCIのアーティファクトとして保存する 10 - name: Run android tests

    uses: reactivecircus/android-emulator-runner@v2 with: api-level: 31 arch: x86_64 disable-animations: true script: | ./gradlew connectedDebugAndroidTest || (mkdir screen_record; adb shell 'ls sdcard/record_*.mp4' | tr -d '\r' | xargs -I% adb pull % ./screen_record && exit 1) - name: Save screen record if: failure() uses: actions/upload-artifact@v2 with: name: screen-records path: ./screen_record
  8. 参考 • Android Debug Bridge (adb) | Android Developers 


    https://developer.android.com/studio/command-line/adb • UiAutomation | Android Developers 
 https://developer.android.com/reference/android/app/ UiAutomation#executeShellCommand(java.lang.String) • androidx.benchmark.Shell 
 https://cs.android.com/androidx/platform/frameworks/support/+/ androidx-main:benchmark/benchmark-common/src/main/java/androidx/ benchmark/Shell.kt 12