You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.7 KiB
53 lines
1.7 KiB
/* |
|
* Copyright (C) 2017 The Android Open Source Project |
|
* |
|
* 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 |
|
* |
|
* http://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 "wificond/tests/mock_client_interface_impl.h" |
|
|
|
#include <vector> |
|
|
|
#include <wifi_system/interface_tool.h> |
|
#include <wifi_system/supplicant_manager.h> |
|
|
|
#include "wificond/net/netlink_utils.h" |
|
#include "wificond/scanning/scan_utils.h" |
|
|
|
namespace android { |
|
namespace wificond { |
|
|
|
const char kTestInterfaceName[] = "testwifi0"; |
|
const uint8_t kTestInterfaceMacAddress[] = {0x10, 0x20, 0xfe, 0xae, 0x2d, 0xc2}; |
|
const uint32_t kTestInterfaceIndex = 42; |
|
const uint32_t kTestWiphyIndex = 2; |
|
|
|
MockClientInterfaceImpl::MockClientInterfaceImpl( |
|
android::wifi_system::InterfaceTool* interface_tool, |
|
android::wifi_system::SupplicantManager* supplicant_manager, |
|
NetlinkUtils* netlink_utils, |
|
ScanUtils* scan_utils) |
|
: ClientInterfaceImpl( |
|
kTestWiphyIndex, |
|
kTestInterfaceName, |
|
kTestInterfaceIndex, |
|
std::vector<uint8_t>( |
|
kTestInterfaceMacAddress, |
|
kTestInterfaceMacAddress + arraysize(kTestInterfaceMacAddress)), |
|
interface_tool, |
|
supplicant_manager, |
|
netlink_utils, |
|
scan_utils) {} |
|
|
|
} // namespace wificond |
|
} // namespace android
|
|
|