mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
201 lines
6.1 KiB
C++
201 lines
6.1 KiB
C++
|
|
#include "pch.h"
|
||
|
|
#include "TestHelpers.h"
|
||
|
|
#include <HDropIterator.h>
|
||
|
|
#include <shlobj.h>
|
||
|
|
|
||
|
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
||
|
|
|
||
|
|
namespace UnitTestsCommonUtils
|
||
|
|
{
|
||
|
|
TEST_CLASS(HDropIteratorTests)
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
// Helper to create a test HDROP structure
|
||
|
|
static HGLOBAL CreateTestHDrop(const std::vector<std::wstring>& files)
|
||
|
|
{
|
||
|
|
// Calculate required size
|
||
|
|
size_t size = sizeof(DROPFILES);
|
||
|
|
for (const auto& file : files)
|
||
|
|
{
|
||
|
|
size += (file.length() + 1) * sizeof(wchar_t);
|
||
|
|
}
|
||
|
|
size += sizeof(wchar_t); // Double null terminator
|
||
|
|
|
||
|
|
HGLOBAL hGlobal = GlobalAlloc(GHND, size);
|
||
|
|
if (!hGlobal) return nullptr;
|
||
|
|
|
||
|
|
DROPFILES* pDropFiles = static_cast<DROPFILES*>(GlobalLock(hGlobal));
|
||
|
|
if (!pDropFiles)
|
||
|
|
{
|
||
|
|
GlobalFree(hGlobal);
|
||
|
|
return nullptr;
|
||
|
|
}
|
||
|
|
|
||
|
|
pDropFiles->pFiles = sizeof(DROPFILES);
|
||
|
|
pDropFiles->fWide = TRUE;
|
||
|
|
|
||
|
|
wchar_t* pData = reinterpret_cast<wchar_t*>(reinterpret_cast<BYTE*>(pDropFiles) + sizeof(DROPFILES));
|
||
|
|
for (const auto& file : files)
|
||
|
|
{
|
||
|
|
wcscpy_s(pData, file.length() + 1, file.c_str());
|
||
|
|
pData += file.length() + 1;
|
||
|
|
}
|
||
|
|
*pData = L'\0'; // Double null terminator
|
||
|
|
|
||
|
|
GlobalUnlock(hGlobal);
|
||
|
|
return hGlobal;
|
||
|
|
}
|
||
|
|
|
||
|
|
TEST_METHOD(HDropIterator_EmptyDrop_IsDoneImmediately)
|
||
|
|
{
|
||
|
|
HGLOBAL hGlobal = CreateTestHDrop({});
|
||
|
|
if (!hGlobal)
|
||
|
|
{
|
||
|
|
Assert::IsTrue(true); // Skip if allocation failed
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
STGMEDIUM medium = {};
|
||
|
|
medium.tymed = TYMED_HGLOBAL;
|
||
|
|
medium.hGlobal = hGlobal;
|
||
|
|
|
||
|
|
// Without a proper IDataObject, we can't fully test
|
||
|
|
// Just verify the class can be instantiated conceptually
|
||
|
|
GlobalFree(hGlobal);
|
||
|
|
Assert::IsTrue(true);
|
||
|
|
}
|
||
|
|
|
||
|
|
TEST_METHOD(HDropIterator_Iteration_Conceptual)
|
||
|
|
{
|
||
|
|
// This test verifies the concept of iteration
|
||
|
|
// Full integration testing requires a proper IDataObject
|
||
|
|
|
||
|
|
std::vector<std::wstring> testFiles = {
|
||
|
|
L"C:\\test\\file1.txt",
|
||
|
|
L"C:\\test\\file2.txt",
|
||
|
|
L"C:\\test\\file3.txt"
|
||
|
|
};
|
||
|
|
|
||
|
|
HGLOBAL hGlobal = CreateTestHDrop(testFiles);
|
||
|
|
if (!hGlobal)
|
||
|
|
{
|
||
|
|
Assert::IsTrue(true);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Verify we can create the HDROP structure
|
||
|
|
DROPFILES* pDropFiles = static_cast<DROPFILES*>(GlobalLock(hGlobal));
|
||
|
|
Assert::IsNotNull(pDropFiles);
|
||
|
|
Assert::IsTrue(pDropFiles->fWide);
|
||
|
|
|
||
|
|
GlobalUnlock(hGlobal);
|
||
|
|
GlobalFree(hGlobal);
|
||
|
|
Assert::IsTrue(true);
|
||
|
|
}
|
||
|
|
|
||
|
|
TEST_METHOD(HDropIterator_SingleFile_Works)
|
||
|
|
{
|
||
|
|
std::vector<std::wstring> testFiles = { L"C:\\test\\single.txt" };
|
||
|
|
|
||
|
|
HGLOBAL hGlobal = CreateTestHDrop(testFiles);
|
||
|
|
if (!hGlobal)
|
||
|
|
{
|
||
|
|
Assert::IsTrue(true);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Verify structure
|
||
|
|
DROPFILES* pDropFiles = static_cast<DROPFILES*>(GlobalLock(hGlobal));
|
||
|
|
Assert::IsNotNull(pDropFiles);
|
||
|
|
|
||
|
|
// Read back the file name
|
||
|
|
wchar_t* pData = reinterpret_cast<wchar_t*>(reinterpret_cast<BYTE*>(pDropFiles) + pDropFiles->pFiles);
|
||
|
|
Assert::AreEqual(std::wstring(L"C:\\test\\single.txt"), std::wstring(pData));
|
||
|
|
|
||
|
|
GlobalUnlock(hGlobal);
|
||
|
|
GlobalFree(hGlobal);
|
||
|
|
}
|
||
|
|
|
||
|
|
TEST_METHOD(HDropIterator_MultipleFiles_Structure)
|
||
|
|
{
|
||
|
|
std::vector<std::wstring> testFiles = {
|
||
|
|
L"C:\\file1.txt",
|
||
|
|
L"C:\\file2.txt",
|
||
|
|
L"C:\\file3.txt"
|
||
|
|
};
|
||
|
|
|
||
|
|
HGLOBAL hGlobal = CreateTestHDrop(testFiles);
|
||
|
|
if (!hGlobal)
|
||
|
|
{
|
||
|
|
Assert::IsTrue(true);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
DROPFILES* pDropFiles = static_cast<DROPFILES*>(GlobalLock(hGlobal));
|
||
|
|
Assert::IsNotNull(pDropFiles);
|
||
|
|
|
||
|
|
// Count files by iterating through null-terminated strings
|
||
|
|
wchar_t* pData = reinterpret_cast<wchar_t*>(reinterpret_cast<BYTE*>(pDropFiles) + pDropFiles->pFiles);
|
||
|
|
int count = 0;
|
||
|
|
while (*pData)
|
||
|
|
{
|
||
|
|
count++;
|
||
|
|
pData += wcslen(pData) + 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
Assert::AreEqual(3, count);
|
||
|
|
|
||
|
|
GlobalUnlock(hGlobal);
|
||
|
|
GlobalFree(hGlobal);
|
||
|
|
}
|
||
|
|
|
||
|
|
TEST_METHOD(HDropIterator_UnicodeFilenames_Work)
|
||
|
|
{
|
||
|
|
std::vector<std::wstring> testFiles = {
|
||
|
|
L"C:\\test\\file.txt"
|
||
|
|
};
|
||
|
|
|
||
|
|
HGLOBAL hGlobal = CreateTestHDrop(testFiles);
|
||
|
|
if (!hGlobal)
|
||
|
|
{
|
||
|
|
Assert::IsTrue(true);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
DROPFILES* pDropFiles = static_cast<DROPFILES*>(GlobalLock(hGlobal));
|
||
|
|
Assert::IsTrue(pDropFiles->fWide == TRUE);
|
||
|
|
|
||
|
|
GlobalUnlock(hGlobal);
|
||
|
|
GlobalFree(hGlobal);
|
||
|
|
}
|
||
|
|
|
||
|
|
TEST_METHOD(HDropIterator_LongFilenames_Work)
|
||
|
|
{
|
||
|
|
std::wstring longPath = L"C:\\";
|
||
|
|
for (int i = 0; i < 20; ++i)
|
||
|
|
{
|
||
|
|
longPath += L"LongFolderName\\";
|
||
|
|
}
|
||
|
|
longPath += L"file.txt";
|
||
|
|
|
||
|
|
std::vector<std::wstring> testFiles = { longPath };
|
||
|
|
|
||
|
|
HGLOBAL hGlobal = CreateTestHDrop(testFiles);
|
||
|
|
if (!hGlobal)
|
||
|
|
{
|
||
|
|
Assert::IsTrue(true);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
DROPFILES* pDropFiles = static_cast<DROPFILES*>(GlobalLock(hGlobal));
|
||
|
|
Assert::IsNotNull(pDropFiles);
|
||
|
|
|
||
|
|
wchar_t* pData = reinterpret_cast<wchar_t*>(reinterpret_cast<BYTE*>(pDropFiles) + pDropFiles->pFiles);
|
||
|
|
Assert::AreEqual(longPath, std::wstring(pData));
|
||
|
|
|
||
|
|
GlobalUnlock(hGlobal);
|
||
|
|
GlobalFree(hGlobal);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|