mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
These APIs can be used to prevent device into sleep when sending supper big files. PiperOrigin-RevId: 556809236
91 lines
2.4 KiB
C++
91 lines
2.4 KiB
C++
// Copyright 2021-2023 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/device_info.h"
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "absl/synchronization/notification.h"
|
|
#include "internal/platform/implementation/device_info.h"
|
|
|
|
namespace nearby {
|
|
namespace windows {
|
|
namespace {
|
|
|
|
TEST(DeviceInfo, DISABLED_GetComputerName) {
|
|
EXPECT_TRUE(DeviceInfo().GetOsDeviceName().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetDeviceType) {
|
|
EXPECT_EQ(DeviceInfo().GetDeviceType(), api::DeviceInfo::DeviceType::kLaptop);
|
|
}
|
|
|
|
TEST(DeviceInfo, GetOsType) {
|
|
EXPECT_EQ(DeviceInfo().GetOsType(), api::DeviceInfo::OsType::kWindows);
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetFullName) {
|
|
EXPECT_TRUE(DeviceInfo().GetFullName().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetGivenName) {
|
|
EXPECT_TRUE(DeviceInfo().GetGivenName().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetLastName) {
|
|
EXPECT_TRUE(DeviceInfo().GetLastName().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetProfileUserName) {
|
|
EXPECT_TRUE(DeviceInfo().GetProfileUserName().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetLocalAppDataPath) {
|
|
EXPECT_TRUE(DeviceInfo().GetLocalAppDataPath().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetDownloadPath) {
|
|
EXPECT_TRUE(DeviceInfo().GetDownloadPath().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetTemporaryPath) {
|
|
EXPECT_TRUE(DeviceInfo().GetTemporaryPath().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetLogPath) {
|
|
EXPECT_TRUE(DeviceInfo().GetLogPath().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_GetCrashDumpPath) {
|
|
EXPECT_TRUE(DeviceInfo().GetCrashDumpPath().has_value());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_IsScreenLocked) {
|
|
EXPECT_FALSE(DeviceInfo().IsScreenLocked());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_PreventSleep) {
|
|
EXPECT_TRUE(DeviceInfo().PreventSleep());
|
|
}
|
|
|
|
TEST(DeviceInfo, DISABLED_AllowSleep) {
|
|
EXPECT_TRUE(DeviceInfo().AllowSleep());
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace windows
|
|
} // namespace nearby
|