/* * Copyright (C) 2014 BlueKitchen GmbH * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * 4. Any redistribution, use, or modification is done solely for * personal benefit and not for any commercial purpose or for * monetary gain. * * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * Please inquire about commercial licensing options at * contact@bluekitchen-gmbh.com * */ // ***************************************************************************** // // HFG AG state machine tests // // ***************************************************************************** #include "btstack-config.h" #include #include #include #include #include "CppUTest/TestHarness.h" #include "CppUTest/CommandLineTestRunner.h" #include "hci_cmds.h" #include "run_loop.h" #include "sdp_util.h" #include "hci.h" #include "l2cap.h" #include "rfcomm.h" #include "sdp.h" #include "sdp_parser.h" #include "debug.h" #include "hfp_ag.h" #include "mock.h" #include "test_sequences.h" const uint8_t rfcomm_channel_nr = 1; static bd_addr_t device_addr = {0xD8,0xBb,0x2C,0xDf,0xF1,0x08}; static uint8_t codecs[1] = {HFP_CODEC_CVSD}; static int ag_indicators_nr = 7; static hfp_ag_indicator_t ag_indicators[] = { // index, name, min range, max range, status, mandatory, enabled, status changed {1, "service", 0, 1, 1, 0, 0, 0}, {2, "call", 0, 1, 0, 1, 1, 0}, {3, "callsetup", 0, 3, 0, 1, 1, 0}, {4, "battchg", 0, 5, 3, 0, 0, 0}, {5, "signal", 0, 5, 5, 0, 0, 0}, {6, "roam", 0, 1, 0, 0, 0, 0}, {7, "callheld", 0, 2, 0, 1, 1, 0} }; static int call_hold_services_nr = 5; static const char* call_hold_services[] = {"1", "1x", "2", "2x", "3"}; static int hf_indicators_nr = 2; static hfp_generic_status_indicator_t hf_indicators[] = { {1, 1}, {2, 1}, }; static uint8_t service_level_connection_established = 0; static uint8_t codecs_connection_established = 0; static uint8_t audio_connection_established = 0; static uint8_t service_level_connection_released = 0; int expected_rfcomm_command(const char * expected_cmd){ char * ag_cmd = (char *)get_rfcomm_payload(); int ag_len = get_rfcomm_payload_len(); int expected_len = strlen(expected_cmd); for (int i = 0; i < ag_len; i++){ if ( (ag_cmd+i)[0] == '\r' || (ag_cmd+i)[0] == '\n' ) { continue; } if (memcmp(ag_cmd + i, expected_cmd, expected_len) == 0) return 1; } return 0; } void simulate_test_sequence(char ** test_steps, int nr_test_steps){ int i = 0; for (i=0; i < nr_test_steps; i++){ char * cmd = test_steps[i]; printf("\n --> Test step %d: ", i); if (memcmp(cmd, "AT", 2) == 0){ inject_rfcomm_command_to_ag((uint8_t*)cmd, strlen(cmd)); } else if (memcmp(cmd, "NOP", 3) == 0){ printf("Trigger AG to run state machine\n"); inject_rfcomm_command_to_ag((uint8_t*)"NOP",3); } else { int expected_cmd = expected_rfcomm_command(cmd); if (!expected_cmd){ printf("\nError: Expected:'%s', but got:'%s'\n", cmd, (char *)get_rfcomm_payload()); CHECK_EQUAL(expected_cmd,1); return; } printf("AG response verified %s\n\n", cmd); } } } void packet_handler(uint8_t * event, uint16_t event_size){ if (event[0] != HCI_EVENT_HFP_META) return; if (event[3] && event[2] != HFP_SUBEVENT_EXTENDED_AUDIO_GATEWAY_ERROR){ printf("ERROR, status: %u\n", event[3]); return; } switch (event[2]) { case HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_ESTABLISHED: printf("\n** SLC established **\n\n"); service_level_connection_established = 1; codecs_connection_established = 0; audio_connection_established = 0; break; case HFP_SUBEVENT_CODECS_CONNECTION_COMPLETE: printf("\n** CC established **\n\n"); codecs_connection_established = 1; audio_connection_established = 0; break; case HFP_SUBEVENT_AUDIO_CONNECTION_COMPLETE: audio_connection_established = 1; break; case HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_RELEASED: service_level_connection_released = 1; break; default: printf("event not handled %u\n", event[2]); break; } } TEST_GROUP(HFPClient){ void setup(void){ service_level_connection_established = 0; codecs_connection_established = 0; audio_connection_established = 0; service_level_connection_released = 0; } void teardown(void){ if (service_level_connection_established){ hfp_ag_release_service_level_connection(device_addr); CHECK_EQUAL(service_level_connection_released, 1); service_level_connection_established = 0; service_level_connection_released = 0; } } void setup_hfp_service_level_connection(char ** test_steps, int nr_test_steps){ service_level_connection_established = 0; hfp_ag_establish_service_level_connection(device_addr); simulate_test_sequence((char **) test_steps, nr_test_steps); } void setup_hfp_codecs_connection(char ** test_steps, int nr_test_steps){ codecs_connection_established = 0; simulate_test_sequence((char **) test_steps, nr_test_steps); } }; TEST(HFPClient, HFCodecsConnectionEstablished){ for (int i = 0; i < cc_tests_size(); i++){ setup_hfp_service_level_connection(default_slc_setup(), default_slc_setup_size()); CHECK_EQUAL(service_level_connection_established, 1); setup_hfp_codecs_connection(hfp_cc_tests()[i].test, hfp_cc_tests()[i].len); CHECK_EQUAL(codecs_connection_established, 1); teardown(); } } // TEST(HFPClient, HFServiceLevelConnectionCommands){ // for (int i = 0; i < slc_cmds_tests_size(); i++){ // setup_hfp_service_level_connection(default_slc_setup(), default_slc_setup_size()); // CHECK_EQUAL(service_level_connection_established, 1); // simulate_test_sequence(hfp_slc_cmds_tests()[i].test, hfp_slc_cmds_tests()[i].len); // teardown(); // } // } TEST(HFPClient, HFServiceLevelConnectionEstablished){ for (int i = 0; i < slc_tests_size(); i++){ setup_hfp_service_level_connection(hfp_slc_tests()[i].test, hfp_slc_tests()[i].len); CHECK_EQUAL(service_level_connection_established, 1); } } int main (int argc, const char * argv[]){ hfp_ag_init(rfcomm_channel_nr, 1007, codecs, sizeof(codecs), ag_indicators, ag_indicators_nr, hf_indicators, hf_indicators_nr, call_hold_services, call_hold_services_nr); hfp_ag_register_packet_handler(packet_handler); return CommandLineTestRunner::RunAllTests(argc, argv); }