mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-07 09:28:03 +08:00

* rename dll -> FancyZonesModuleInterface (#11488) * [FancyZones] Rename "fancyzones/tests" -> "fancyzones/FancyZonesTests" (#11492) * [FancyZones] Rename "fancyzones/lib" -> "fancyzones/FancyZonesLib" (#11489) * [FancyZones] New FancyZones project. (#11544) * [FancyZones] Allow single instance of "PowerToys.FancyZones.exe" (#11558) * [FancyZones] Updated bug reports (#11571) * [FancyZones] Updated installer (#11572) * [FancyZones] Update string resources (#11596) * [FancyZones] Terminate FancyZones with runner (#11696) * [FancyZones] Drop support for the module interface API to save settings (#11661) * Settings telemetry for FancyZones (#11766) * commented out test * enable dpi awareness for the process
374 lines
17 KiB
C++
374 lines
17 KiB
C++
#include "pch.h"
|
|
#include "Util.h"
|
|
#include "FancyZonesLib\util.h"
|
|
|
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
|
|
|
namespace FancyZonesUnitTests
|
|
{
|
|
using namespace FancyZonesUtils;
|
|
|
|
void TestMonitorSetPermutations(const std::vector<std::pair<HMONITOR, RECT>>& monitorInfo)
|
|
{
|
|
auto monitorInfoPermutation = monitorInfo;
|
|
|
|
do {
|
|
auto monitorInfoCopy = monitorInfoPermutation;
|
|
OrderMonitors(monitorInfoCopy);
|
|
CustomAssert::AreEqual(monitorInfo, monitorInfoCopy);
|
|
} while (std::next_permutation(monitorInfoPermutation.begin(), monitorInfoPermutation.end(), [](auto x, auto y) { return x.first < y.first; }));
|
|
}
|
|
|
|
void TestMonitorSetPermutationsOffsets(const std::vector<std::pair<HMONITOR, RECT>>& monitorInfo)
|
|
{
|
|
for (int offsetX = -3000; offsetX <= 3000; offsetX += 1000)
|
|
{
|
|
for (int offsetY = -3000; offsetY <= 3000; offsetY += 1000)
|
|
{
|
|
auto monitorInfoCopy = monitorInfo;
|
|
for (auto& [monitor, rect] : monitorInfoCopy)
|
|
{
|
|
rect.left += offsetX;
|
|
rect.right += offsetX;
|
|
rect.top += offsetY;
|
|
rect.bottom += offsetY;
|
|
}
|
|
TestMonitorSetPermutations(monitorInfoCopy);
|
|
}
|
|
}
|
|
}
|
|
|
|
TEST_CLASS(UtilUnitTests)
|
|
{
|
|
TEST_METHOD (TestTrimDeviceId)
|
|
{
|
|
// We're interested in the unique part between the first and last #'s
|
|
// Example input: \\?\DISPLAY#DELA026#5&10a58c63&0&UID16777488#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
|
|
// Example output: DELA026#5&10a58c63&0&UID16777488
|
|
const std::wstring input = L"\\\\?\\DISPLAY#DELA026#5&10a58c63&0&UID16777488#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}";
|
|
const std::wstring actual = TrimDeviceId(input);
|
|
const std::wstring expected = L"DELA026#5&10a58c63&0&UID16777488";
|
|
Assert::AreEqual(expected, actual);
|
|
}
|
|
|
|
TEST_METHOD(TestTrimInvalidDeviceId)
|
|
{
|
|
// We're interested in the unique part between the first and last #'s
|
|
// Example input: \\?\DISPLAY#DELA026#5&10a58c63&0&UID16777488#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
|
|
// Example output: DELA026#5&10a58c63&0&UID16777488
|
|
const std::wstring input = L"AnInvalidDeviceId";
|
|
const std::wstring actual = TrimDeviceId(input);
|
|
const std::wstring expected = L"FallbackDevice";
|
|
Assert::AreEqual(expected, actual);
|
|
}
|
|
|
|
TEST_METHOD(TestParseDeviceId01)
|
|
{
|
|
const std::wstring input = L"AOC0001#5&37ac4db&0&UID160002_1536_960_{E0A2904E-889C-4532-95B1-28FE15C16F66}";
|
|
|
|
GUID guid;
|
|
const auto expectedGuidStr = L"{E0A2904E-889C-4532-95B1-28FE15C16F66}";
|
|
CLSIDFromString(expectedGuidStr, &guid);
|
|
const FancyZonesDataTypes::DeviceIdData expected{ L"AOC0001#5&37ac4db&0&UID160002", 1536, 960, guid };
|
|
|
|
const auto actual = ParseDeviceId(input);
|
|
Assert::IsTrue(actual.has_value());
|
|
|
|
Assert::AreEqual(expected.deviceName, actual->deviceName);
|
|
Assert::AreEqual(expected.height, actual->height);
|
|
Assert::AreEqual(expected.width, actual->width);
|
|
Assert::AreEqual(expected.monitorId, actual->monitorId);
|
|
|
|
wil::unique_cotaskmem_string actualGuidStr;
|
|
StringFromCLSID(actual->virtualDesktopId, &actualGuidStr);
|
|
Assert::AreEqual(expectedGuidStr, actualGuidStr.get());
|
|
}
|
|
|
|
TEST_METHOD (TestParseDeviceId02)
|
|
{
|
|
const std::wstring input = L"AOC0001#5&37ac4db&0&UID160002_1536_960_{E0A2904E-889C-4532-95B1-28FE15C16F66}_monitorId";
|
|
|
|
GUID guid;
|
|
const auto expectedGuidStr = L"{E0A2904E-889C-4532-95B1-28FE15C16F66}";
|
|
CLSIDFromString(expectedGuidStr, &guid);
|
|
const FancyZonesDataTypes::DeviceIdData expected{ L"AOC0001#5&37ac4db&0&UID160002", 1536, 960, guid, L"monitorId" };
|
|
|
|
const auto actual = ParseDeviceId(input);
|
|
Assert::IsTrue(actual.has_value());
|
|
|
|
Assert::AreEqual(expected.deviceName, actual->deviceName);
|
|
Assert::AreEqual(expected.height, actual->height);
|
|
Assert::AreEqual(expected.width, actual->width);
|
|
Assert::AreEqual(expected.monitorId, actual->monitorId);
|
|
|
|
wil::unique_cotaskmem_string actualGuidStr;
|
|
StringFromCLSID(actual->virtualDesktopId, &actualGuidStr);
|
|
Assert::AreEqual(expectedGuidStr, actualGuidStr.get());
|
|
}
|
|
|
|
TEST_METHOD (TestParseDeviceId03)
|
|
{
|
|
// difference with previous tests is in the device name: there is no # symbol
|
|
const std::wstring input = L"AOC00015&37ac4db&0&UID160002_1536_960_{E0A2904E-889C-4532-95B1-28FE15C16F66}";
|
|
|
|
GUID guid;
|
|
const auto expectedGuidStr = L"{E0A2904E-889C-4532-95B1-28FE15C16F66}";
|
|
CLSIDFromString(expectedGuidStr, &guid);
|
|
const FancyZonesDataTypes::DeviceIdData expected{ L"AOC00015&37ac4db&0&UID160002", 1536, 960, guid };
|
|
|
|
const auto actual = ParseDeviceId(input);
|
|
Assert::IsTrue(actual.has_value());
|
|
|
|
Assert::AreEqual(expected.deviceName, actual->deviceName);
|
|
Assert::AreEqual(expected.height, actual->height);
|
|
Assert::AreEqual(expected.width, actual->width);
|
|
Assert::AreEqual(expected.monitorId, actual->monitorId);
|
|
|
|
wil::unique_cotaskmem_string actualGuidStr;
|
|
StringFromCLSID(actual->virtualDesktopId, &actualGuidStr);
|
|
Assert::AreEqual(expectedGuidStr, actualGuidStr.get());
|
|
}
|
|
|
|
TEST_METHOD (TestParseDeviceIdInvalid01)
|
|
{
|
|
// no width or height
|
|
const std::wstring input = L"AOC00015&37ac4db&0&UID160002_1536960_{E0A2904E-889C-4532-95B1-28FE15C16F66}";
|
|
const auto actual = ParseDeviceId(input);
|
|
Assert::IsFalse(actual.has_value());
|
|
}
|
|
|
|
TEST_METHOD (TestParseDeviceIdInvalid02)
|
|
{
|
|
// no width and height
|
|
const std::wstring input = L"AOC00015&37ac4db&0&UID160002_{E0A2904E-889C-4532-95B1-28FE15C16F66}_monitorId";
|
|
const auto actual = ParseDeviceId(input);
|
|
Assert::IsFalse(actual.has_value());
|
|
}
|
|
|
|
TEST_METHOD (TestParseDeviceIdInvalid03)
|
|
{
|
|
// no guid
|
|
const std::wstring input = L"AOC00015&37ac4db&0&UID160002_1536960_";
|
|
const auto actual = ParseDeviceId(input);
|
|
Assert::IsFalse(actual.has_value());
|
|
}
|
|
|
|
TEST_METHOD (TestParseDeviceIdInvalid04)
|
|
{
|
|
// invalid guid
|
|
const std::wstring input = L"AOC00015&37ac4db&0&UID160002_1536960_{asdf}";
|
|
const auto actual = ParseDeviceId(input);
|
|
Assert::IsFalse(actual.has_value());
|
|
}
|
|
|
|
TEST_METHOD (TestParseDeviceIdInvalid05)
|
|
{
|
|
// invalid width/height
|
|
const std::wstring input = L"AOC00015&37ac4db&0&UID160002_15a6_960_{E0A2904E-889C-4532-95B1-28FE15C16F66}";
|
|
const auto actual = ParseDeviceId(input);
|
|
Assert::IsFalse(actual.has_value());
|
|
}
|
|
|
|
TEST_METHOD (TestParseDeviceIdInvalid06)
|
|
{
|
|
// changed order
|
|
const std::wstring input = L"AOC00015&37ac4db&0&UID160002_15a6_960_monitorId_{E0A2904E-889C-4532-95B1-28FE15C16F66}";
|
|
const auto actual = ParseDeviceId(input);
|
|
Assert::IsFalse(actual.has_value());
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering01)
|
|
{
|
|
// Three horizontally arranged monitors, bottom aligned, with increasing sizes
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 200, .right = 1600, .bottom = 1100} },
|
|
{Mocks::Monitor(), RECT{.left = 1600, .top = 100, .right = 3300, .bottom = 1100} },
|
|
{Mocks::Monitor(), RECT{.left = 3300, .top = 0, .right = 5100, .bottom = 1100} },
|
|
};
|
|
|
|
TestMonitorSetPermutationsOffsets(monitorInfo);
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering02)
|
|
{
|
|
// Three horizontally arranged monitors, bottom aligned, with equal sizes
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 0, .right = 1600, .bottom = 900} },
|
|
{Mocks::Monitor(), RECT{.left = 1600, .top = 0, .right = 3200, .bottom = 900} },
|
|
{Mocks::Monitor(), RECT{.left = 3200, .top = 0, .right = 4800, .bottom = 900} },
|
|
};
|
|
|
|
TestMonitorSetPermutationsOffsets(monitorInfo);
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering03)
|
|
{
|
|
// Three horizontally arranged monitors, bottom aligned, with decreasing sizes
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 0, .right = 1800, .bottom = 1100} },
|
|
{Mocks::Monitor(), RECT{.left = 1800, .top = 100, .right = 3500, .bottom = 1100} },
|
|
{Mocks::Monitor(), RECT{.left = 3500, .top = 200, .right = 5100, .bottom = 1100} },
|
|
};
|
|
|
|
TestMonitorSetPermutationsOffsets(monitorInfo);
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering04)
|
|
{
|
|
// Three horizontally arranged monitors, top aligned, with increasing sizes
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 0, .right = 1600, .bottom = 900} },
|
|
{Mocks::Monitor(), RECT{.left = 1600, .top = 0, .right = 3300, .bottom = 1000} },
|
|
{Mocks::Monitor(), RECT{.left = 3300, .top = 0, .right = 5100, .bottom = 1100} },
|
|
};
|
|
|
|
TestMonitorSetPermutationsOffsets(monitorInfo);
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering05)
|
|
{
|
|
// Three horizontally arranged monitors, top aligned, with equal sizes
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 0, .right = 1600, .bottom = 900} },
|
|
{Mocks::Monitor(), RECT{.left = 1600, .top = 0, .right = 3200, .bottom = 900} },
|
|
{Mocks::Monitor(), RECT{.left = 3200, .top = 0, .right = 4800, .bottom = 900} },
|
|
};
|
|
|
|
TestMonitorSetPermutationsOffsets(monitorInfo);
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering06)
|
|
{
|
|
// Three horizontally arranged monitors, top aligned, with decreasing sizes
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 0, .right = 1800, .bottom = 1100} },
|
|
{Mocks::Monitor(), RECT{.left = 1800, .top = 0, .right = 3500, .bottom = 1000} },
|
|
{Mocks::Monitor(), RECT{.left = 3500, .top = 0, .right = 5100, .bottom = 900} },
|
|
};
|
|
|
|
TestMonitorSetPermutationsOffsets(monitorInfo);
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering07)
|
|
{
|
|
// Three vertically arranged monitors, center aligned, with equal sizes, except the middle monitor is a bit wider
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 100, .top = 0, .right = 1700, .bottom = 900} },
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 900, .right = 1800, .bottom = 1800} },
|
|
{Mocks::Monitor(), RECT{.left = 100, .top = 1800, .right = 1700, .bottom = 2700} },
|
|
};
|
|
|
|
TestMonitorSetPermutationsOffsets(monitorInfo);
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering08)
|
|
{
|
|
// ------------------
|
|
// | || || |
|
|
// | || || |
|
|
// ------------------
|
|
// | || |
|
|
// | || |
|
|
// ------------------
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 0, .right = 600, .bottom = 400} },
|
|
{Mocks::Monitor(), RECT{.left = 600, .top = 0, .right = 1200, .bottom = 400} },
|
|
{Mocks::Monitor(), RECT{.left = 1200, .top = 0, .right = 1800, .bottom = 400} },
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 400, .right = 900, .bottom = 800} },
|
|
{Mocks::Monitor(), RECT{.left = 900, .top = 400, .right = 1800, .bottom = 800} },
|
|
};
|
|
|
|
TestMonitorSetPermutationsOffsets(monitorInfo);
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering09)
|
|
{
|
|
// Regular 3x3 grid
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 0, .right = 400, .bottom = 300} },
|
|
{Mocks::Monitor(), RECT{.left = 400, .top = 0, .right = 800, .bottom = 300} },
|
|
{Mocks::Monitor(), RECT{.left = 800, .top = 0, .right = 1200, .bottom = 300} },
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 300, .right = 400, .bottom = 600} },
|
|
{Mocks::Monitor(), RECT{.left = 400, .top = 300, .right = 800, .bottom = 600} },
|
|
{Mocks::Monitor(), RECT{.left = 800, .top = 300, .right = 1200, .bottom = 600} },
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 600, .right = 400, .bottom = 900} },
|
|
{Mocks::Monitor(), RECT{.left = 400, .top = 600, .right = 800, .bottom = 900} },
|
|
{Mocks::Monitor(), RECT{.left = 800, .top = 600, .right = 1200, .bottom = 900} },
|
|
};
|
|
|
|
// Reduce running time by testing only rotations
|
|
for (int i = 0; i < 9; i++)
|
|
{
|
|
auto monitorInfoCopy = monitorInfo;
|
|
std::rotate(monitorInfoCopy.begin(), monitorInfoCopy.begin() + i, monitorInfoCopy.end());
|
|
OrderMonitors(monitorInfoCopy);
|
|
CustomAssert::AreEqual(monitorInfo, monitorInfoCopy);
|
|
}
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering10)
|
|
{
|
|
// ------------------
|
|
// | || |
|
|
// | || |
|
|
// ------------------
|
|
// | || || |
|
|
// | || || |
|
|
// ------------------
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 0, .right = 900, .bottom = 400} },
|
|
{Mocks::Monitor(), RECT{.left = 900, .top = 0, .right = 1800, .bottom = 400} },
|
|
{Mocks::Monitor(), RECT{.left = 0, .top = 400, .right = 600, .bottom = 800} },
|
|
{Mocks::Monitor(), RECT{.left = 600, .top = 400, .right = 1200, .bottom = 800} },
|
|
{Mocks::Monitor(), RECT{.left = 1200, .top = 400, .right = 1800, .bottom = 800} },
|
|
};
|
|
|
|
TestMonitorSetPermutationsOffsets(monitorInfo);
|
|
}
|
|
|
|
TEST_METHOD(TestMonitorOrdering11)
|
|
{
|
|
// Random values, some monitors overlap, don't check order, just ensure it doesn't crash and it's the same every time
|
|
std::vector<std::pair<HMONITOR, RECT>> monitorInfo = {
|
|
{Mocks::Monitor(), RECT{.left = 410, .top = 630, .right = 988, .bottom = 631} },
|
|
{Mocks::Monitor(), RECT{.left = 302, .top = 189, .right = 550, .bottom = 714} },
|
|
{Mocks::Monitor(), RECT{.left = 158, .top = 115, .right = 657, .bottom = 499} },
|
|
{Mocks::Monitor(), RECT{.left = 341, .top = 340, .right = 723, .bottom = 655} },
|
|
{Mocks::Monitor(), RECT{.left = 433, .top = 393, .right = 846, .bottom = 544} },
|
|
};
|
|
|
|
auto monitorInfoPermutation = monitorInfo;
|
|
auto firstTime = monitorInfo;
|
|
OrderMonitors(firstTime);
|
|
|
|
do {
|
|
auto monitorInfoCopy = monitorInfoPermutation;
|
|
OrderMonitors(monitorInfoCopy);
|
|
CustomAssert::AreEqual(firstTime, monitorInfoCopy);
|
|
} while (next_permutation(monitorInfoPermutation.begin(), monitorInfoPermutation.end(), [](auto x, auto y) { return x.first < y.first; }));
|
|
}
|
|
|
|
TEST_METHOD(TestHexToRGB_rgb)
|
|
{
|
|
const auto expected = RGB(163, 246, 255);
|
|
const auto actual = HexToRGB(L"#A3F6FF");
|
|
Assert::AreEqual(expected, actual);
|
|
}
|
|
|
|
TEST_METHOD (TestHexToRGB_argb)
|
|
{
|
|
const auto expected = RGB(163, 246, 255);
|
|
const auto actual = HexToRGB(L"#FFA3F6FF");
|
|
Assert::AreEqual(expected, actual);
|
|
}
|
|
|
|
TEST_METHOD (TestHexToRGB_invalid)
|
|
{
|
|
const auto expected = RGB(255, 255, 255);
|
|
const auto actual = HexToRGB(L"zzz");
|
|
Assert::AreEqual(expected, actual);
|
|
}
|
|
};
|
|
}
|
|
|