1 <html devsite> 2 <head> 3 <title>CTS Development</title> 4 <meta name="project_path" value="/_project.yaml" /> 5 <meta name="book_path" value="/_book.yaml" /> 6 </head> 7 <body> 8 <!-- 9 Copyright 2017 The Android Open Source Project 10 11 Licensed under the Apache License, Version 2.0 (the "License"); 12 you may not use this file except in compliance with the License. 13 You may obtain a copy of the License at 14 15 http://www.apache.org/licenses/LICENSE-2.0 16 17 Unless required by applicable law or agreed to in writing, software 18 distributed under the License is distributed on an "AS IS" BASIS, 19 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 20 See the License for the specific language governing permissions and 21 limitations under the License. 22 --> 23 24 25 26 <h2 id="initializing-your-repo-client">Initializing your Repo client</h2> 27 <p>Follow the <a href="/source/downloading.html">instructions</a> 28 to get and build the Android source code but specify a particular CTS branch 29 name, for example<code>-b android-5.0_r2</code>, when issuing the <code>repo 30 init</code> command. This assures your CTS changes will be included in the 31 next CTS release and beyond.</p> 32 33 <h2 id="building-and-running-cts">Building and running CTS</h2> 34 35 <p>Execute the following commands to build CTS and start the interactive 36 CTS console:</p> 37 <p class="note"><strong>Note:</strong> You may supply one of these other values 38 for <code>TARGET_PRODUCT</code> to build for different architectures: 39 <code>aosp_x86_64</code> or <code>aosp_mips</code></p> 40 <pre class="devsite-click-to-copy"> 41 <code class="devsite-terminal">cd <em>/path/to/android/root</em></code> 42 <code class="devsite-terminal">make cts -j32 TARGET_PRODUCT=aosp_arm64</code> 43 <code class="devsite-terminal">cts-tradefed</code> 44 </code></pre> 45 46 <p>At the cts-tf console, enter e.g.:</p> 47 <pre class="devsite-click-to-copy"> 48 tf> run cts --plan CTS 49 </pre> 50 51 <h2 id="writing-cts-tests">Writing CTS tests</h2> 52 53 <p>CTS tests use JUnit and the Android testing APIs. Review the 54 <a href="https://developer.android.com/tools/testing/testing_android.html">Testing and Instrumentation</a> 55 tutorial while perusing the existing tests under the 56 <code>cts/tests</code> directory. You will see that CTS tests mostly follow the same 57 conventions used in other Android tests.</p> 58 59 <p>Since CTS runs across many production devices, the tests must follow 60 these rules:</p> 61 <ul> 62 <li>Must take into account varying screen sizes, orientations, and keyboard layouts.</li> 63 <li>Only use public API methods. In other words, avoid all classes, methods, and fields that are annotated with the "hide" annotation.</li> 64 <li>Avoid relying upon particular view layouts or depend on the dimensions of assets that may not be on some device.</li> 65 <li>Don't rely upon root privileges.</li> 66 </ul> 67 68 <h3 id="test-naming-and-location">Test naming and location</h3> 69 70 <p> Most CTS test cases target a specific class in the Android API. These tests 71 have Java package names with a <code>cts</code> suffix and class names with the 72 <code>Test</code> suffix. Each test case consists of multiple tests, where each 73 test usually exercises a particular method of the class being tested. 74 These tests are arranged in a directory structure where tests are grouped into 75 different categories such as "widgets" and "views." </p> 76 77 <p> 78 For example, the CTS test for the Java package 79 <code>android.widget.TextView</code> is 80 <code>android.widget.cts.TextViewTest</code> with its Java package name as 81 <code>android.widget.cts</code> and its class name as 82 <code>TextViewTest</code>. </p> 83 84 <ul> 85 <li><strong>Java package name</strong><br/>The Java package name for the CTS tests 86 is the package name of the class that the test is testing, followed by ".cts". 87 For our example, the package name would be <code>android.widget.cts</code>. 88 89 <li><strong>Class name</strong><br/>The class name for CTS tests is <strong> 90 </strong>name of the class that the test is testing with "Test" appended. (For 91 example, if a test is targeting <code>TextView</code>, the class name should be 92 <code>TextViewTest</code>.) 93 94 <li><strong>Module name (CTS v2 only)</strong><br/>CTS v2 organizes tests by module. 95 The module name is usually the second string of the Java package name (in our 96 example, <code>widget</code>), although it does not have to be.</li> 97 </ul> 98 99 <p> 100 The directory structure and sample code depend on whether you are using CTS v1 101 or CTS v2. 102 </p> 103 <h4 id="cts-v1">CTS v1</h4> 104 <p> 105 For Android 6.0 and earlier, use CTS v1. For CTS v1, the sample code is at 106 <code>cts/tests/tests/example</code>. 107 </p> 108 <p> 109 The directory structure in CTS v1 tests looks like this: 110 </p> 111 <pre class="devsite-click-to-copy"> 112 cts/ 113 tests/ 114 tests/ 115 <em>package-name</em>/ 116 Android.mk 117 AndroidManifest.xml 118 src/ 119 android/ 120 <em>package-name</em>/ 121 SampleDeviceActivity.java 122 cts/ 123 SampleDeviceTest.java 124 </pre> 125 <h4 id="cts-v2">CTS v2</h4> 126 <p> 127 For Android 7.0 and later, use CTS v2. For details, see <a 128 href="https://android.googlesource.com/platform/cts/+/master/tests/sample/">the 129 sample test in AOSP</a>. 130 </p> 131 <p> 132 The CTS v2 directory structure looks like this: 133 </p> 134 135 <pre class="devsite-click-to-copy"> 136 cts/ 137 tests/ 138 <em>module-name</em>/ 139 Android.mk 140 AndroidManifest.xml 141 src/ 142 android/ 143 <em>package-name</em>/ 144 SampleDeviceActivity.java 145 cts/ 146 SampleDeviceTest.java 147 </pre> 148 149 <h3 id="new-sample-packages">New sample packages</h3> 150 151 <p>When adding new tests, there may not be an existing directory to place your 152 test. In those cases, you'll need to create the directory and copy the 153 appropriate sample files.</p> 154 155 <h4 id="cts-v1">CTS v1</h4> 156 157 <p> If you are using CTS v1, refer to the example under 158 <code>cts/tests/tests/example</code> and create a new directory. Also, 159 make sure to add your new package's module name from its <code>Android.mk</code> 160 to <code>CTS_COVERAGE_TEST_CASE_LIST</code> in 161 <code>cts/CtsTestCaseList.mk</code>. This Makefile is used by 162 <code>build/core/tasks/cts.mk</code> to combine all the tests together to create 163 the final CTS package. </p> 164 165 <h4 id="cts-v2">CTS v2</h4> 166 <p> 167 Use the sample test 168 <code><a href="https://android.googlesource.com/platform/cts/+/master/tests/sample/">/cts/tests/sample/</a></code> 169 to quick start your new test module with following steps: 170 </p> 171 172 <ol> 173 <li>Run this command to create the test directory and copy sample files to it: 174 <pre class="devsite-terminal devsite-click-to-copy">mkdir cts/tests/<i>module-name</i> && cp -r cts/tests/sample/* cts/tests/<i>module-name</i></pre> 175 <li>Navigate to <code>cts/tests/<em>module-name</em></code> and substitute all instances of 176 "[Ss]ample" following the recommended naming convention from above. 177 <li>Update <code>SampleDeviceActivity</code> to exercise the feature you're testing. 178 <li>Update <code>SampleDeviceTest</code> to ensure the activity succeeds or logs its 179 errors.</li> 180 </ol> 181 182 <h4>Additional directories</h4> 183 184 <p> Other Android directories such as <code>assets</code>, <code>jni</code>, 185 <code>libs</code> and <code>res</code> can also be added. To add JNI code, 186 create a directory in the root of the project next to <code>src</code> with the native 187 code and an <code>Android.mk</code> in it.</p> 188 189 <p> 190 The makefile typically contains the following settings: 191 </p> 192 <pre class="devsite-click-to-copy"> 193 LOCAL_PATH := $(call my-dir) 194 include $(CLEAR_VARS) 195 LOCAL_MODULE := libCtsSample_jni 196 197 # don't include this package in any target 198 LOCAL_MODULE_TAGS := optional 199 LOCAL_SRC_FILES := <i>list of source code files</i> 200 LOCAL_C_INCLUDES := $(JNI_H_INCLUDE) 201 202 # Tag this module as a cts test artifact 203 LOCAL_COMPATIBILITY_SUITE := cts 204 LOCAL_SHARED_LIBRARIES := libnativehelper 205 LOCAL_SDK_VERSION := current 206 include $(BUILD_SHARED_LIBRARY) 207 </pre> 208 209 <h4>Android.mk file</h4> 210 211 <p> Finally, the <code>Android.mk</code> file in the root of the project will 212 need to be modified to build the native code and depend on it, as shown 213 below:</p> 214 215 <pre class="devsite-click-to-copy"> 216 # All tests should include android.test.runner. 217 LOCAL_JAVA_LIBRARIES := android.test.runner 218 219 # Includes the jni code as a shared library 220 LOCAL_JNI_SHARED_LIBRARIES := libCtsSample_jni 221 222 # Include for InstrumentationCtsTestRunner 223 LOCAL_STATIC_JAVA_LIBRARIES := ctstestrunner... 224 LOCAL_SDK_VERSION := currentinclude $(BUILD_CTS_PACKAGE) 225 226 #Tells make to look in subdirectories for more make files to include 227 include $(call all-makefiles-under,$(LOCAL_PATH)) 228 </pre> 229 230 <h2 id="Fix-remove-tests">Fix or remove tests</h2> 231 <p>Besides adding new tests there are other ways to contribute to CTS: Fix or 232 remove tests annotated with "BrokenTest" or "KnownFailure."</p> 233 234 <h2 id="submitting-your-changes">Submitting your changes</h2> 235 <p>Follow the <a href="/source/submit-patches.html">Submitting Patches workflow</a> 236 to contribute changes to CTS. A reviewer 237 will be assigned to your change, and your change should be reviewed shortly!</p> 238 239 <h2 id="release-schedule">Release schedule and branch information</h2> 240 241 <p>CTS releases follow this schedule.</p> 242 243 <p class="note"><strong>Note</strong>: This schedule is tentative and may be 244 updated from time to time as CTS for the given Android version matures.</p> 245 246 <table> 247 <tr> 248 <th>Version</th> 249 <th>Branch</th> 250 <th>Frequency</th> 251 </tr> 252 </thead> 253 <tbody> 254 <tr> 255 <td>7.0</td> 256 <td>nougat-cts-dev</td> 257 <td>Monthly</td> 258 </tr> 259 <tr> 260 <td>6.0</td> 261 <td>marshmallow-cts-dev</td> 262 <td>Monthly</td> 263 </tr> 264 <tr> 265 <td>5.1</td> 266 <td>lollipop-mr1-cts-dev</td> 267 <td>Monthly</td> 268 </tr> 269 <tr> 270 <td>5.0</td> 271 <td>lollipop-cts-dev</td> 272 <td>No releases planned</td> 273 </tr> 274 <tr> 275 <td>4.4</td> 276 <td>kitkat-cts-dev</td> 277 <td>No releases planned</td> 278 </tr> 279 <tr> 280 <td>4.3</td> 281 <td>jb-mr2-cts-dev</td> 282 <td>No releases planned</td> 283 </tr> 284 <tr> 285 <td>4.2</td> 286 <td>jb-mr1.1-cts-dev</td> 287 <td>No releases planned</td> 288 </tr> 289 </table> 290 291 <h3 id="important-dates">Important Dates during month of the release</h3> 292 293 <ul> 294 <li><strong>End of 1st Week</strong>: Code Freeze. At this point, 295 submissions on the current branch will no longer be accepted and will not be 296 included in the next version of CTS. Once we have chosen a candidate for 297 release, the branch will again be open and accepting new submissions. 298 299 <li><strong>Second or third week</strong>: CTS is published in the Android 300 Open Source Project (AOSP). 301 </ul> 302 303 <h3 id="auto-merge">Auto-merge flow</h3> 304 305 <p>CTS development branches have been set up so that changes submitted to each 306 branch will automatically merge as below:<br> 307 jb-dev-> jb-mr1.1-cts-dev -> jb-mr2-cts-dev -> kitkat-cts-dev -> 308 lollipop-cts-dev -> lollipop-mr1-cts-dev -> marshmallow-cts-dev -> 309 nougat-cts-dev -> <private-development-branch for Android N MR1></p> 310 311 <p>If a changelist (CL) fails to merge correctly, the author of the CL will get 312 an email with instructions on how to resolve the conflict. In most of the 313 cases, the author of the CL can use the instructions to skip the auto-merge of 314 the conflicting CL.</p> 315 316 </body> 317 </html> 318