1 <html devsite> 2 <head> 3 <title>Setting up CTS</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=physical_environment>Physical environment</h2> 27 <h3 id=wifi>Wi-Fi and IPv6</h3> 28 <p>CTS tests require a Wi-Fi network that supports IPv6, can treat the Device 29 Under Test (DUT) as an isolated client, and has an internet 30 connection. An isolated client refers to a 31 configuration where the DUT does not have visibility to the 32 broadcast/multinetwork messages on that subnetwork, either by a Wi-Fi AP 33 configuration or by running the DUT on an isolated sub-network without 34 other devices being connected.</p> 35 36 <p>If you don't have access to a native IPv6 network, an IPv6 carrier network, 37 or a VPN to pass some tests depending on IPv6, you may instead use a Wi-Fi 38 access point and an IPv6 tunnel. See Wikipedia <a 39 href="http://en.wikipedia.org/wiki/List_of_IPv6_tunnel_brokers">list of IPv6 40 tunnel brokers</a>.</p> 41 42 <h3 id=ble_beacons>Bluetooth LE beacons</h3> 43 <p>If the DUT supports the Bluetooth LE feature, then at least three 44 Bluetooth LE beacons should be placed within five meters of the DUT for Bluetooth 45 LE scan testing. Those beacons can be any kind, do not need to be 46 configured or emit anything specific, and can include iBeacon, 47 Eddystone, or even devices simulating BLE beacons.</p> 48 49 <h2 id=desktop_setup>Desktop machine setup</h2> 50 <p>CTS currently supports 64-bit Linux and Mac OS host machines.</p> 51 52 <h3 id=adb>ADB and AAPT</h3> 53 <p>Before running the CTS, make sure you have recent versions of both <a 54 href="http://developer.android.com/tools/help/adb.html">Android Debug 55 Bridge (adb)</a> and <a 56 href="http://developer.android.com/guide/topics/manifest/uses-feature-element.html#testing">Android 57 Asset Packaging Tool (AAPT)</a> installed and those tools' location added 58 to the system path of your machine.</p> 59 60 <p>To install ADB, download the <a 61 href="http://developer.android.com/sdk/index.html#Other">Android SDK Tools</a> 62 package for your operating system, open it, and follow the instructions in the 63 included README file. For troubleshooting information, see <a 64 href="http://developer.android.com/sdk/installing/index.html?pkg=tools">Installing 65 the Stand-alone SDK Tools</a>.</p> 66 67 <p>Ensure <code>adb</code> and <code>aapt</code> are in your system path. The 68 following command assumes you've opened the package archive in your home 69 directory:</p> 70 <hr> 71 <pre class="devsite-terminal devsite-click-to-copy"> 72 export PATH=$PATH:$HOME/android-sdk-linux/build-tools/<version> 73 </pre> 74 75 <p class="note"><strong>Note:</strong> Please ensure your starting path and 76 directory name are correct.</p> 77 78 <h3 id=JDK>Java Development Kit (JDK)</h3> 79 <p>Install the proper version of the Java Development Kit (JDK). For Android 7.0— 80 </p> 81 <ul> 82 <li>On Ubuntu, use <a href="http://openjdk.java.net/install/">OpenJDK 8</a>. 83 <li>On Mac OS, use <a 84 href="http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html#jdk-8u45-oth-JPR">jdk 85 8u45 or newer</a>.</li> 86 </ul> 87 <p> 88 For details, see the <a href="https://source.android.com/source/requirements.html#jdk">JDK 89 requirements</a>. 90 </p> 91 92 <h3 id=CTS_files>CTS files</h3> 93 94 <p><a href="downloads.html">Download</a> and open the CTS 95 packages matching your devices' Android version and all the Application Binary 96 Interfaces (ABIs) your devices support.</p> 97 98 <p>Download and open the latest version of the <a 99 href="downloads.html#cts-media-files">CTS Media 100 Files</a>.</p> 101 102 <h3 id=system_detect>Device detection</h3> 103 <p>Follow the step to <a 104 href="http://developer.android.com/tools/device.html#setting-up">set up your 105 system to detect your device</a>, such as creating a <code>udev</code> rules 106 file for Ubuntu Linux.</p> 107 108 <h2 id=device_setup>Android device setup</h2> 109 110 <h3 id=user_builds>User builds</h3> 111 112 <p>A compatible device is defined as a device with a user/release-key signed 113 build, so your device should be running a system image based on the known to be 114 compatible user build (Android 4.0 and later) from <a 115 href="/source/build-numbers.html">Codenames, Tags, and Build 116 Numbers</a>.<br> 117 118 <p class="caution"><strong>Caution:</strong> When used to confirm Android 119 compatibility of your final system image, CTS must be executed on devices with 120 a user build.</p> 121 122 <h3 id=first-api-level>First API level build property</h3> 123 124 <p>Certain CTS requirements depend on the build a device was originally shipped 125 with. For example, devices that originally ship with earlier builds may be excluded from 126 system requirements that apply to devices that ship with later builds.</p> 127 128 <p>To make this information available to CTS, device manufacturers may define 129 the build-time property: <code>ro.product.first_api_level</code>. The value of this 130 property is the first API level the device was commercially launched with.</p> 131 132 <p>OEMs can add <code>PRODUCT_PROPERTY_OVERRIDES</code> into their device.mk file to set 133 this property, as shown in the following example: </p> 134 135 <pre class="devsite-click-to-copy"> 136 #ro.product.first_api_level indicates the first api level, device has been commercially launched on. 137 PRODUCT_PROPERTY_OVERRIDES +=\ 138 ro.product.first_api_level=21 139 </pre> 140 141 <aside class="note"> 142 <b>Note:</b> The property ro.product.first_api_level should be unset (0) for the first build of a 143 product, and set to the correct API level value for all subsequent builds. This 144 way the property can correctly identify a new product, and we have lost no 145 information about the first API level of the product (0 value implies 146 ro.product.first_api_level = Build.VERSION.SDK_INT). 147 </aside> 148 149 <h3 id=cts-shim-apps>CTS Shim apps</h3> 150 151 <p> Android 7.0 includes the following pre-built apps (built from <a 152 href="https://android.googlesource.com/platform/frameworks/base/+/master/packages/CtsShim/build/">this 153 source</a>) which do not contain any code except for the manifest: </p> 154 155 <ul> 156 <li><code><a href="https://android.googlesource.com/platform/frameworks/base/+/android-7.0.0_r1/packages/CtsShim/CtsShim.apk"> 157 frameworks/base/packages/CtsShim/CtsShim.apk</a></code><br> 158 This apk file is copied to <code>/system/app/CtsShimPrebuilt.apk</code> 159 on the system image. 160 <li><code><a href="https://android.googlesource.com/platform/frameworks/base/+/android-7.0.0_r1/packages/CtsShim/CtsShimPriv.apk"> 161 frameworks/base/packages/CtsShim/CtsShimPriv.apk</a></code><br> 162 This apk file is copied to <code>/system/priv-app/CtsShimPrivPrebuilt.apk</code> 163 on the system image.</li> 164 </ul> 165 166 <p> CTS uses these apps to test privileges and permissions. To pass the tests, you must 167 preload the apps into the appropriate directories on the system image without 168 re-signing them.</p> 169 170 <h3 id=storage_requirements>Storage requirements</h3> 171 <p>The CTS media stress tests require video clips to be on external storage 172 (<code>/sdcard</code>). Most of the clips are from <a 173 href="https://peach.blender.org/">Big Buck Bunny</a> which is copyrighted by 174 the Blender Foundation under the<a 175 href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 license.</a></p> 176 <p>The required space depends on the maximum video playback resolution supported 177 by the device (See section 5 in the compatibility definition document for the 178 platform version of the required resolutions.) Note that the video playback 179 capabilities of the device under test will be checked via the <code>android.media.CamcorderProfile</code> APIs for earlier versions of Android and the <code>android.media.MediaCodecInfo.CodecCapabilities</code> APIs from Android 5.0.</p> 180 <p>Here are the storage requirements by maximum video playback resolution:</p> 181 <ul> 182 <li>480x360: 98MB 183 <li>720x480: 193MB 184 <li>1280x720: 606MB 185 <li>1920x1080: 1863MB 186 </ul> 187 188 <h3 id=screen_storage>Screen and storage</h3> 189 <ol> 190 <li>Any device that does not have an embedded screen needs to be connected to a screen.</li> 191 <li>If the device has a memory card slot, plug in an empty SD card. <em>Use an 192 SD card that supports Ultra High Speed (UHS) Bus with SDHC or SDXC capacity or 193 one with at least speed class 10 or higher to ensure it can pass the CTS.</em> 194 <p class="warning"><strong>Warning:</strong> CTS may modify/erase data on the SD card plugged into the device.</p> 195 </li> 196 <li>If the device has SIM card slots, plug in an activated SIM card to each slot. If the device supports SMS, each SIM card should have its own number field populated.</li> 197 </li> 198 </ol> 199 200 <h3 id=developer_uicc>Developer UICC</h3> 201 202 <p>In order to run CTS carrier API tests, the device needs to has a SIM card 203 with carrier privilege rules on it. See <a 204 href="/devices/tech/config/uicc.html#prepare_uicc">Preparing 205 the UICC</a>.</p> 206 207 <h2 id=config_device>Android device configuration</h2> 208 <ol> 209 <li>Factory data reset the device: <strong>Settings > Backup & reset > Factory data reset</strong> 210 <p class="warning"><strong>Warning:</strong> This will erase all user data from the device.</em></p> 211 <li>Set your device's language to English (<strong>United States</strong>) from: <strong>Settings > Language 212 & input > Language</strong> 213 <li>Turn on the location setting if there is a GPS or Wi-Fi / Cellular network 214 feature on the device: <strong>Settings > Location > On</strong> 215 <li>Connect to a Wi-Fi network that supports IPv6, can treat the Device 216 Under Test (DUT) as an <em>isolated client</em> (see the <a 217 href="#physical_environment">Physical Environment</a> section above), and has an 218 internet connection: <strong>Settings > Wi-Fi</strong> 219 <li>Make sure no lock pattern or password is set on the device: <strong>Settings > Security > Screen 220 lock > None</strong> 221 <li>Enable <strong>USB debugging</strong> on your device: <strong>Settings > Developer options > USB debugging</strong>. 222 <p class="note"><strong>Note:</strong> On Android 4.2 and later, <strong>Developer 223 options</strong> is hidden by default. To make them available, go 224 to <strong>Settings > About phone</strong> and tap <strong>Build number</strong> 225 seven times. Return to the previous screen to find <strong>Developer 226 options</strong>. See <a 227 href="http://developer.android.com/studio/run/device.html#developer-device-options">Enabling 228 On-device Developer Options</a> for additional details.</p> 229 <li>Make sure the time is set to 12-hour format: <strong>Settings > Date & time > Use 24-hour format > Off</strong> 230 <li>Select: <strong>Settings > Developer options > Stay Awake > On</strong> 231 <li>Select: <strong>Settings > Developer options > Allow mock locations > On</strong> 232 <p class="note"><strong>Note:</strong> This mock locations setting is applicable only in Android 5.x and 4.4.x.</p> 233 <li>Select: <strong>Settings > Developer options > Verify apps over USB > Off</strong> 234 <p class="note"><strong>Note:</strong> This verify apps step became required in Android 4.2.</p> 235 <li>Launch the browser and dismiss any startup/setup screen. 236 <li>Connect the desktop machine that will be used to test the device with a USB cable 237 <p class="note"><strong>Note:</strong> When you connect a device running Android 4.2.2 or later 238 to your computer, the system shows a dialog asking whether to accept an RSA key that allows 239 debugging through this computer. Select <em>Allow USB debugging</em>.</p> 240 <li> Install and configure helper apps on the device. 241 <p class="note"><strong>Note:</strong> For CTS versions 2.1 R2 through 4.2 R4</em>, set up your device (or emulator) 242 to run the accessibility tests with:<br> 243 <code>adb install -r android-cts/repository/testcases/CtsDelegatingAccessibilityService.apk</code><br> 244 On the device, enable: <strong>Settings > Accessibility > Accessibility > 245 Delegating Accessibility Service</strong></p> 246 <p class="note"><strong>Note:</strong> For CTS versions prior to 7.0, on devices that declare 247 <code>android.software.device_admin</code>, set up your device to run 248 the device administration test using:<br> 249 <code>adb install -r android-cts/repository/testcases/CtsDeviceAdmin.apk</code><br> 250 <p> 251 In Settings > Security > Select device administrators, enable the two 252 <code>android.deviceadmin.cts.CtsDeviceAdminReceiver*</code> device 253 administrators. Ensure the 254 <code>android.deviceadmin.cts.CtsDeviceAdminDeactivatedReceiver</code> and any 255 other preloaded device administrators remain disabled. 256 </p> 257 <li>Copy the CTS media files to the device as follows: 258 <p class="note"><strong>Note:</strong> For CTS 2.3 R12 and later, if the 259 device supports video codecs, the CTS media files must be copied to the 260 device.</p> 261 <ul> 262 <li>Navigate (cd) to the path the media files are downloaded and unzipped to. 263 <li>Change the file permissions: <code>chmod u+x copy_media.sh</code> 264 <li>Run <code>copy_media.sh</code>: 265 <ul> 266 <li>To copy clips up to a resolution of 720x480, run: <code>./copy_media.sh 720x480</code> 267 <li>If you are not sure about the maximum resolution, try <code>./copy_media.sh all</code> so that all files are copied. 268 <li>If there are multiple devices under adb, add the -s (serial) option to the end. 269 For example, to copy up to 720x480 to the device with serial 1234567, run: <code>./copy_media.sh 720x480 -s 1234567</code> 270 </ul> 271 </ul> 272 </ol> 273 274 </body> 275 </html> 276