1{ 2 // Test mappings for SystemUI unit tests. 3 // For e2e mappings, see go/sysui-e2e-test-mapping 4 5 // v2/android-virtual-infra/test_mapping/presubmit-avd 6 "presubmit": [ 7 { 8 "name": "SystemUIGoogleTests" 9 }, 10 { 11 "name": "SystemUIClocksTests", 12 "options": [ 13 { 14 "exclude-annotation": "org.junit.Ignore" 15 }, 16 { 17 "exclude-annotation": "androidx.test.filters.FlakyTest" 18 } 19 ] 20 }, 21 { 22 // Permission indicators 23 "name": "CtsPermissionUiTestCases", 24 "options": [ 25 { 26 "exclude-annotation": "org.junit.Ignore" 27 }, 28 { 29 "exclude-annotation": "androidx.test.filters.FlakyTest" 30 }, 31 { 32 "include-filter": "android.permissionui.cts.CameraMicIndicatorsPermissionTest" 33 } 34 ] 35 }, 36 { 37 // Permission indicators 38 "name": "CtsVoiceRecognitionTestCases" 39 } 40 ], 41 42 "auto-end-to-end-postsubmit": [ 43 { 44 "name": "AndroidAutomotiveHomeTests", 45 "options" : [ 46 { 47 "include-filter": "android.platform.tests.HomeTest" 48 }, 49 { 50 "exclude-filter": "android.platform.tests.HomeTest#testAssistantWidget" 51 } 52 ] 53 } 54 ], 55 56 "postsubmit": [ 57 { 58 // Permission indicators 59 "name": "CtsPermissionUiTestCases", 60 "options": [ 61 { 62 "include-filter": "android.permissionui.cts.CameraMicIndicatorsPermissionTest" 63 } 64 ] 65 } 66 ], 67 68 // v2/sysui/suite/test-mapping-sysui-screenshot-test 69 "sysui-screenshot-test": [ 70 { 71 "name": "SystemUIGoogleScreenshotTests", 72 "options": [ 73 { 74 "exclude-annotation": "org.junit.Ignore" 75 }, 76 { 77 "exclude-annotation": "androidx.test.filters.FlakyTest" 78 }, 79 { 80 "exclude-annotation": "android.platform.test.annotations.FlakyTest" 81 }, 82 { 83 "exclude-annotation": "android.platform.test.annotations.Postsubmit" 84 } 85 ] 86 }, 87 { 88 "name": "SystemUIGoogleKeyguardScreenshotTests", 89 "options": [ 90 { 91 "exclude-annotation": "org.junit.Ignore" 92 }, 93 { 94 "exclude-annotation": "androidx.test.filters.FlakyTest" 95 }, 96 { 97 "exclude-annotation": "android.platform.test.annotations.FlakyTest" 98 }, 99 { 100 "exclude-annotation": "android.platform.test.annotations.Postsubmit" 101 } 102 ] 103 } 104 ], 105 106 // v2/sysui/suite/test-mapping-sysui-screenshot-test-staged 107 "sysui-screenshot-test-staged": [ 108 { 109 "name": "SystemUIGoogleScreenshotTests", 110 "options": [ 111 { 112 "exclude-annotation": "org.junit.Ignore" 113 }, 114 { 115 "include-annotation": "androidx.test.filters.FlakyTest" 116 } 117 ] 118 }, 119 { 120 "name": "SystemUIGoogleKeyguardScreenshotTests", 121 "options": [ 122 { 123 "exclude-annotation": "org.junit.Ignore" 124 }, 125 { 126 "include-annotation": "androidx.test.filters.FlakyTest" 127 } 128 ] 129 } 130 ], 131 "sysui-robo-test": [ 132 { 133 "name": "SystemUIGoogleRoboRNGTests" 134 }, 135 { 136 "name": "SystemUIGoogleRobo2RNGTests" 137 } 138 ], 139 "imports": [ 140 { 141 "path": "cts/tests/tests/multiuser" 142 } 143 ], 144 145 "sysui-e2e-presubmit": [ 146 { 147 "name": "PlatformScenarioTests_SysUI_Presubmit" 148 } 149 ] 150} 151