// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "platform/impl/windows/bluetooth_classic_medium.h" #include #include #include #include "gtest/gtest.h" #include "platform/impl/windows/bluetooth_classic_device.h" // TODO(jfcarroll): Find a way to mock winrt components in order to properly // unit test this. Once that's done, unit tests can be written, in a later C/L. // // CAUTION: THIS IS NOT A REAL TEST, THIS EXERCISES THE SCANNER, IT DOES NOT // STOP AND IS INTENDED SOLELY FOR DEBUG AND DEMONSTRATION PURPOSES. DO NOT // ATTEMPT TO BUILD AND RUN THIS TEST ON GOOGLE3 YOU HAVE BEEN WARNED static int callcount = 0; static std::map deviceList; void device_discovered_cb(location::nearby::api::BluetoothDevice& device) { const std::string address = device.GetMacAddress(); std::map::const_iterator it = deviceList.find(address); if (it == deviceList.end()) { deviceList[device.GetMacAddress()] = &device; } } void device_name_changed_cb(location::nearby::api::BluetoothDevice& device) {} void device_lost_cb(location::nearby::api::BluetoothDevice& device) { deviceList.erase(device.GetMacAddress()); } TEST(TestCaseName, TestName) { std::unique_ptr bcm = std::make_unique(); bcm->StartDiscovery( location::nearby::api::BluetoothClassicMedium::DiscoveryCallback{ .device_discovered_cb = device_discovered_cb, .device_name_changed_cb = device_name_changed_cb, .device_lost_cb = device_lost_cb, }); while (true) { Sleep(1000); } EXPECT_EQ(1, 1); EXPECT_TRUE(true); }