mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request As title <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] Closes: #xxx <!-- - [ ] Closes: #yyy (add separate lines for additional resolved issues) --> - [ ] **Communication:** I've discussed this with core contributors already. If the work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end-user-facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed, or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tests should be picked up and run and pass
284 lines
9.1 KiB
C++
284 lines
9.1 KiB
C++
#include "pch.h"
|
|
#include "TestHelpers.h"
|
|
#include <string_utils.h>
|
|
|
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
|
|
|
namespace UnitTestsCommonUtils
|
|
{
|
|
TEST_CLASS(StringUtilsTests)
|
|
{
|
|
public:
|
|
// left_trim tests
|
|
TEST_METHOD(LeftTrim_EmptyString_ReturnsEmpty)
|
|
{
|
|
std::string_view input = "";
|
|
auto result = left_trim(input);
|
|
Assert::AreEqual(std::string_view(""), result);
|
|
}
|
|
|
|
TEST_METHOD(LeftTrim_NoWhitespace_ReturnsOriginal)
|
|
{
|
|
std::string_view input = "hello";
|
|
auto result = left_trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(LeftTrim_LeadingSpaces_TrimsSpaces)
|
|
{
|
|
std::string_view input = " hello";
|
|
auto result = left_trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(LeftTrim_LeadingTabs_TrimsTabs)
|
|
{
|
|
std::string_view input = "\t\thello";
|
|
auto result = left_trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(LeftTrim_LeadingNewlines_TrimsNewlines)
|
|
{
|
|
std::string_view input = "\r\n\nhello";
|
|
auto result = left_trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(LeftTrim_MixedWhitespace_TrimsAll)
|
|
{
|
|
std::string_view input = " \t\r\nhello";
|
|
auto result = left_trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(LeftTrim_TrailingWhitespace_PreservesTrailing)
|
|
{
|
|
std::string_view input = " hello ";
|
|
auto result = left_trim(input);
|
|
Assert::AreEqual(std::string_view("hello "), result);
|
|
}
|
|
|
|
TEST_METHOD(LeftTrim_OnlyWhitespace_ReturnsEmpty)
|
|
{
|
|
std::string_view input = " \t\r\n";
|
|
auto result = left_trim(input);
|
|
Assert::AreEqual(std::string_view(""), result);
|
|
}
|
|
|
|
TEST_METHOD(LeftTrim_CustomChars_TrimsSpecified)
|
|
{
|
|
std::string_view input = "xxxhello";
|
|
auto result = left_trim(input, std::string_view("x"));
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(LeftTrim_WideString_Works)
|
|
{
|
|
std::wstring_view input = L" hello";
|
|
auto result = left_trim(input);
|
|
Assert::AreEqual(std::wstring_view(L"hello"), result);
|
|
}
|
|
|
|
// right_trim tests
|
|
TEST_METHOD(RightTrim_EmptyString_ReturnsEmpty)
|
|
{
|
|
std::string_view input = "";
|
|
auto result = right_trim(input);
|
|
Assert::AreEqual(std::string_view(""), result);
|
|
}
|
|
|
|
TEST_METHOD(RightTrim_NoWhitespace_ReturnsOriginal)
|
|
{
|
|
std::string_view input = "hello";
|
|
auto result = right_trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(RightTrim_TrailingSpaces_TrimsSpaces)
|
|
{
|
|
std::string_view input = "hello ";
|
|
auto result = right_trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(RightTrim_TrailingTabs_TrimsTabs)
|
|
{
|
|
std::string_view input = "hello\t\t";
|
|
auto result = right_trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(RightTrim_TrailingNewlines_TrimsNewlines)
|
|
{
|
|
std::string_view input = "hello\r\n\n";
|
|
auto result = right_trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(RightTrim_LeadingWhitespace_PreservesLeading)
|
|
{
|
|
std::string_view input = " hello ";
|
|
auto result = right_trim(input);
|
|
Assert::AreEqual(std::string_view(" hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(RightTrim_OnlyWhitespace_ReturnsEmpty)
|
|
{
|
|
std::string_view input = " \t\r\n";
|
|
auto result = right_trim(input);
|
|
Assert::AreEqual(std::string_view(""), result);
|
|
}
|
|
|
|
TEST_METHOD(RightTrim_CustomChars_TrimsSpecified)
|
|
{
|
|
std::string_view input = "helloxxx";
|
|
auto result = right_trim(input, std::string_view("x"));
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(RightTrim_WideString_Works)
|
|
{
|
|
std::wstring_view input = L"hello ";
|
|
auto result = right_trim(input);
|
|
Assert::AreEqual(std::wstring_view(L"hello"), result);
|
|
}
|
|
|
|
// trim tests
|
|
TEST_METHOD(Trim_EmptyString_ReturnsEmpty)
|
|
{
|
|
std::string_view input = "";
|
|
auto result = trim(input);
|
|
Assert::AreEqual(std::string_view(""), result);
|
|
}
|
|
|
|
TEST_METHOD(Trim_NoWhitespace_ReturnsOriginal)
|
|
{
|
|
std::string_view input = "hello";
|
|
auto result = trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(Trim_BothSides_TrimsBoth)
|
|
{
|
|
std::string_view input = " hello ";
|
|
auto result = trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(Trim_MixedWhitespace_TrimsAll)
|
|
{
|
|
std::string_view input = " \t\r\nhello \t\r\n";
|
|
auto result = trim(input);
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(Trim_InternalWhitespace_Preserved)
|
|
{
|
|
std::string_view input = " hello world ";
|
|
auto result = trim(input);
|
|
Assert::AreEqual(std::string_view("hello world"), result);
|
|
}
|
|
|
|
TEST_METHOD(Trim_OnlyWhitespace_ReturnsEmpty)
|
|
{
|
|
std::string_view input = " \t\r\n ";
|
|
auto result = trim(input);
|
|
Assert::AreEqual(std::string_view(""), result);
|
|
}
|
|
|
|
TEST_METHOD(Trim_CustomChars_TrimsSpecified)
|
|
{
|
|
std::string_view input = "xxxhelloxxx";
|
|
auto result = trim(input, std::string_view("x"));
|
|
Assert::AreEqual(std::string_view("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(Trim_WideString_Works)
|
|
{
|
|
std::wstring_view input = L" hello ";
|
|
auto result = trim(input);
|
|
Assert::AreEqual(std::wstring_view(L"hello"), result);
|
|
}
|
|
|
|
// replace_chars tests
|
|
TEST_METHOD(ReplaceChars_EmptyString_NoChange)
|
|
{
|
|
std::string s = "";
|
|
replace_chars(s, std::string_view("abc"), 'x');
|
|
Assert::AreEqual(std::string(""), s);
|
|
}
|
|
|
|
TEST_METHOD(ReplaceChars_NoMatchingChars_NoChange)
|
|
{
|
|
std::string s = "hello";
|
|
replace_chars(s, std::string_view("xyz"), '_');
|
|
Assert::AreEqual(std::string("hello"), s);
|
|
}
|
|
|
|
TEST_METHOD(ReplaceChars_SingleChar_Replaces)
|
|
{
|
|
std::string s = "hello";
|
|
replace_chars(s, std::string_view("l"), '_');
|
|
Assert::AreEqual(std::string("he__o"), s);
|
|
}
|
|
|
|
TEST_METHOD(ReplaceChars_MultipleChars_ReplacesAll)
|
|
{
|
|
std::string s = "hello world";
|
|
replace_chars(s, std::string_view("lo"), '_');
|
|
Assert::AreEqual(std::string("he___ w_r_d"), s);
|
|
}
|
|
|
|
TEST_METHOD(ReplaceChars_WideString_Works)
|
|
{
|
|
std::wstring s = L"hello";
|
|
replace_chars(s, std::wstring_view(L"l"), L'_');
|
|
Assert::AreEqual(std::wstring(L"he__o"), s);
|
|
}
|
|
|
|
// unwide tests
|
|
TEST_METHOD(Unwide_EmptyString_ReturnsEmpty)
|
|
{
|
|
std::wstring input = L"";
|
|
auto result = unwide(input);
|
|
Assert::AreEqual(std::string(""), result);
|
|
}
|
|
|
|
TEST_METHOD(Unwide_AsciiString_Converts)
|
|
{
|
|
std::wstring input = L"hello";
|
|
auto result = unwide(input);
|
|
Assert::AreEqual(std::string("hello"), result);
|
|
}
|
|
|
|
TEST_METHOD(Unwide_WithNumbers_Converts)
|
|
{
|
|
std::wstring input = L"test123";
|
|
auto result = unwide(input);
|
|
Assert::AreEqual(std::string("test123"), result);
|
|
}
|
|
|
|
TEST_METHOD(Unwide_WithSpecialChars_Converts)
|
|
{
|
|
std::wstring input = L"test!@#$%";
|
|
auto result = unwide(input);
|
|
Assert::AreEqual(std::string("test!@#$%"), result);
|
|
}
|
|
|
|
TEST_METHOD(Unwide_MixedCase_PreservesCase)
|
|
{
|
|
std::wstring input = L"HeLLo WoRLd";
|
|
auto result = unwide(input);
|
|
Assert::AreEqual(std::string("HeLLo WoRLd"), result);
|
|
}
|
|
|
|
TEST_METHOD(Unwide_LongString_Works)
|
|
{
|
|
std::wstring input = L"This is a longer string with multiple words and punctuation!";
|
|
auto result = unwide(input);
|
|
Assert::AreEqual(std::string("This is a longer string with multiple words and punctuation!"), result);
|
|
}
|
|
};
|
|
}
|