mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
Find and replace exercise. Replace `using location::nearby` with `using ::location::nearby` and `using <Name> = location::nearby` with `using <Name> = ::location::nearby` PiperOrigin-RevId: 490087051
72 lines
1.9 KiB
C++
72 lines
1.9 KiB
C++
// 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 "internal/platform/implementation/windows/utils.h"
|
|
|
|
#include <windows.h>
|
|
#include <string>
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
// using ::location::nearby::windows::uint64_to_mac_address_string;
|
|
namespace location {
|
|
namespace nearby {
|
|
namespace windows {
|
|
|
|
TEST(UtilsTests, MacAddressToString) {
|
|
// Arrange
|
|
const uint64_t input = 0x000034363bc78c71;
|
|
std::string expected = "34:36:3B:C7:8C:71";
|
|
|
|
// Act
|
|
std::string result = uint64_to_mac_address_string(input);
|
|
|
|
// Assert
|
|
EXPECT_EQ(result, expected);
|
|
}
|
|
|
|
TEST(UtilsTests, StringToMacAddress) {
|
|
// Arrange
|
|
std::string input = "34:36:3B:C7:8C:71";
|
|
const uint64_t expected = 0x000034363bc78c71;
|
|
|
|
// Act
|
|
uint64_t result = mac_address_string_to_uint64(input);
|
|
|
|
// Assert
|
|
EXPECT_EQ(result, expected);
|
|
}
|
|
|
|
constexpr absl::string_view kIpDotdecimal{"192.168.1.37"};
|
|
|
|
constexpr char kIp4Bytes[] = {(char)192, (char)168, (char)1, (char)37};
|
|
|
|
TEST(UtilsTests, Ip4BytesToDotdecimal) {
|
|
std::string result =
|
|
ipaddr_4bytes_to_dotdecimal_string(absl::string_view(kIp4Bytes));
|
|
|
|
EXPECT_EQ(result, kIpDotdecimal);
|
|
}
|
|
|
|
TEST(UtilsTests, IpDotdecimalTo4Bytes) {
|
|
std::string result =
|
|
ipaddr_dotdecimal_to_4bytes_string(std::string(kIpDotdecimal));
|
|
|
|
EXPECT_EQ(result, std::string(kIp4Bytes, 4));
|
|
}
|
|
|
|
} // namespace windows
|
|
} // namespace nearby
|
|
} // namespace location
|