blob: 969c148213507144de8f957cc793a81d42062b43 [file] [log] [blame]
Lucas Dupin46363d4d2019-11-25 12:46:38 -08001{
Sam Dubeyc0a8e3a2023-05-30 15:08:55 +00002 // Curious where your @Scenario tests will run?
3 //
4 // @Ignore: Will not run in any configuration
5 //
6 // @FlakyTest: Tests that don't block pre/postsubmit but are staged to run known failures
7 //
8 // @Postsubmit: Runs in platinum suite and blocks droidfood in postsubmit
9 //
10 // @PlatinumTest: As of May, 2023, running in postsubmit. Set to run in presubmit as part of
11 // v2/android-platinum/suite-test-mapping-platinum-sysui
12 // Please DO NOT annotate new or old tests with @PlatinumTest annotation without discussing
13 // with mdb:android-platinum
14 //
15 // As of May, 2023, If you don't use @Postsubmit, your new test will immediately
16 // block presubmit, which is probably NOT what you want. This will change effectively once
17 // we move to @PlatinumTest annotation.
18
19 // v2/sysui/test-mapping-presubmit-sysui_cloud-tf
vadimta195fd02022-06-14 13:47:51 -070020 "presubmit-sysui": [
21 {
22 "name": "PlatformScenarioTests",
23 "options": [
24 {
25 "include-filter": "android.platform.test.scenario.sysui"
26 },
27 {
28 "include-annotation": "android.platform.test.scenario.annotation.Scenario"
29 },
30 {
31 "exclude-annotation": "org.junit.Ignore"
32 },
33 {
34 "exclude-annotation": "android.platform.test.annotations.Postsubmit"
Sam Dubeyfb754d42023-01-19 12:33:22 +000035 },
36 {
37 "exclude-annotation": "android.platform.test.annotations.FlakyTest"
David Safff37bab52023-07-10 14:37:57 -040038 },
39 {
40 "exclude-annotation": "androidx.test.filters.FlakyTest"
vadimta195fd02022-06-14 13:47:51 -070041 }
42 ]
43 }
44 ],
Sam Dubeyc0a8e3a2023-05-30 15:08:55 +000045 // v2/android-virtual-infra/test_mapping/presubmit-avd
vadimt8c1af8c2022-02-01 13:43:14 -080046 "presubmit": [
Fabian Kozynskid3e874b2021-04-05 15:29:59 -040047 {
Fabian Kozynski001e28c2021-08-13 11:09:09 -040048 "name": "SystemUIGoogleTests",
49 "options": [
50 {
51 "exclude-annotation": "org.junit.Ignore"
52 },
53 {
54 "exclude-annotation": "androidx.test.filters.FlakyTest"
55 }
56 ]
57 },
Ale Nijamkinf48b8c32023-01-08 00:30:46 +000058 {
Chris Göllner5267a042023-07-20 13:33:28 +000059 "name": "SystemUIGoogleScreenshotTests",
60 "options": [
61 {
62 "exclude-annotation": "org.junit.Ignore"
63 },
64 {
65 "exclude-annotation": "androidx.test.filters.FlakyTest"
66 },
67 {
68 "exclude-annotation": "android.platform.test.annotations.Postsubmit"
69 }
70 ]
71 },
72 {
Ale Nijamkinf48b8c32023-01-08 00:30:46 +000073 // TODO(b/251476085): Consider merging with SystemUIGoogleScreenshotTests (in U+)
74 "name": "SystemUIGoogleBiometricsScreenshotTests",
75 "options": [
76 {
77 "exclude-annotation": "org.junit.Ignore"
78 },
79 {
80 "exclude-annotation": "androidx.test.filters.FlakyTest"
81 }
82 ]
83 },
Joe Bolinger3ca321182022-12-10 02:02:12 +000084 {
Fabian Kozynskid3e874b2021-04-05 15:29:59 -040085 // Permission indicators
Nate Myrend0792312023-05-30 14:22:41 -070086 "name": "CtsPermissionUiTestCases",
Fabian Kozynskid3e874b2021-04-05 15:29:59 -040087 "options": [
88 {
89 "exclude-annotation": "org.junit.Ignore"
90 },
91 {
Jay Thomas Sullivan86d48192023-07-17 23:17:38 -070092 "exclude-annotation": "android.platform.test.annotations.FlakyTest"
Nate Myren1db39b62023-01-31 15:04:22 -080093 },
94 {
Nate Myrend0792312023-05-30 14:22:41 -070095 "include-filter": "android.permissionui.cts.CameraMicIndicatorsPermissionTest"
Fabian Kozynskid3e874b2021-04-05 15:29:59 -040096 }
97 ]
98 },
99 {
100 // Permission indicators
101 "name": "CtsVoiceRecognitionTestCases",
102 "options": [
103 {
104 "exclude-annotation": "org.junit.Ignore"
105 },
106 {
107 "exclude-annotation": "androidx.test.filters.FlakyTest"
108 }
109 ]
Lucas Dupin46363d4d2019-11-25 12:46:38 -0800110 }
Lucas Dupine5dc1d92020-01-27 15:02:59 -0800111 ],
Jun485caff2020-02-27 14:38:28 -0800112 "auto-end-to-end-postsubmit": [
113 {
Jun01053052021-10-07 17:03:30 -0700114 "name": "AndroidAutomotiveHomeTests",
Jun485caff2020-02-27 14:38:28 -0800115 "options" : [
116 {
Jun01053052021-10-07 17:03:30 -0700117 "include-filter": "android.platform.tests.HomeTest"
118 }
119 ]
120 },
121 {
122 "name": "AndroidAutomotiveNotificationsTests",
123 "options" : [
Jun485caff2020-02-27 14:38:28 -0800124 {
Jun01053052021-10-07 17:03:30 -0700125 "include-filter": "android.platform.tests.NotificationTest"
Jun485caff2020-02-27 14:38:28 -0800126 }
127 ]
128 }
Sam Dubeyc0a8e3a2023-05-30 15:08:55 +0000129 ],
Jay Thomas Sullivan86d48192023-07-17 23:17:38 -0700130 "postsubmit": [
131 {
132 // Permission indicators
133 "name": "CtsPermissionUiTestCases",
134 "options": [
135 {
136 "include-filter": "android.permissionui.cts.CameraMicIndicatorsPermissionTest"
137 }
138 ]
139 }
140 ],
Sam Dubeyc0a8e3a2023-05-30 15:08:55 +0000141 "silver-sysui": [
142 {
143 "name": "PlatformScenarioTests",
144 "options": [
145 {
146 "include-filter": "android.platform.test.scenario.sysui"
147 },
148 {
149 "include-annotation": "android.platform.test.scenario.annotation.Scenario"
150 },
151 {
152 "exclude-annotation": "org.junit.Ignore"
153 },
154 {
155 "exclude-annotation": "android.platform.test.annotations.PlatinumTest"
156 },
157 {
158 "exclude-annotation": "android.platform.test.annotations.FlakyTest"
David Safff37bab52023-07-10 14:37:57 -0400159 },
160 {
161 "exclude-annotation": "androidx.test.filters.FlakyTest"
Sam Dubeyc0a8e3a2023-05-30 15:08:55 +0000162 }
163 ]
164 }
Chris Göllner5267a042023-07-20 13:33:28 +0000165 ],
166 "postsubmit": [
167 {
168 "name": "SystemUIGoogleScreenshotTests",
169 "options": [
170 {
171 "exclude-annotation": "org.junit.Ignore"
172 },
173 {
174 "exclude-annotation": "android.platform.test.annotations.FlakyTest"
175 },
176 {
177 "include-annotation": "android.platform.test.annotations.Postsubmit"
178 }
179 ]
180 }
Lucas Dupin46363d4d2019-11-25 12:46:38 -0800181 ]
182}