commit | 1a63fb4bdec55d7cc3ea1482b2e94980d356063c | [log] [tgz] |
---|---|---|
author | Yu Shan <shanyu@google.com> | Mon Jun 24 20:57:45 2024 +0000 |
committer | Yu Shan <shanyu@google.com> | Mon Jun 24 20:57:45 2024 +0000 |
tree | 90ea6e84a1fd6f7b1b4a8286da3ef62b427e87f8 | |
parent | 43780c23081ebef98ad406ebdf301eee5e4870b4 [diff] |
Improve VendorServiceControllerTest. Avoid stubbing mocked user manager during one test case because UserManager might be accessed at the same time, causing test flakiness. This CL uses injected CurrentUserFetcher to set current user ID to avoid mocking ActivityManager statically. This CL uses mocked context instead of the test application's context so that the test is better isolated. Flag: EXEMPT test Test: atest VendorServiceControllerTest Bug: 348513150 Change-Id: I32b6c3bbedd946987ad2c7b892c4f280ba7bcc95
Source code for Android Automotive OS.
car_product/ - AAOS product car-builtin-lib/ - A helper library for CarService to access hidden framework APIs car-lib/ - Car API car-lib-module/ - Car API module cpp/ - Native services experimental/ - Experimental Car API and services packages/ - Apps and services for cars service/ - Car service module service-builint - Platform builtin component that runs CarService module tests/ - Tests and sample apps tools/ - Helper scripts
Native (C++) code format is required to be compatible with .clang-format file. The formatter is already integrated to repo
tool. To run manually, use:
git clang-format --style=file --extension='h,cpp,cc' HEAD~
Note that clang-format is not desirable for Android java files. Therefore the command line above is limited to specific extensions.
Dumpsys and car shell can be useful when debugging CarService integration issues.
adb shell dumpsys car_service # to dump all car service information adb shell dumpsys car_service --services [service name] # to dump a specific service information adb shell dumpsys car_service --list # get list of available services
Dumpsys for CarService includes the following (more information is availble in dumpsys, below are just highlights):
adb shell cmd car_service
CarService supports commands via car shell:
(list is not complete, run adb shell cmd car_service -h for more details)
Start Garage mode
adb shell cmd car_service garage-mode on
Finish Garage mode
adb shell cmd car_service garage-mode on
Get Garage mode status
adb shell cmd car_service garage-mode query
Change Garage mode max duration (only eng and debug builds)
adb shell setprop android.car.garagemodeduration <seconds>