mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
401feac0aa
Co-authored-by: Nerixyz <nerixdev@outlook.de>
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
#include "util/XDGHelper.hpp"
|
|
|
|
#include "Test.hpp"
|
|
|
|
#include <QDebug>
|
|
|
|
#if defined(Q_OS_UNIX) and !defined(Q_OS_DARWIN)
|
|
|
|
using namespace chatterino;
|
|
|
|
TEST(XDGHelper, ParseDesktopExecProgram)
|
|
{
|
|
struct TestCase {
|
|
QString input;
|
|
QString expectedOutput;
|
|
};
|
|
|
|
std::vector<TestCase> testCases{
|
|
{
|
|
// Sanity check: Ensure simple Exec lines aren't made messed with
|
|
"firefox",
|
|
"firefox",
|
|
},
|
|
{
|
|
// Simple trim after the first space
|
|
"/usr/lib/firefox/firefox %u",
|
|
"/usr/lib/firefox/firefox",
|
|
},
|
|
{
|
|
// Simple unquote
|
|
"\"/usr/lib/firefox/firefox\"",
|
|
"/usr/lib/firefox/firefox",
|
|
},
|
|
{
|
|
// Unquote + trim
|
|
"\"/usr/lib/firefox/firefox\" %u",
|
|
"/usr/lib/firefox/firefox",
|
|
},
|
|
{
|
|
// Test malformed exec key (only one quote)
|
|
"\"/usr/lib/firefox/firefox",
|
|
"/usr/lib/firefox/firefox",
|
|
},
|
|
{
|
|
// Quoted executable name with space
|
|
"\"/usr/bin/my cool browser\"",
|
|
"/usr/bin/my cool browser",
|
|
},
|
|
{
|
|
// Executable name with reserved character
|
|
"/usr/bin/\\$hadowwizardmoneybrowser",
|
|
"/usr/bin/$hadowwizardmoneybrowser",
|
|
},
|
|
};
|
|
|
|
for (const auto &test : testCases)
|
|
{
|
|
auto output = parseDesktopExecProgram(test.input);
|
|
|
|
EXPECT_EQ(output, test.expectedOutput)
|
|
<< "Input '" << test.input << "' failed. Expected '"
|
|
<< test.expectedOutput << "' but got '" << output << "'";
|
|
}
|
|
}
|
|
|
|
#endif
|