1 /*
2  * Copyright (C) 2017 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include <general_test/gnss_capabilities_test.h>
17 
18 #include <chre.h>
19 
20 #include <shared/send_message.h>
21 
22 namespace general_test {
23 
GnssCapabilitiesTest()24 GnssCapabilitiesTest::GnssCapabilitiesTest() : Test(CHRE_API_VERSION_1_1) {}
25 
setUp(uint32_t messageSize,const void *)26 void GnssCapabilitiesTest::setUp(uint32_t messageSize,
27                                  const void * /* message */) {
28   if (messageSize != 0) {
29     nanoapp_testing::sendFatalFailureToHost(
30         "Expected 0 byte message, got more bytes:", &messageSize);
31   } else {
32     uint32_t allCapabilities = CHRE_GNSS_CAPABILITIES_NONE;
33 
34     if (mApiVersion >= CHRE_API_VERSION_1_1) {
35       allCapabilities |=
36           CHRE_GNSS_CAPABILITIES_LOCATION | CHRE_GNSS_CAPABILITIES_MEASUREMENTS;
37     }
38     if (mApiVersion >= CHRE_API_VERSION_1_2) {
39       allCapabilities |=
40           CHRE_GNSS_CAPABILITIES_GNSS_ENGINE_BASED_PASSIVE_LISTENER;
41     }
42 
43     // Call the new API
44     uint32_t capabilities = chreGnssGetCapabilities();
45 
46     // Clear out known capabilities, any remaining are unknown
47     if ((capabilities & ~allCapabilities) != 0) {
48       if (mApiVersion > CHRE_API_VERSION_1_2) {
49         nanoapp_testing::sendFatalFailureToHost(
50             "New version with unknown capabilities encountered:",
51             &capabilities);
52       } else {
53         nanoapp_testing::sendFatalFailureToHost(
54             "Received unexpected capabilities:", &capabilities);
55       }
56     } else {
57       nanoapp_testing::sendSuccessToHost();
58     }
59   }
60 }
61 
handleEvent(uint32_t,uint16_t eventType,const void *)62 void GnssCapabilitiesTest::handleEvent(uint32_t /* senderInstanceId */,
63                                        uint16_t eventType,
64                                        const void * /* eventData */) {
65   unexpectedEvent(eventType);
66 }
67 
68 }  // namespace general_test
69